google-apis-beyondcorp_v1 0.16.0 → 0.18.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 39b59b5a232b191b4dc86d877ba0073a9812d084dc43e1f775a7edbcfbf27ff2
4
- data.tar.gz: 53e0e1f6b0659fdfcbda5ce0f5b2d6b122c9bbef389453273c728a510690c866
3
+ metadata.gz: 9645e36caf09eeb38d92b354e8040516aa23dca808f3bbf460910ac83852963c
4
+ data.tar.gz: 8d5513a184b095bb369143d6e6c565e0ff1ca64fc06ca4753367dfc5ee244bae
5
5
  SHA512:
6
- metadata.gz: b174b06cf268d524416421b5ce6ec57401d68d1b187b1df47a9747763871443802defebc01e44f4174a7c0868d832e5314fb40d54cfc18c434142fafbdda38dd
7
- data.tar.gz: b1b432fb7b3fba5c591dca6e603f5ec28b375b42bde00b790e9288c602217052ead2f55bd1f5e74d72bd1674f37296ec8e9e4cece9e02d7c933eb3db442b30b2
6
+ metadata.gz: ad0350dd32006b657d582c31c4402c737bc7b1307ad082e85a0bf4cd0ad2df1ec45aa8edabed00650982807adfd639cdf66f270c09248e940154932392b606b8
7
+ data.tar.gz: ad49b3ddee8b03a0069c423721e1821f7d9f7b4ff08a3fc67c232da04de6fceb0142601a0bd54e93ce9fa88cd09240fdf3d791eb5e6f19ad2d6c48e388406de2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-beyondcorp_v1
2
2
 
3
+ ### v0.18.0 (2023-08-13)
4
+
5
+ * Regenerated from discovery document revision 20230802
6
+
7
+ ### v0.17.0 (2023-06-25)
8
+
9
+ * Regenerated from discovery document revision 20230616
10
+
3
11
  ### v0.16.0 (2023-05-28)
4
12
 
5
13
  * Regenerated from discovery document revision 20230517
@@ -1360,124 +1360,6 @@ module Google
1360
1360
  end
1361
1361
  end
1362
1362
 
