google-apis-servicedirectory_v1beta1 0.31.0 → 0.32.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: ff046c79507068b0af29664ea9b731d3626da8a0d4d77f2626f2198c9169cf45
4
- data.tar.gz: 1f80d07e314bb8fdd5245ec6aa221c5df4b1a1146c3baa6ff34ed33652bf32eb
3
+ metadata.gz: 7d9f57853cf5769a6ec834fc8232307b60473520be02f8d1854b4a4b787c3600
4
+ data.tar.gz: 82f0f80160fbd748cc0595d22b53260f3cb21f4d5975a937a16cf0a45632c65a
5
5
  SHA512:
6
- metadata.gz: bb5c8521adca62e7b05026255437e3e0b9002ce2f6a29c504f766fa95e0cae72feb7d396ce0f9fd1702d32ec15ea4e78d014fccc36479ab5852882cf5a2dcc10
7
- data.tar.gz: '028bece7130e4a4d2564453c5f1da10fb4cb705774a26b6570a217a95556514863af5f483a8c6bd13f584ce73311debba6ff26ceae510e6d72557f185ecb9be3'
6
+ metadata.gz: 29df5e25875df944fbae1f7d62720d1984c2397872fd0b9965b41fc63215c8b2991e254c3ed649fbada315854f1bcf878c9721c33515f300c73a91d51e403dfe
7
+ data.tar.gz: ed81f50e3b74bfe6d087eb25b96d281f07ba267767d1908c43dfb01e59256e611493992f12d9292dc403f1e480680e151f14d3bc1a2f065baf1a862284310bcf
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-servicedirectory_v1beta1
2
2
 
3
+ ### v0.32.0 (2023-06-25)
4
+
5
+ * Regenerated from discovery document revision 20230618
6
+
3
7
  ### v0.31.0 (2023-05-28)
4
8
 
5
9
  * Regenerated from discovery document revision 20230516
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServicedirectoryV1beta1
18
18
  # Version of the google-apis-servicedirectory_v1beta1 gem
19
- GEM_VERSION = "0.31.0"
19
+ GEM_VERSION = "0.32.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 = "20230516"
25
+ REVISION = "20230618"
26
26
  end
27
27
  end
28
28
  end
@@ -1188,112 +1188,6 @@ module Google
1188
1188
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1189
1189
  execute_or_queue_command(command, &block)
1190
1190
  end
