Skip to content

Commit

Permalink
feat: [Eventarc] Add Provider resources (#5285)
Browse files Browse the repository at this point in the history
* feat: Add Provider resources

PiperOrigin-RevId: 449653329

Source-Link: googleapis/googleapis@a167db1

Source-Link: googleapis/googleapis-gen@4183d84
Copy-Tag: eyJwIjoiRXZlbnRhcmMvLk93bEJvdC55YW1sIiwiaCI6IjQxODNkODQyMTdkZWM2MzZkZmM4YWNhYzhkOTkxMzc5ZmZlODRjNzMifQ==

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
gcf-owl-bot[bot] and gcf-owl-bot[bot] committed May 23, 2022
1 parent 80fae8d commit d5629fc
Show file tree
Hide file tree
Showing 15 changed files with 1,419 additions and 5 deletions.
44 changes: 44 additions & 0 deletions Eventarc/metadata/V1/Discovery.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 22 additions & 5 deletions Eventarc/metadata/V1/Eventarc.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

201 changes: 201 additions & 0 deletions Eventarc/src/V1/EventType.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 30 additions & 0 deletions Eventarc/src/V1/EventarcGrpcClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,36 @@ public function DeleteChannel(\Google\Cloud\Eventarc\V1\DeleteChannelRequest $ar
$metadata, $options);
}

/**
* Get a single Provider.
* @param \Google\Cloud\Eventarc\V1\GetProviderRequest $argument input argument
* @param array $metadata metadata
* @param array $options call options
* @return \Grpc\UnaryCall
*/
public function GetProvider(\Google\Cloud\Eventarc\V1\GetProviderRequest $argument,
$metadata = [], $options = []) {
return $this->_simpleRequest('/google.cloud.eventarc.v1.Eventarc/GetProvider',
$argument,
['\Google\Cloud\Eventarc\V1\Provider', 'decode'],
$metadata, $options);
}

/**
* List providers.
* @param \Google\Cloud\Eventarc\V1\ListProvidersRequest $argument input argument
* @param array $metadata metadata
* @param array $options call options
* @return \Grpc\UnaryCall
*/
public function ListProviders(\Google\Cloud\Eventarc\V1\ListProvidersRequest $argument,
$metadata = [], $options = []) {
return $this->_simpleRequest('/google.cloud.eventarc.v1.Eventarc/ListProviders',
$argument,
['\Google\Cloud\Eventarc\V1\ListProvidersResponse', 'decode'],
$metadata, $options);
}

/**
* Get a single ChannelConnection.
* @param \Google\Cloud\Eventarc\V1\GetChannelConnectionRequest $argument input argument
Expand Down
Loading

0 comments on commit d5629fc

Please sign in to comment.