1363
- # Represents the metadata of the long-running operation.
1364
- class GoogleCloudBeyondcorpClientconnectorservicesV1alphaClientConnectorServiceOperationMetadata
1365
- include Google::Apis::Core::Hashable
1366
-
1367
- # Output only. API version used to start the operation.
1368
- # Corresponds to the JSON property `apiVersion`
1369
- # @return [String]
1370
- attr_accessor :api_version
1371
-
1372
- # Output only. The time the operation was created.
1373
- # Corresponds to the JSON property `createTime`
1374
- # @return [String]
1375
- attr_accessor :create_time
1376
-
1377
- # Output only. The time the operation finished running.
1378
- # Corresponds to the JSON property `endTime`
1379
- # @return [String]
1380
- attr_accessor :end_time
1381
-
1382
- # Output only. Identifies whether the user has requested cancellation of the
1383
- # operation. Operations that have successfully been cancelled have Operation.
1384
- # error value with a google.rpc.Status.code of 1, corresponding to `Code.
1385
- # CANCELLED`.
1386
- # Corresponds to the JSON property `requestedCancellation`
1387
- # @return [Boolean]
1388
- attr_accessor :requested_cancellation
1389
- alias_method :requested_cancellation?, :requested_cancellation
1390
-
1391
- # Output only. Human-readable status of the operation, if any.
1392
- # Corresponds to the JSON property `statusMessage`
1393
- # @return [String]
1394
- attr_accessor :status_message
1395
-
1396
- # Output only. Server-defined resource path for the target of the operation.
1397
- # Corresponds to the JSON property `target`
1398
- # @return [String]
1399
- attr_accessor :target
1400
-
1401
- # Output only. Name of the verb executed by the operation.
1402
- # Corresponds to the JSON property `verb`
1403
- # @return [String]
1404
- attr_accessor :verb
1405
-
1406
- def initialize(**args)
1407
- update!(**args)
1408
- end
1409
-
1410
- # Update properties of this object
1411
- def update!(**args)
1412
- @api_version = args[:api_version] if args.key?(:api_version)
1413
- @create_time = args[:create_time] if args.key?(:create_time)
1414
- @end_time = args[:end_time] if args.key?(:end_time)
1415
- @requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
1416
- @status_message = args[:status_message] if args.key?(:status_message)
1417
- @target = args[:target] if args.key?(:target)
1418
- @verb = args[:verb] if args.key?(:verb)
1419
- end
1420
- end
1421
-
1422
- # Represents the metadata of the long-running operation.
1423
- class GoogleCloudBeyondcorpClientgatewaysV1alphaClientGatewayOperationMetadata
1424
- include Google::Apis::Core::Hashable
1425
-
1426
- # Output only. API version used to start the operation.
1427
- # Corresponds to the JSON property `apiVersion`
1428
- # @return [String]
1429
- attr_accessor :api_version
1430
-
1431
- # Output only. The time the operation was created.
1432
- # Corresponds to the JSON property `createTime`
1433
- # @return [String]
1434
- attr_accessor :create_time
1435
-
1436
- # Output only. The time the operation finished running.
1437
- # Corresponds to the JSON property `endTime`
1438
- # @return [String]
1439
- attr_accessor :end_time
1440
-
1441
- # Output only. Identifies whether the user has requested cancellation of the
1442
- # operation. Operations that have been cancelled successfully have Operation.
1443
- # error value with a google.rpc.Status.code of 1, corresponding to `Code.
1444
- # CANCELLED`.
1445
- # Corresponds to the JSON property `requestedCancellation`
1446
- # @return [Boolean]
1447
- attr_accessor :requested_cancellation
1448
- alias_method :requested_cancellation?, :requested_cancellation
1449
-
1450
- # Output only. Human-readable status of the operation, if any.
1451
- # Corresponds to the JSON property `statusMessage`
1452
- # @return [String]
1453
- attr_accessor :status_message
1454
-
1455
- # Output only. Server-defined resource path for the target of the operation.
1456
- # Corresponds to the JSON property `target`
1457
- # @return [String]
1458
- attr_accessor :target
1459
-
1460
- # Output only. Name of the verb executed by the operation.
1461
- # Corresponds to the JSON property `verb`
1462
- # @return [String]
1463
- attr_accessor :verb
1464
-
1465
- def initialize(**args)
1466
- update!(**args)
1467
- end
1468
-
1469
- # Update properties of this object
1470
- def update!(**args)
1471
- @api_version = args[:api_version] if args.key?(:api_version)
1472
- @create_time = args[:create_time] if args.key?(:create_time)
1473
- @end_time = args[:end_time] if args.key?(:end_time)
1474
- @requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
1475
- @status_message = args[:status_message] if args.key?(:status_message)
1476
- @target = args[:target] if args.key?(:target)
1477
- @verb = args[:verb] if args.key?(:verb)
1478
- end
1479
- end
1480
-
1481
1363
  # Represents the metadata of the long-running operation.
1482
1364
  class GoogleCloudBeyondcorpConnectionsV1alphaConnectionOperationMetadata
1483
1365
  include Google::Apis::Core::Hashable
@@ -1994,22 +1876,22 @@ module Google
1994
1876
  # evaluates to `true`. A condition can add constraints based on attributes of
1995
1877
  # the request, the resource, or both. To learn which resources support
1996
1878
  # conditions in their IAM policies, see the [IAM documentation](https://cloud.
1997
- # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
1879
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
1998
1880
  # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
1999
1881
  # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
2000
1882
  # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
2001
1883
  # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
2002
1884
  # ], "condition": ` "title": "expirable access", "description": "Does not grant
2003
1885
  # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
2004
- # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
2005
- # bindings: - members: - user:mike@example.com - group:admins@example.com -
2006
- # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
2007
- # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
2008
- # com role: roles/resourcemanager.organizationViewer condition: title: expirable
2009
- # access description: Does not grant access after Sep 2020 expression: request.
2010
- # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
2011
- # a description of IAM and its features, see the [IAM documentation](https://
2012
- # cloud.google.com/iam/docs/).
1886
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
1887
+ # example:** ``` bindings: - members: - user:mike@example.com - group:admins@
1888
+ # example.com - domain:google.com - serviceAccount:my-project-id@appspot.
1889
+ # gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
1890
+ # user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
1891
+ # title: expirable access description: Does not grant access after Sep 2020
1892
+ # expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
1893
+ # BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
1894
+ # [IAM documentation](https://cloud.google.com/iam/docs/).
2013
1895
  class GoogleIamV1Policy
2014
1896
  include Google::Apis::Core::Hashable
2015
1897
 
@@ -2093,22 +1975,22 @@ module Google
2093
1975
  # evaluates to `true`. A condition can add constraints based on attributes of
2094
1976
  # the request, the resource, or both. To learn which resources support
2095
1977
  # conditions in their IAM policies, see the [IAM documentation](https://cloud.
2096
- # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
1978
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
2097
1979
  # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
2098
1980
  # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
2099
1981
  # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
2100
1982
  # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
2101
1983
  # ], "condition": ` "title": "expirable access", "description": "Does not grant
2102
1984
  # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
2103
- # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
2104
- # bindings: - members: - user:mike@example.com - group:admins@example.com -
2105
- # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
2106
- # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
2107
- # com role: roles/resourcemanager.organizationViewer condition: title: expirable
2108
- # access description: Does not grant access after Sep 2020 expression: request.
2109
- # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
2110
- # a description of IAM and its features, see the [IAM documentation](https://
2111
- # cloud.google.com/iam/docs/).
1985
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
1986
+ # example:** ``` bindings: - members: - user:mike@example.com - group:admins@
1987
+ # example.com - domain:google.com - serviceAccount:my-project-id@appspot.
1988
+ # gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
1989
+ # user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
1990
+ # title: expirable access description: Does not grant access after Sep 2020
1991
+ # expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
1992
+ # BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
1993
+ # [IAM documentation](https://cloud.google.com/iam/docs/).
2112
1994
  # Corresponds to the JSON property `policy`
2113
1995
  # @return [Google::Apis::BeyondcorpV1::GoogleIamV1Policy]
2114
1996
  attr_accessor :policy
@@ -2246,13 +2128,13 @@ module Google
2246
2128
  # @return [String]
2247
2129
  attr_accessor :name
2248
2130
 
2249
- # The normal response of the operation in case of success. If the original
2250
- # method returns no data on success, such as `Delete`, the response is `google.
2251
- # protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`,
2252
- # the response should be the resource. For other methods, the response should
2253
- # have the type `XxxResponse`, where `Xxx` is the original method name. For
2254
- # example, if the original method name is `TakeSnapshot()`, the inferred
2255
- # response type is `TakeSnapshotResponse`.
2131
+ # The normal, successful response of the operation. If the original method
2132
+ # returns no data on success, such as `Delete`, the response is `google.protobuf.
2133
+ # Empty`. If the original method is standard `Get`/`Create`/`Update`, the
2134
+ # response should be the resource. For other methods, the response should have
2135
+ # the type `XxxResponse`, where `Xxx` is the original method name. For example,
2136
+ # if the original method name is `TakeSnapshot()`, the inferred response type is
2137
+ # `TakeSnapshotResponse`.
2256
2138
  # Corresponds to the JSON property `response`
2257
2139
  # @return [Hash<String,Object>]
2258
2140
  attr_accessor :response
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module BeyondcorpV1
18
18
  # Version of the google-apis-beyondcorp_v1 gem
19
- GEM_VERSION = "0.16.0"
19
+ GEM_VERSION = "0.18.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230517"
25
+ REVISION = "20230802"
26
26
  end
27
27
  end
28
28
  end
@@ -226,18 +226,6 @@ module Google
226
226
  include Google::Apis::Core::JsonObjectSupport
227
227
  end
228
228
 
229
- class GoogleCloudBeyondcorpClientconnectorservicesV1alphaClientConnectorServiceOperationMetadata
230
- class Representation < Google::Apis::Core::JsonRepresentation; end
231
-
232
- include Google::Apis::Core::JsonObjectSupport
233
- end
234
-
235
- class GoogleCloudBeyondcorpClientgatewaysV1alphaClientGatewayOperationMetadata
236
- class Representation < Google::Apis::Core::JsonRepresentation; end
237
-
238
- include Google::Apis::Core::JsonObjectSupport
239
- end
240
-
241
229
  class GoogleCloudBeyondcorpConnectionsV1alphaConnectionOperationMetadata
242
230
  class Representation < Google::Apis::Core::JsonRepresentation; end
243
231
 
@@ -730,32 +718,6 @@ module Google
730
718
  end
731
719
  end
732
720
 