1191
-
1192
- # Gets the IAM Policy for a resource
1193
- # @param [String] resource
1194
- # REQUIRED: The resource for which the policy is being requested. See [Resource
1195
- # names](https://cloud.google.com/apis/design/resource_names) for the
1196
- # appropriate value for this field.
1197
- # @param [Google::Apis::ServicedirectoryV1beta1::GetIamPolicyRequest] get_iam_policy_request_object
1198
- # @param [String] fields
1199
- # Selector specifying which fields to include in a partial response.
1200
- # @param [String] quota_user
1201
- # Available to use for quota purposes for server-side applications. Can be any
1202
- # arbitrary string assigned to a user, but should not exceed 40 characters.
1203
- # @param [Google::Apis::RequestOptions] options
1204
- # Request-specific options
1205
- #
1206
- # @yield [result, err] Result & error if block supplied
1207
- # @yieldparam result [Google::Apis::ServicedirectoryV1beta1::Policy] parsed result object
1208
- # @yieldparam err [StandardError] error object if request failed
1209
- #
1210
- # @return [Google::Apis::ServicedirectoryV1beta1::Policy]
1211
- #
1212
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1213
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1214
- # @raise [Google::Apis::AuthorizationError] Authorization is required
1215
- def get_registration_policy_iam_policy(resource, get_iam_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1216
- command = make_simple_command(:post, 'v1beta1/{+resource}:getIamPolicy', options)
1217
- command.request_representation = Google::Apis::ServicedirectoryV1beta1::GetIamPolicyRequest::Representation
1218
- command.request_object = get_iam_policy_request_object
1219
- command.response_representation = Google::Apis::ServicedirectoryV1beta1::Policy::Representation
1220
- command.response_class = Google::Apis::ServicedirectoryV1beta1::Policy
1221
- command.params['resource'] = resource unless resource.nil?
1222
- command.query['fields'] = fields unless fields.nil?
1223
- command.query['quotaUser'] = quota_user unless quota_user.nil?
1224
- execute_or_queue_command(command, &block)
1225
- end
1226
-
1227
- # Sets the IAM Policy for a resource
1228
- # @param [String] resource
1229
- # REQUIRED: The resource for which the policy is being specified. See [Resource
1230
- # names](https://cloud.google.com/apis/design/resource_names) for the
1231
- # appropriate value for this field.
1232
- # @param [Google::Apis::ServicedirectoryV1beta1::SetIamPolicyRequest] set_iam_policy_request_object
1233
- # @param [String] fields
1234
- # Selector specifying which fields to include in a partial response.
1235
- # @param [String] quota_user
1236
- # Available to use for quota purposes for server-side applications. Can be any
1237
- # arbitrary string assigned to a user, but should not exceed 40 characters.
1238
- # @param [Google::Apis::RequestOptions] options
1239
- # Request-specific options
1240
- #
1241
- # @yield [result, err] Result & error if block supplied
1242
- # @yieldparam result [Google::Apis::ServicedirectoryV1beta1::Policy] parsed result object
1243
- # @yieldparam err [StandardError] error object if request failed
1244
- #
1245
- # @return [Google::Apis::ServicedirectoryV1beta1::Policy]
1246
- #
1247
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1248
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1249
- # @raise [Google::Apis::AuthorizationError] Authorization is required
1250
- def set_registration_policy_iam_policy(resource, set_iam_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1251
- command = make_simple_command(:post, 'v1beta1/{+resource}:setIamPolicy', options)
1252
- command.request_representation = Google::Apis::ServicedirectoryV1beta1::SetIamPolicyRequest::Representation
1253
- command.request_object = set_iam_policy_request_object
1254
- command.response_representation = Google::Apis::ServicedirectoryV1beta1::Policy::Representation
1255
- command.response_class = Google::Apis::ServicedirectoryV1beta1::Policy
1256
- command.params['resource'] = resource unless resource.nil?
1257
- command.query['fields'] = fields unless fields.nil?
1258
- command.query['quotaUser'] = quota_user unless quota_user.nil?
1259
- execute_or_queue_command(command, &block)
1260
- end
1261
-
1262
- # Tests IAM permissions for a resource (namespace, service or service workload
1263
- # only).
1264
- # @param [String] resource
1265
- # REQUIRED: The resource for which the policy detail is being requested. See [
1266
- # Resource names](https://cloud.google.com/apis/design/resource_names) for the
1267
- # appropriate value for this field.
1268
- # @param [Google::Apis::ServicedirectoryV1beta1::TestIamPermissionsRequest] test_iam_permissions_request_object
1269
- # @param [String] fields
1270
- # Selector specifying which fields to include in a partial response.
1271
- # @param [String] quota_user
1272
- # Available to use for quota purposes for server-side applications. Can be any
1273
- # arbitrary string assigned to a user, but should not exceed 40 characters.
1274
- # @param [Google::Apis::RequestOptions] options
1275
- # Request-specific options
1276
- #
1277
- # @yield [result, err] Result & error if block supplied
1278
- # @yieldparam result [Google::Apis::ServicedirectoryV1beta1::TestIamPermissionsResponse] parsed result object
1279
- # @yieldparam err [StandardError] error object if request failed
1280
- #
1281
- # @return [Google::Apis::ServicedirectoryV1beta1::TestIamPermissionsResponse]
1282
- #
1283
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1284
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1285
- # @raise [Google::Apis::AuthorizationError] Authorization is required
1286
- def test_registration_policy_iam_permissions(resource, test_iam_permissions_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1287
- command = make_simple_command(:post, 'v1beta1/{+resource}:testIamPermissions', options)
1288
- command.request_representation = Google::Apis::ServicedirectoryV1beta1::TestIamPermissionsRequest::Representation
1289
- command.request_object = test_iam_permissions_request_object
1290
- command.response_representation = Google::Apis::ServicedirectoryV1beta1::TestIamPermissionsResponse::Representation
1291
- command.response_class = Google::Apis::ServicedirectoryV1beta1::TestIamPermissionsResponse
1292
- command.params['resource'] = resource unless resource.nil?
1293
- command.query['fields'] = fields unless fields.nil?
1294
- command.query['quotaUser'] = quota_user unless quota_user.nil?
1295
- execute_or_queue_command(command, &block)
1296
- end
1297
1191
 
1298
1192
  protected
1299
1193
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-servicedirectory_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.31.0
4
+ version: 0.32.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-06-25 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-servicedirectory_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-servicedirectory_v1beta1/v0.31.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-servicedirectory_v1beta1/v0.32.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicedirectory_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []