google-apis-eventarc_v1 0.13.0 → 0.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +17 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/eventarc_v1/classes.rb +38 -31
- data/lib/google/apis/eventarc_v1/gem_version.rb +3 -3
- data/lib/google/apis/eventarc_v1/representations.rb +1 -0
- data/lib/google/apis/eventarc_v1/service.rb +152 -28
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0f7e91268fb6fe94da762e612218f8bc4dbb4a58c650026f0b45a03e45819401
|
4
|
+
data.tar.gz: 1595f64f4642600db22fd8bca62b765b03c589abd088e457e1fbfae9a97b303d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: daae906cbd3f508984d3c395eb532b82f39c8a05c08e797e6f80f7716f3f4bcbf6b358dfb32ccd0a0baaf6c60939cd062298e5caebbbfd866920c38f75552660
|
7
|
+
data.tar.gz: b1f2bcc8d2eac6338e98028f397428b87a9428082df8e3b431f0b29e24824eb5cdbb48e1edd244b8ac940ac6fad49d9a4c2dc706398dffd2411474a14a7674dd
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,22 @@
|
|
1
1
|
# Release history for google-apis-eventarc_v1
|
2
2
|
|
3
|
+
### v0.17.0 (2022-01-17)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220111
|
6
|
+
* Regenerated using generator version 0.4.1
|
7
|
+
|
8
|
+
### v0.16.0 (2022-01-10)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20220104
|
11
|
+
|
12
|
+
### v0.15.0 (2021-12-14)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20211130
|
15
|
+
|
16
|
+
### v0.14.0 (2021-11-13)
|
17
|
+
|
18
|
+
* Regenerated from discovery document revision 20211105
|
19
|
+
|
3
20
|
### v0.13.0 (2021-10-23)
|
4
21
|
|
5
22
|
* Regenerated from discovery document revision 20211015
|
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/eventarc_v1"
|
|
51
51
|
client = Google::Apis::EventarcV1::EventarcService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
54
|
+
client.authorization = # ... use the googleauth gem to create credentials
|
55
55
|
```
|
56
56
|
|
57
57
|
See the class reference docs for information on the methods you can call from a client.
|
@@ -169,8 +169,8 @@ module Google
|
|
169
169
|
include Google::Apis::Core::Hashable
|
170
170
|
|
171
171
|
# Optional. The relative path on the Cloud Run service the events should be sent
|
172
|
-
# to. The value must conform to the definition of URI path segment (section 3.
|
173
|
-
# of RFC2396). Examples: "/route", "route", "route/subroute".
|
172
|
+
# to. The value must conform to the definition of a URI path segment (section 3.
|
173
|
+
# 3 of RFC2396). Examples: "/route", "route", "route/subroute".
|
174
174
|
# Corresponds to the JSON property `path`
|
175
175
|
# @return [String]
|
176
176
|
attr_accessor :path
|
@@ -182,7 +182,7 @@ module Google
|
|
182
182
|
|
183
183
|
# Required. The name of the Cloud Run service being addressed. See https://cloud.
|
184
184
|
# google.com/run/docs/reference/rest/v1/namespaces.services. Only services
|
185
|
-
# located in the same project
|
185
|
+
# located in the same project as the trigger object can be addressed.
|
186
186
|
# Corresponds to the JSON property `service`
|
187
187
|
# @return [String]
|
188
188
|
attr_accessor :service
|
@@ -203,6 +203,12 @@ module Google
|
|
203
203
|
class Destination
|
204
204
|
include Google::Apis::Core::Hashable
|
205
205
|
|
206
|
+
# The Cloud Function resource name. Only Cloud Functions V2 is supported. Format:
|
207
|
+
# projects/`project`/locations/`location`/functions/`function`
|
208
|
+
# Corresponds to the JSON property `cloudFunction`
|
209
|
+
# @return [String]
|
210
|
+
attr_accessor :cloud_function
|
211
|
+
|
206
212
|
# Represents a Cloud Run destination.
|
207
213
|
# Corresponds to the JSON property `cloudRun`
|
208
214
|
# @return [Google::Apis::EventarcV1::CloudRun]
|
@@ -219,6 +225,7 @@ module Google
|
|
219
225
|
|
220
226
|
# Update properties of this object
|
221
227
|
def update!(**args)
|
228
|
+
@cloud_function = args[:cloud_function] if args.key?(:cloud_function)
|
222
229
|
@cloud_run = args[:cloud_run] if args.key?(:cloud_run)
|
223
230
|
@gke = args[:gke] if args.key?(:gke)
|
224
231
|
end
|
@@ -333,8 +340,8 @@ module Google
|
|
333
340
|
attr_accessor :cluster
|
334
341
|
|
335
342
|
# Required. The name of the Google Compute Engine in which the cluster resides,
|
336
|
-
# which can either be compute zone (
|
337
|
-
# or region (
|
343
|
+
# which can either be compute zone (for example, us-central1-a) for the zonal
|
344
|
+
# clusters or region (for example, us-central1) for regional clusters.
|
338
345
|
# Corresponds to the JSON property `location`
|
339
346
|
# @return [String]
|
340
347
|
attr_accessor :location
|
@@ -345,7 +352,7 @@ module Google
|
|
345
352
|
attr_accessor :namespace
|
346
353
|
|
347
354
|
# Optional. The relative path on the GKE service the events should be sent to.
|
348
|
-
# The value must conform to the definition of URI path segment (section 3.3 of
|
355
|
+
# The value must conform to the definition of a URI path segment (section 3.3 of
|
349
356
|
# RFC2396). Examples: "/route", "route", "route/subroute".
|
350
357
|
# Corresponds to the JSON property `path`
|
351
358
|
# @return [String]
|
@@ -534,7 +541,7 @@ module Google
|
|
534
541
|
end
|
535
542
|
end
|
536
543
|
|
537
|
-
# The response message for the ListTriggers method.
|
544
|
+
# The response message for the `ListTriggers` method.
|
538
545
|
class ListTriggersResponse
|
539
546
|
include Google::Apis::Core::Hashable
|
540
547
|
|
@@ -772,17 +779,17 @@ module Google
|
|
772
779
|
include Google::Apis::Core::Hashable
|
773
780
|
|
774
781
|
# Output only. The name of the Pub/Sub subscription created and managed by
|
775
|
-
# Eventarc
|
776
|
-
#
|
782
|
+
# Eventarc as a transport for the event delivery. Format: `projects/`PROJECT_ID`/
|
783
|
+
# subscriptions/`SUBSCRIPTION_NAME``.
|
777
784
|
# Corresponds to the JSON property `subscription`
|
778
785
|
# @return [String]
|
779
786
|
attr_accessor :subscription
|
780
787
|
|
781
|
-
# Optional. The name of the Pub/Sub topic created and managed by Eventarc
|
782
|
-
#
|
783
|
-
# TOPIC_NAME``. You
|
784
|
-
# cloud.pubsub.topic.v1.messagePublished
|
785
|
-
#
|
788
|
+
# Optional. The name of the Pub/Sub topic created and managed by Eventarc as a
|
789
|
+
# transport for the event delivery. Format: `projects/`PROJECT_ID`/topics/`
|
790
|
+
# TOPIC_NAME``. You can set an existing topic for triggers of the type `google.
|
791
|
+
# cloud.pubsub.topic.v1.messagePublished`. The topic you provide here is not
|
792
|
+
# deleted by Eventarc at trigger deletion.
|
786
793
|
# Corresponds to the JSON property `topic`
|
787
794
|
# @return [String]
|
788
795
|
attr_accessor :topic
|
@@ -891,8 +898,8 @@ module Google
|
|
891
898
|
end
|
892
899
|
end
|
893
900
|
|
894
|
-
# Represents the transport intermediaries created for the trigger
|
895
|
-
#
|
901
|
+
# Represents the transport intermediaries created for the trigger to deliver
|
902
|
+
# events.
|
896
903
|
class Transport
|
897
904
|
include Google::Apis::Core::Hashable
|
898
905
|
|
@@ -926,14 +933,14 @@ module Google
|
|
926
933
|
attr_accessor :destination
|
927
934
|
|
928
935
|
# Output only. This checksum is computed by the server based on the value of
|
929
|
-
# other fields, and
|
930
|
-
# an up-to-date value before proceeding.
|
936
|
+
# other fields, and might be sent only on create requests to ensure that the
|
937
|
+
# client has an up-to-date value before proceeding.
|
931
938
|
# Corresponds to the JSON property `etag`
|
932
939
|
# @return [String]
|
933
940
|
attr_accessor :etag
|
934
941
|
|
935
942
|
# Required. null The list of filters that applies to event attributes. Only
|
936
|
-
# events that match all the provided filters
|
943
|
+
# events that match all the provided filters are sent to the destination.
|
937
944
|
# Corresponds to the JSON property `eventFilters`
|
938
945
|
# @return [Array<Google::Apis::EventarcV1::EventFilter>]
|
939
946
|
attr_accessor :event_filters
|
@@ -945,7 +952,7 @@ module Google
|
|
945
952
|
attr_accessor :labels
|
946
953
|
|
947
954
|
# Required. The resource name of the trigger. Must be unique within the location
|
948
|
-
#
|
955
|
+
# of the project and must be in `projects/`project`/locations/`location`/
|
949
956
|
# triggers/`trigger`` format.
|
950
957
|
# Corresponds to the JSON property `name`
|
951
958
|
# @return [String]
|
@@ -953,25 +960,25 @@ module Google
|
|
953
960
|
|
954
961
|
# Optional. The IAM service account email associated with the trigger. The
|
955
962
|
# service account represents the identity of the trigger. The principal who
|
956
|
-
# calls this API must have `iam.serviceAccounts.actAs` permission in the
|
957
|
-
# account. See https://cloud.google.com/iam/docs/understanding-service-
|
958
|
-
# hl=en#sa_common for more information. For Cloud Run destinations,
|
959
|
-
# account is used to generate identity tokens when invoking the
|
960
|
-
# https://cloud.google.com/run/docs/triggering/pubsub-push#create-
|
961
|
-
# account for information on how to invoke authenticated Cloud Run
|
962
|
-
#
|
963
|
-
# roles/eventarc.eventReceiver` IAM role.
|
963
|
+
# calls this API must have the `iam.serviceAccounts.actAs` permission in the
|
964
|
+
# service account. See https://cloud.google.com/iam/docs/understanding-service-
|
965
|
+
# accounts?hl=en#sa_common for more information. For Cloud Run destinations,
|
966
|
+
# this service account is used to generate identity tokens when invoking the
|
967
|
+
# service. See https://cloud.google.com/run/docs/triggering/pubsub-push#create-
|
968
|
+
# service-account for information on how to invoke authenticated Cloud Run
|
969
|
+
# services. To create Audit Log triggers, the service account should also have
|
970
|
+
# the `roles/eventarc.eventReceiver` IAM role.
|
964
971
|
# Corresponds to the JSON property `serviceAccount`
|
965
972
|
# @return [String]
|
966
973
|
attr_accessor :service_account
|
967
974
|
|
968
|
-
# Represents the transport intermediaries created for the trigger
|
969
|
-
#
|
975
|
+
# Represents the transport intermediaries created for the trigger to deliver
|
976
|
+
# events.
|
970
977
|
# Corresponds to the JSON property `transport`
|
971
978
|
# @return [Google::Apis::EventarcV1::Transport]
|
972
979
|
attr_accessor :transport
|
973
980
|
|
974
|
-
# Output only. Server
|
981
|
+
# Output only. Server-assigned unique identifier for the trigger. The value is a
|
975
982
|
# UUID4 string and guaranteed to remain unchanged until the resource is deleted.
|
976
983
|
# Corresponds to the JSON property `uid`
|
977
984
|
# @return [String]
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module EventarcV1
|
18
18
|
# Version of the google-apis-eventarc_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.17.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.4.
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220111"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -205,6 +205,7 @@ module Google
|
|
205
205
|
class Destination
|
206
206
|
# @private
|
207
207
|
class Representation < Google::Apis::Core::JsonRepresentation
|
208
|
+
property :cloud_function, as: 'cloudFunction'
|
208
209
|
property :cloud_run, as: 'cloudRun', class: Google::Apis::EventarcV1::CloudRun, decorator: Google::Apis::EventarcV1::CloudRun::Representation
|
209
210
|
|
210
211
|
property :gke, as: 'gke', class: Google::Apis::EventarcV1::Gke, decorator: Google::Apis::EventarcV1::Gke::Representation
|
@@ -128,13 +128,134 @@ module Google
|
|
128
128
|
# REQUIRED: The resource for which the policy is being requested. See the
|
129
129
|
# operation documentation for the appropriate value for this field.
|
130
130
|
# @param [Fixnum] options_requested_policy_version
|
131
|
-
# Optional. The policy
|
132
|
-
# 3. Requests specifying an invalid value will be
|
133
|
-
# policies with any conditional bindings must
|
134
|
-
#
|
135
|
-
# field unset.
|
136
|
-
#
|
137
|
-
#
|
131
|
+
# Optional. The maximum policy version that will be used to format the policy.
|
132
|
+
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
133
|
+
# rejected. Requests for policies with any conditional role bindings must
|
134
|
+
# specify version 3. Policies with no conditional role bindings may specify any
|
135
|
+
# valid value or leave the field unset. The policy in the response might use the
|
136
|
+
# policy version that you specified, or it might use a lower policy version. For
|
137
|
+
# example, if you specify version 3, but the policy has no conditional role
|
138
|
+
# bindings, the response uses version 1. To learn which resources support
|
139
|
+
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
140
|
+
# google.com/iam/help/conditions/resource-policies).
|
141
|
+
# @param [String] fields
|
142
|
+
# Selector specifying which fields to include in a partial response.
|
143
|
+
# @param [String] quota_user
|
144
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
145
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
146
|
+
# @param [Google::Apis::RequestOptions] options
|
147
|
+
# Request-specific options
|
148
|
+
#
|
149
|
+
# @yield [result, err] Result & error if block supplied
|
150
|
+
# @yieldparam result [Google::Apis::EventarcV1::Policy] parsed result object
|
151
|
+
# @yieldparam err [StandardError] error object if request failed
|
152
|
+
#
|
153
|
+
# @return [Google::Apis::EventarcV1::Policy]
|
154
|
+
#
|
155
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
156
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
157
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
158
|
+
def get_project_location_channel_connection_iam_policy(resource, options_requested_policy_version: nil, fields: nil, quota_user: nil, options: nil, &block)
|
159
|
+
command = make_simple_command(:get, 'v1/{+resource}:getIamPolicy', options)
|
160
|
+
command.response_representation = Google::Apis::EventarcV1::Policy::Representation
|
161
|
+
command.response_class = Google::Apis::EventarcV1::Policy
|
162
|
+
command.params['resource'] = resource unless resource.nil?
|
163
|
+
command.query['options.requestedPolicyVersion'] = options_requested_policy_version unless options_requested_policy_version.nil?
|
164
|
+
command.query['fields'] = fields unless fields.nil?
|
165
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
166
|
+
execute_or_queue_command(command, &block)
|
167
|
+
end
|
168
|
+
|
169
|
+
# Sets the access control policy on the specified resource. Replaces any
|
170
|
+
# existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
|
171
|
+
# PERMISSION_DENIED` errors.
|
172
|
+
# @param [String] resource
|
173
|
+
# REQUIRED: The resource for which the policy is being specified. See the
|
174
|
+
# operation documentation for the appropriate value for this field.
|
175
|
+
# @param [Google::Apis::EventarcV1::SetIamPolicyRequest] set_iam_policy_request_object
|
176
|
+
# @param [String] fields
|
177
|
+
# Selector specifying which fields to include in a partial response.
|
178
|
+
# @param [String] quota_user
|
179
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
180
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
181
|
+
# @param [Google::Apis::RequestOptions] options
|
182
|
+
# Request-specific options
|
183
|
+
#
|
184
|
+
# @yield [result, err] Result & error if block supplied
|
185
|
+
# @yieldparam result [Google::Apis::EventarcV1::Policy] parsed result object
|
186
|
+
# @yieldparam err [StandardError] error object if request failed
|
187
|
+
#
|
188
|
+
# @return [Google::Apis::EventarcV1::Policy]
|
189
|
+
#
|
190
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
191
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
192
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
193
|
+
def set_channel_connection_iam_policy(resource, set_iam_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
194
|
+
command = make_simple_command(:post, 'v1/{+resource}:setIamPolicy', options)
|
195
|
+
command.request_representation = Google::Apis::EventarcV1::SetIamPolicyRequest::Representation
|
196
|
+
command.request_object = set_iam_policy_request_object
|
197
|
+
command.response_representation = Google::Apis::EventarcV1::Policy::Representation
|
198
|
+
command.response_class = Google::Apis::EventarcV1::Policy
|
199
|
+
command.params['resource'] = resource unless resource.nil?
|
200
|
+
command.query['fields'] = fields unless fields.nil?
|
201
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
202
|
+
execute_or_queue_command(command, &block)
|
203
|
+
end
|
204
|
+
|
205
|
+
# Returns permissions that a caller has on the specified resource. If the
|
206
|
+
# resource does not exist, this will return an empty set of permissions, not a `
|
207
|
+
# NOT_FOUND` error. Note: This operation is designed to be used for building
|
208
|
+
# permission-aware UIs and command-line tools, not for authorization checking.
|
209
|
+
# This operation may "fail open" without warning.
|
210
|
+
# @param [String] resource
|
211
|
+
# REQUIRED: The resource for which the policy detail is being requested. See the
|
212
|
+
# operation documentation for the appropriate value for this field.
|
213
|
+
# @param [Google::Apis::EventarcV1::TestIamPermissionsRequest] test_iam_permissions_request_object
|
214
|
+
# @param [String] fields
|
215
|
+
# Selector specifying which fields to include in a partial response.
|
216
|
+
# @param [String] quota_user
|
217
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
218
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
219
|
+
# @param [Google::Apis::RequestOptions] options
|
220
|
+
# Request-specific options
|
221
|
+
#
|
222
|
+
# @yield [result, err] Result & error if block supplied
|
223
|
+
# @yieldparam result [Google::Apis::EventarcV1::TestIamPermissionsResponse] parsed result object
|
224
|
+
# @yieldparam err [StandardError] error object if request failed
|
225
|
+
#
|
226
|
+
# @return [Google::Apis::EventarcV1::TestIamPermissionsResponse]
|
227
|
+
#
|
228
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
229
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
230
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
231
|
+
def test_channel_connection_iam_permissions(resource, test_iam_permissions_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
232
|
+
command = make_simple_command(:post, 'v1/{+resource}:testIamPermissions', options)
|
233
|
+
command.request_representation = Google::Apis::EventarcV1::TestIamPermissionsRequest::Representation
|
234
|
+
command.request_object = test_iam_permissions_request_object
|
235
|
+
command.response_representation = Google::Apis::EventarcV1::TestIamPermissionsResponse::Representation
|
236
|
+
command.response_class = Google::Apis::EventarcV1::TestIamPermissionsResponse
|
237
|
+
command.params['resource'] = resource unless resource.nil?
|
238
|
+
command.query['fields'] = fields unless fields.nil?
|
239
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
240
|
+
execute_or_queue_command(command, &block)
|
241
|
+
end
|
242
|
+
|
243
|
+
# Gets the access control policy for a resource. Returns an empty policy if the
|
244
|
+
# resource exists and does not have a policy set.
|
245
|
+
# @param [String] resource
|
246
|
+
# REQUIRED: The resource for which the policy is being requested. See the
|
247
|
+
# operation documentation for the appropriate value for this field.
|
248
|
+
# @param [Fixnum] options_requested_policy_version
|
249
|
+
# Optional. The maximum policy version that will be used to format the policy.
|
250
|
+
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
251
|
+
# rejected. Requests for policies with any conditional role bindings must
|
252
|
+
# specify version 3. Policies with no conditional role bindings may specify any
|
253
|
+
# valid value or leave the field unset. The policy in the response might use the
|
254
|
+
# policy version that you specified, or it might use a lower policy version. For
|
255
|
+
# example, if you specify version 3, but the policy has no conditional role
|
256
|
+
# bindings, the response uses version 1. To learn which resources support
|
257
|
+
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
258
|
+
# google.com/iam/help/conditions/resource-policies).
|
138
259
|
# @param [String] fields
|
139
260
|
# Selector specifying which fields to include in a partial response.
|
140
261
|
# @param [String] quota_user
|
@@ -394,8 +515,8 @@ module Google
|
|
394
515
|
# @param [String] trigger_id
|
395
516
|
# Required. The user-provided ID to be assigned to the trigger.
|
396
517
|
# @param [Boolean] validate_only
|
397
|
-
# Required. If set, validate the request and preview the review, but do not
|
398
|
-
#
|
518
|
+
# Required. If set, validate the request and preview the review, but do not post
|
519
|
+
# it.
|
399
520
|
# @param [String] fields
|
400
521
|
# Selector specifying which fields to include in a partial response.
|
401
522
|
# @param [String] quota_user
|
@@ -437,8 +558,8 @@ module Google
|
|
437
558
|
# If provided, the trigger will only be deleted if the etag matches the current
|
438
559
|
# etag on the resource.
|
439
560
|
# @param [Boolean] validate_only
|
440
|
-
# Required. If set, validate the request and preview the review, but do not
|
441
|
-
#
|
561
|
+
# Required. If set, validate the request and preview the review, but do not post
|
562
|
+
# it.
|
442
563
|
# @param [String] fields
|
443
564
|
# Selector specifying which fields to include in a partial response.
|
444
565
|
# @param [String] quota_user
|
@@ -505,13 +626,16 @@ module Google
|
|
505
626
|
# REQUIRED: The resource for which the policy is being requested. See the
|
506
627
|
# operation documentation for the appropriate value for this field.
|
507
628
|
# @param [Fixnum] options_requested_policy_version
|
508
|
-
# Optional. The policy
|
509
|
-
# 3. Requests specifying an invalid value will be
|
510
|
-
# policies with any conditional bindings must
|
511
|
-
#
|
512
|
-
# field unset.
|
513
|
-
#
|
514
|
-
#
|
629
|
+
# Optional. The maximum policy version that will be used to format the policy.
|
630
|
+
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
631
|
+
# rejected. Requests for policies with any conditional role bindings must
|
632
|
+
# specify version 3. Policies with no conditional role bindings may specify any
|
633
|
+
# valid value or leave the field unset. The policy in the response might use the
|
634
|
+
# policy version that you specified, or it might use a lower policy version. For
|
635
|
+
# example, if you specify version 3, but the policy has no conditional role
|
636
|
+
# bindings, the response uses version 1. To learn which resources support
|
637
|
+
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
638
|
+
# google.com/iam/help/conditions/resource-policies).
|
515
639
|
# @param [String] fields
|
516
640
|
# Selector specifying which fields to include in a partial response.
|
517
641
|
# @param [String] quota_user
|
@@ -544,10 +668,10 @@ module Google
|
|
544
668
|
# @param [String] parent
|
545
669
|
# Required. The parent collection to list triggers on.
|
546
670
|
# @param [String] order_by
|
547
|
-
# The sorting order of the resources returned. Value should be a comma
|
548
|
-
# list of fields. The default sorting
|
549
|
-
# order for a field, append a `
|
550
|
-
#
|
671
|
+
# The sorting order of the resources returned. Value should be a comma-separated
|
672
|
+
# list of fields. The default sorting order is ascending. To specify descending
|
673
|
+
# order for a field, append a `desc` suffix; for example: `name desc, trigger_id`
|
674
|
+
# .
|
551
675
|
# @param [Fixnum] page_size
|
552
676
|
# The maximum number of triggers to return on each page. Note: The service may
|
553
677
|
# send fewer.
|
@@ -589,19 +713,19 @@ module Google
|
|
589
713
|
# Update a single trigger.
|
590
714
|
# @param [String] name
|
591
715
|
# Required. The resource name of the trigger. Must be unique within the location
|
592
|
-
#
|
716
|
+
# of the project and must be in `projects/`project`/locations/`location`/
|
593
717
|
# triggers/`trigger`` format.
|
594
718
|
# @param [Google::Apis::EventarcV1::Trigger] trigger_object
|
595
719
|
# @param [Boolean] allow_missing
|
596
720
|
# If set to true, and the trigger is not found, a new trigger will be created.
|
597
721
|
# In this situation, `update_mask` is ignored.
|
598
722
|
# @param [String] update_mask
|
599
|
-
# The fields to be updated; only fields explicitly provided
|
600
|
-
#
|
601
|
-
#
|
723
|
+
# The fields to be updated; only fields explicitly provided are updated. If no
|
724
|
+
# field mask is provided, all provided fields in the request are updated. To
|
725
|
+
# update all fields, provide a field mask of "*".
|
602
726
|
# @param [Boolean] validate_only
|
603
|
-
# Required. If set, validate the request and preview the review, but do not
|
604
|
-
#
|
727
|
+
# Required. If set, validate the request and preview the review, but do not post
|
728
|
+
# it.
|
605
729
|
# @param [String] fields
|
606
730
|
# Selector specifying which fields to include in a partial response.
|
607
731
|
# @param [String] quota_user
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-eventarc_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.17.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-eventarc_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-eventarc_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-eventarc_v1/v0.17.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-eventarc_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.3.5
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Eventarc API V1
|