733
- class GoogleCloudBeyondcorpClientconnectorservicesV1alphaClientConnectorServiceOperationMetadata
734
- # @private
735
- class Representation < Google::Apis::Core::JsonRepresentation
736
- property :api_version, as: 'apiVersion'
737
- property :create_time, as: 'createTime'
738
- property :end_time, as: 'endTime'
739
- property :requested_cancellation, as: 'requestedCancellation'
740
- property :status_message, as: 'statusMessage'
741
- property :target, as: 'target'
742
- property :verb, as: 'verb'
743
- end
744
- end
745
-
746
- class GoogleCloudBeyondcorpClientgatewaysV1alphaClientGatewayOperationMetadata
747
- # @private
748
- class Representation < Google::Apis::Core::JsonRepresentation
749
- property :api_version, as: 'apiVersion'
750
- property :create_time, as: 'createTime'
751
- property :end_time, as: 'endTime'
752
- property :requested_cancellation, as: 'requestedCancellation'
753
- property :status_message, as: 'statusMessage'
754
- property :target, as: 'target'
755
- property :verb, as: 'verb'
756
- end
757
- end
758
-
759
721
  class GoogleCloudBeyondcorpConnectionsV1alphaConnectionOperationMetadata
760
722
  # @private
761
723
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -52,6 +52,150 @@ module Google
52
52
  @batch_path = 'batch'
53
53
  end
54
54
 
55
+ # Starts asynchronous cancellation on a long-running operation. The server makes
56
+ # a best effort to cancel the operation, but success is not guaranteed. If the
57
+ # server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
58
+ # Clients can use Operations.GetOperation or other methods to check whether the
59
+ # cancellation succeeded or whether the operation completed despite cancellation.
60
+ # On successful cancellation, the operation is not deleted; instead, it becomes
61
+ # an operation with an Operation.error value with a google.rpc.Status.code of 1,
62
+ # corresponding to `Code.CANCELLED`.
63
+ # @param [String] name
64
+ # The name of the operation resource to be cancelled.
65
+ # @param [Google::Apis::BeyondcorpV1::GoogleLongrunningCancelOperationRequest] google_longrunning_cancel_operation_request_object
66
+ # @param [String] fields
67
+ # Selector specifying which fields to include in a partial response.
68
+ # @param [String] quota_user
69
+ # Available to use for quota purposes for server-side applications. Can be any
70
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
71
+ # @param [Google::Apis::RequestOptions] options
72
+ # Request-specific options
73
+ #
74
+ # @yield [result, err] Result & error if block supplied
75
+ # @yieldparam result [Google::Apis::BeyondcorpV1::Empty] parsed result object
76
+ # @yieldparam err [StandardError] error object if request failed
77
+ #
78
+ # @return [Google::Apis::BeyondcorpV1::Empty]
79
+ #
80
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
81
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
82
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
83
+ def cancel_organization_location_operation(name, google_longrunning_cancel_operation_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
84
+ command = make_simple_command(:post, 'v1/{+name}:cancel', options)
85
+ command.request_representation = Google::Apis::BeyondcorpV1::GoogleLongrunningCancelOperationRequest::Representation
86
+ command.request_object = google_longrunning_cancel_operation_request_object
87
+ command.response_representation = Google::Apis::BeyondcorpV1::Empty::Representation
88
+ command.response_class = Google::Apis::BeyondcorpV1::Empty
89
+ command.params['name'] = name unless name.nil?
90
+ command.query['fields'] = fields unless fields.nil?
91
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
92
+ execute_or_queue_command(command, &block)
93
+ end
94
+
95
+ # Deletes a long-running operation. This method indicates that the client is no
96
+ # longer interested in the operation result. It does not cancel the operation.
97
+ # If the server doesn't support this method, it returns `google.rpc.Code.
98
+ # UNIMPLEMENTED`.
99
+ # @param [String] name
100
+ # The name of the operation resource to be deleted.
101
+ # @param [String] fields
102
+ # Selector specifying which fields to include in a partial response.
103
+ # @param [String] quota_user
104
+ # Available to use for quota purposes for server-side applications. Can be any
105
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
106
+ # @param [Google::Apis::RequestOptions] options
107
+ # Request-specific options
108
+ #
109
+ # @yield [result, err] Result & error if block supplied
110
+ # @yieldparam result [Google::Apis::BeyondcorpV1::Empty] parsed result object
111
+ # @yieldparam err [StandardError] error object if request failed
112
+ #
113
+ # @return [Google::Apis::BeyondcorpV1::Empty]
114
+ #
115
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
116
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
117
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
118
+ def delete_organization_location_operation(name, fields: nil, quota_user: nil, options: nil, &block)
119
+ command = make_simple_command(:delete, 'v1/{+name}', options)
120
+ command.response_representation = Google::Apis::BeyondcorpV1::Empty::Representation
121
+ command.response_class = Google::Apis::BeyondcorpV1::Empty
122
+ command.params['name'] = name unless name.nil?
123
+ command.query['fields'] = fields unless fields.nil?
124
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
125
+ execute_or_queue_command(command, &block)
126
+ end
127
+
128
+ # Gets the latest state of a long-running operation. Clients can use this method
129
+ # to poll the operation result at intervals as recommended by the API service.
130
+ # @param [String] name
131
+ # The name of the operation resource.
132
+ # @param [String] fields
133
+ # Selector specifying which fields to include in a partial response.
134
+ # @param [String] quota_user
135
+ # Available to use for quota purposes for server-side applications. Can be any
136
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
137
+ # @param [Google::Apis::RequestOptions] options
138
+ # Request-specific options
139
+ #
140
+ # @yield [result, err] Result & error if block supplied
141
+ # @yieldparam result [Google::Apis::BeyondcorpV1::GoogleLongrunningOperation] parsed result object
142
+ # @yieldparam err [StandardError] error object if request failed
143
+ #
144
+ # @return [Google::Apis::BeyondcorpV1::GoogleLongrunningOperation]
145
+ #
146
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
147
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
148
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
149
+ def get_organization_location_operation(name, fields: nil, quota_user: nil, options: nil, &block)
150
+ command = make_simple_command(:get, 'v1/{+name}', options)
151
+ command.response_representation = Google::Apis::BeyondcorpV1::GoogleLongrunningOperation::Representation
152
+ command.response_class = Google::Apis::BeyondcorpV1::GoogleLongrunningOperation
153
+ command.params['name'] = name unless name.nil?
154
+ command.query['fields'] = fields unless fields.nil?
155
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
156
+ execute_or_queue_command(command, &block)
157
+ end
158
+
159
+ # Lists operations that match the specified filter in the request. If the server
160
+ # doesn't support this method, it returns `UNIMPLEMENTED`.
161
+ # @param [String] name
162
+ # The name of the operation's parent resource.
163
+ # @param [String] filter
164
+ # The standard list filter.
165
+ # @param [Fixnum] page_size
166
+ # The standard list page size.
167
+ # @param [String] page_token
168
+ # The standard list page token.
169
+ # @param [String] fields
170
+ # Selector specifying which fields to include in a partial response.
171
+ # @param [String] quota_user
172
+ # Available to use for quota purposes for server-side applications. Can be any
173
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
174
+ # @param [Google::Apis::RequestOptions] options
175
+ # Request-specific options
176
+ #
177
+ # @yield [result, err] Result & error if block supplied
178
+ # @yieldparam result [Google::Apis::BeyondcorpV1::GoogleLongrunningListOperationsResponse] parsed result object
179
+ # @yieldparam err [StandardError] error object if request failed
180
+ #
181
+ # @return [Google::Apis::BeyondcorpV1::GoogleLongrunningListOperationsResponse]
182
+ #
183
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
184
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
185
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
186
+ def list_organization_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
187
+ command = make_simple_command(:get, 'v1/{+name}/operations', options)
188
+ command.response_representation = Google::Apis::BeyondcorpV1::GoogleLongrunningListOperationsResponse::Representation
189
+ command.response_class = Google::Apis::BeyondcorpV1::GoogleLongrunningListOperationsResponse
190
+ command.params['name'] = name unless name.nil?
191
+ command.query['filter'] = filter unless filter.nil?
192
+ command.query['pageSize'] = page_size unless page_size.nil?
193
+ command.query['pageToken'] = page_token unless page_token.nil?
194
+ command.query['fields'] = fields unless fields.nil?
195
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
196
+ execute_or_queue_command(command, &block)
197
+ end
198
+
55
199
  # Gets information about a location.
56
200
  # @param [String] name
57
201
  # Resource name for the location.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-beyondcorp_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.0
4
+ version: 0.18.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: 2023-05-28 00:00:00.000000000 Z
11
+ date: 2023-08-20 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-beyondcorp_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-beyondcorp_v1/v0.16.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-beyondcorp_v1/v0.18.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-beyondcorp_v1
63
63
  post_install_message:
64
64
  rdoc_options: []