google-apis-deploymentmanager_alpha 0.23.0 → 0.25.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1fd434df4687c92798cd52b601eb9d3ac2be3d76165bab3b691fb0a8b03e9a84
4
- data.tar.gz: 117679a230358d34012eab465dfbf530cc1a55f3094561691003f5180009e998
3
+ metadata.gz: 9cb88bd07fabcefd005f8ccd7ffe8b44aa8f65f72d766598b759d4282a12088e
4
+ data.tar.gz: 690c705d5b67914f9b4d2655e7ee1579a55588cb93711aeda35aae13b7719bf3
5
5
  SHA512:
6
- metadata.gz: 19e35ada071a70eeb78424ba17a3dab14d4539815992833e3224142c2614ce80fe2b564dc01ac767298497454bb6335715788b1cbd5454e4ee8396aa1a9d2880
7
- data.tar.gz: 77a45fcc67c7e022bb2c28007c9232bb7d3d8c8552c05d6e6a7a561e709a989eeadf51bcf61773a499c5b105bf720959beddbbb46d37f139e08c7f727dabac65
6
+ metadata.gz: 6af82e2bdf6408d63efeba8e8e932c34744cf800847b5bcbe25e72454213a5bfbae4e56ce86c582e8f2339195fbd34ac80ca264f6dde36f90f2048e010067fff
7
+ data.tar.gz: 52e6f8a25cfddecf342568ddf6d2c061e050aaab9ec76a537e96285ab86e63d8be40f244694856e55fcae90479c9a10565034d40ba0c49ded51e22997d7b9066
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-deploymentmanager_alpha
2
2
 
3
+ ### v0.25.0 (2023-08-27)
4
+
5
+ * Regenerated from discovery document revision 20230821
6
+
7
+ ### v0.24.0 (2023-02-26)
8
+
9
+ * Regenerated from discovery document revision 20230202
10
+ * Regenerated using generator version 0.12.0
11
+
3
12
  ### v0.23.0 (2022-10-20)
4
13
 
5
14
  * Regenerated using generator version 0.11.0
@@ -221,22 +221,22 @@ module Google
221
221
  # kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-
222
222
  # project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:`emailid``: An
223
223
  # email address that represents a Google group. For example, `admins@example.com`
224
- # . * `deleted:user:`emailid`?uid=`uniqueid``: An email address (plus unique
225
- # identifier) representing a user that has been recently deleted. For example, `
226
- # alice@example.com?uid=123456789012345678901`. If the user is recovered, this
227
- # value reverts to `user:`emailid`` and the recovered user retains the role in
228
- # the binding. * `deleted:serviceAccount:`emailid`?uid=`uniqueid``: An email
229
- # address (plus unique identifier) representing a service account that has been
230
- # recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=
224
+ # . * `domain:`domain``: The G Suite domain (primary) that represents all the
225
+ # users of that domain. For example, `google.com` or `example.com`. * `deleted:
226
+ # user:`emailid`?uid=`uniqueid``: An email address (plus unique identifier)
227
+ # representing a user that has been recently deleted. For example, `alice@
228
+ # example.com?uid=123456789012345678901`. If the user is recovered, this value
229
+ # reverts to `user:`emailid`` and the recovered user retains the role in the
230
+ # binding. * `deleted:serviceAccount:`emailid`?uid=`uniqueid``: An email address
231
+ # (plus unique identifier) representing a service account that has been recently
232
+ # deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=
231
233
  # 123456789012345678901`. If the service account is undeleted, this value
232
234
  # reverts to `serviceAccount:`emailid`` and the undeleted service account
233
235
  # retains the role in the binding. * `deleted:group:`emailid`?uid=`uniqueid``:
234
236
  # An email address (plus unique identifier) representing a Google group that has
235
237
  # been recently deleted. For example, `admins@example.com?uid=
236
238
  # 123456789012345678901`. If the group is recovered, this value reverts to `
237
- # group:`emailid`` and the recovered group retains the role in the binding. * `
238
- # domain:`domain``: The G Suite domain (primary) that represents all the users
239
- # of that domain. For example, `google.com` or `example.com`.
239
+ # group:`emailid`` and the recovered group retains the role in the binding.
240
240
  # Corresponds to the JSON property `members`
241
241
  # @return [Array<String>]
242
242
  attr_accessor :members
@@ -259,6 +259,50 @@ module Google
259
259
  end
260
260
  end
261
261
 
262
+ #
263
+ class BulkInsertOperationStatus
264
+ include Google::Apis::Core::Hashable
265
+
266
+ # [Output Only] Count of VMs successfully created so far.
267
+ # Corresponds to the JSON property `createdVmCount`
268
+ # @return [Fixnum]
269
+ attr_accessor :created_vm_count
270
+
271
+ # [Output Only] Count of VMs that got deleted during rollback.
272
+ # Corresponds to the JSON property `deletedVmCount`
273
+ # @return [Fixnum]
274
+ attr_accessor :deleted_vm_count
275
+
276
+ # [Output Only] Count of VMs that started creating but encountered an error.
277
+ # Corresponds to the JSON property `failedToCreateVmCount`
278
+ # @return [Fixnum]
279
+ attr_accessor :failed_to_create_vm_count
280
+
281
+ # [Output Only] Creation status of BulkInsert operation - information if the
282
+ # flow is rolling forward or rolling back.
283
+ # Corresponds to the JSON property `status`
284
+ # @return [String]
285
+ attr_accessor :status
286
+
287
+ # [Output Only] Count of VMs originally planned to be created.
288
+ # Corresponds to the JSON property `targetVmCount`
289
+ # @return [Fixnum]
290
+ attr_accessor :target_vm_count
291
+
292
+ def initialize(**args)
293
+ update!(**args)
294
+ end
295
+
296
+ # Update properties of this object
297
+ def update!(**args)
298
+ @created_vm_count = args[:created_vm_count] if args.key?(:created_vm_count)
299
+ @deleted_vm_count = args[:deleted_vm_count] if args.key?(:deleted_vm_count)
300
+ @failed_to_create_vm_count = args[:failed_to_create_vm_count] if args.key?(:failed_to_create_vm_count)
301
+ @status = args[:status] if args.key?(:status)
302
+ @target_vm_count = args[:target_vm_count] if args.key?(:target_vm_count)
303
+ end
304
+ end
305
+
262
306
  # CollectionOverride allows resource handling overrides for specific resources
263
307
  # within a BaseType
264
308
  class CollectionOverride
@@ -335,7 +379,7 @@ module Google
335
379
  # requests. For more information, read Handling API responses. Operations can be
336
380
  # global, regional or zonal. - For global operations, use the `globalOperations`
337
381
  # resource. - For regional operations, use the `regionOperations` resource. -
338
- # For zonal operations, use the `zonalOperations` resource. For more information,
382
+ # For zonal operations, use the `zoneOperations` resource. For more information,
339
383
  # read Global, Regional, and Zonal Resources.
340
384
  # Corresponds to the JSON property `operation`
341
385
  # @return [Google::Apis::DeploymentmanagerAlpha::Operation]
@@ -549,7 +593,7 @@ module Google
549
593
  # requests. For more information, read Handling API responses. Operations can be
550
594
  # global, regional or zonal. - For global operations, use the `globalOperations`
551
595
  # resource. - For regional operations, use the `regionOperations` resource. -
552
- # For zonal operations, use the `zonalOperations` resource. For more information,
596
+ # For zonal operations, use the `zoneOperations` resource. For more information,
553
597
  # read Global, Regional, and Zonal Resources.
554
598
  # Corresponds to the JSON property `operation`
555
599
  # @return [Google::Apis::DeploymentmanagerAlpha::Operation]
@@ -913,22 +957,22 @@ module Google
913
957
  # evaluates to `true`. A condition can add constraints based on attributes of
914
958
  # the request, the resource, or both. To learn which resources support
915
959
  # conditions in their IAM policies, see the [IAM documentation](https://cloud.
916
- # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
960
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
917
961
  # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
918
962
  # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
919
963
  # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
920
964
  # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
921
965
  # ], "condition": ` "title": "expirable access", "description": "Does not grant
922
966
  # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
923
- # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
924
- # bindings: - members: - user:mike@example.com - group:admins@example.com -
925
- # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
926
- # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
927
- # com role: roles/resourcemanager.organizationViewer condition: title: expirable
928
- # access description: Does not grant access after Sep 2020 expression: request.
929
- # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
930
- # a description of IAM and its features, see the [IAM documentation](https://
931
- # cloud.google.com/iam/docs/).
967
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
968
+ # example:** ``` bindings: - members: - user:mike@example.com - group:admins@
969
+ # example.com - domain:google.com - serviceAccount:my-project-id@appspot.
970
+ # gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
971
+ # user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
972
+ # title: expirable access description: Does not grant access after Sep 2020
973
+ # expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
974
+ # BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
975
+ # [IAM documentation](https://cloud.google.com/iam/docs/).
932
976
  # Corresponds to the JSON property `policy`
933
977
  # @return [Google::Apis::DeploymentmanagerAlpha::Policy]
934
978
  attr_accessor :policy
@@ -1008,6 +1052,26 @@ module Google
1008
1052
  end
1009
1053
  end
1010
1054
 
1055
+ #
1056
+ class InstancesBulkInsertOperationMetadata
1057
+ include Google::Apis::Core::Hashable
1058
+
1059
+ # Status information per location (location name is key). Example key: zones/us-
1060
+ # central1-a
1061
+ # Corresponds to the JSON property `perLocationStatus`
1062
+ # @return [Hash<String,Google::Apis::DeploymentmanagerAlpha::BulkInsertOperationStatus>]
1063
+ attr_accessor :per_location_status
1064
+
1065
+ def initialize(**args)
1066
+ update!(**args)
1067
+ end
1068
+
1069
+ # Update properties of this object
1070
+ def update!(**args)
1071
+ @per_location_status = args[:per_location_status] if args.key?(:per_location_status)
1072
+ end
1073
+ end
1074
+
1011
1075
  #
1012
1076
  class Manifest
1013
1077
  include Google::Apis::Core::Hashable
@@ -1161,7 +1225,7 @@ module Google
1161
1225
  # requests. For more information, read Handling API responses. Operations can be
1162
1226
  # global, regional or zonal. - For global operations, use the `globalOperations`
1163
1227
  # resource. - For regional operations, use the `regionOperations` resource. -
1164
- # For zonal operations, use the `zonalOperations` resource. For more information,
1228
+ # For zonal operations, use the `zoneOperations` resource. For more information,
1165
1229
  # read Global, Regional, and Zonal Resources.
1166
1230
  class Operation
1167
1231
  include Google::Apis::Core::Hashable
@@ -1220,6 +1284,11 @@ module Google
1220
1284
  # @return [String]
1221
1285
  attr_accessor :insert_time
1222
1286
 
1287
+ #
1288
+ # Corresponds to the JSON property `instancesBulkInsertOperationMetadata`
1289
+ # @return [Google::Apis::DeploymentmanagerAlpha::InstancesBulkInsertOperationMetadata]
1290
+ attr_accessor :instances_bulk_insert_operation_metadata
1291
+
1223
1292
  # [Output Only] Type of the resource. Always `compute#operation` for Operation
1224
1293
  # resources.
1225
1294
  # Corresponds to the JSON property `kind`
@@ -1262,6 +1331,12 @@ module Google
1262
1331
  # @return [String]
1263
1332
  attr_accessor :self_link
1264
1333
 
1334
+ # [Output Only] If the operation is for projects.setCommonInstanceMetadata, this
1335
+ # field will contain information on all underlying zonal actions and their state.
1336
+ # Corresponds to the JSON property `setCommonInstanceMetadataOperationMetadata`
1337
+ # @return [Google::Apis::DeploymentmanagerAlpha::SetCommonInstanceMetadataOperationMetadata]
1338
+ attr_accessor :set_common_instance_metadata_operation_metadata
1339
+
1265
1340
  # [Output Only] The time that this operation was started by the server. This
1266
1341
  # value is in RFC3339 text format.
1267
1342
  # Corresponds to the JSON property `startTime`
@@ -1294,7 +1369,7 @@ module Google
1294
1369
  attr_accessor :target_link
1295
1370
 
1296
1371
  # [Output Only] User who requested the operation, for example: `user@example.com`
1297
- # .
1372
+ # or `alice_smith_identifier (global/workforcePools/example-com-us-employees)`.
1298
1373
  # Corresponds to the JSON property `user`
1299
1374
  # @return [String]
1300
1375
  attr_accessor :user
@@ -1326,6 +1401,7 @@ module Google
1326
1401
  @http_error_status_code = args[:http_error_status_code] if args.key?(:http_error_status_code)
1327
1402
  @id = args[:id] if args.key?(:id)
1328
1403
  @insert_time = args[:insert_time] if args.key?(:insert_time)
1404
+ @instances_bulk_insert_operation_metadata = args[:instances_bulk_insert_operation_metadata] if args.key?(:instances_bulk_insert_operation_metadata)
1329
1405
  @kind = args[:kind] if args.key?(:kind)
1330
1406
  @name = args[:name] if args.key?(:name)
1331
1407
  @operation_group_id = args[:operation_group_id] if args.key?(:operation_group_id)
@@ -1333,6 +1409,7 @@ module Google
1333
1409
  @progress = args[:progress] if args.key?(:progress)
1334
1410
  @region = args[:region] if args.key?(:region)
1335
1411
  @self_link = args[:self_link] if args.key?(:self_link)
1412
+ @set_common_instance_metadata_operation_metadata = args[:set_common_instance_metadata_operation_metadata] if args.key?(:set_common_instance_metadata_operation_metadata)
1336
1413
  @start_time = args[:start_time] if args.key?(:start_time)
1337
1414
  @status = args[:status] if args.key?(:status)
1338
1415
  @status_message = args[:status_message] if args.key?(:status_message)
@@ -1536,22 +1613,22 @@ module Google
1536
1613
  # evaluates to `true`. A condition can add constraints based on attributes of
1537
1614
  # the request, the resource, or both. To learn which resources support
1538
1615
  # conditions in their IAM policies, see the [IAM documentation](https://cloud.
1539
- # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
1616
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
1540
1617
  # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
1541
1618
  # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
1542
1619
  # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
1543
1620
  # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
1544
1621
  # ], "condition": ` "title": "expirable access", "description": "Does not grant
1545
1622
  # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
1546
- # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
1547
- # bindings: - members: - user:mike@example.com - group:admins@example.com -
1548
- # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
1549
- # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
1550
- # com role: roles/resourcemanager.organizationViewer condition: title: expirable
1551
- # access description: Does not grant access after Sep 2020 expression: request.
1552
- # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
1553
- # a description of IAM and its features, see the [IAM documentation](https://
1554
- # cloud.google.com/iam/docs/).
1623
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
1624
+ # example:** ``` bindings: - members: - user:mike@example.com - group:admins@
1625
+ # example.com - domain:google.com - serviceAccount:my-project-id@appspot.
1626
+ # gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
1627
+ # user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
1628
+ # title: expirable access description: Does not grant access after Sep 2020
1629
+ # expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
1630
+ # BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
1631
+ # [IAM documentation](https://cloud.google.com/iam/docs/).
1555
1632
  class Policy
1556
1633
  include Google::Apis::Core::Hashable
1557
1634
 
@@ -2095,6 +2172,102 @@ module Google
2095
2172
  end
2096
2173
  end
2097
2174
 
2175
+ #
2176
+ class SetCommonInstanceMetadataOperationMetadata
2177
+ include Google::Apis::Core::Hashable
2178
+
2179
+ # [Output Only] The client operation id.
2180
+ # Corresponds to the JSON property `clientOperationId`
2181
+ # @return [String]
2182
+ attr_accessor :client_operation_id
2183
+
2184
+ # [Output Only] Status information per location (location name is key). Example
2185
+ # key: zones/us-central1-a
2186
+ # Corresponds to the JSON property `perLocationOperations`
2187
+ # @return [Hash<String,Google::Apis::DeploymentmanagerAlpha::SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo>]
2188
+ attr_accessor :per_location_operations
2189
+
2190
+ def initialize(**args)
2191
+ update!(**args)
2192
+ end
2193
+
2194
+ # Update properties of this object
2195
+ def update!(**args)
2196
+ @client_operation_id = args[:client_operation_id] if args.key?(:client_operation_id)
2197
+ @per_location_operations = args[:per_location_operations] if args.key?(:per_location_operations)
2198
+ end
2199
+ end
2200
+
2201
+ #
2202
+ class SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo
2203
+ include Google::Apis::Core::Hashable
2204
+
2205
+ # The `Status` type defines a logical error model that is suitable for different
2206
+ # programming environments, including REST APIs and RPC APIs. It is used by [
2207
+ # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
2208
+ # data: error code, error message, and error details. You can find out more
2209
+ # about this error model and how to work with it in the [API Design Guide](https:
2210
+ # //cloud.google.com/apis/design/errors).
2211
+ # Corresponds to the JSON property `error`
2212
+ # @return [Google::Apis::DeploymentmanagerAlpha::Status]
2213
+ attr_accessor :error
2214
+
2215
+ # [Output Only] Status of the action, which can be one of the following: `
2216
+ # PROPAGATING`, `PROPAGATED`, `ABANDONED`, `FAILED`, or `DONE`.
2217
+ # Corresponds to the JSON property `state`
2218
+ # @return [String]
2219
+ attr_accessor :state
2220
+
2221
+ def initialize(**args)
2222
+ update!(**args)
2223
+ end
2224
+
2225
+ # Update properties of this object
2226
+ def update!(**args)
2227
+ @error = args[:error] if args.key?(:error)
2228
+ @state = args[:state] if args.key?(:state)
2229
+ end
2230
+ end
2231
+
2232
+ # The `Status` type defines a logical error model that is suitable for different
2233
+ # programming environments, including REST APIs and RPC APIs. It is used by [
2234
+ # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
2235
+ # data: error code, error message, and error details. You can find out more
2236
+ # about this error model and how to work with it in the [API Design Guide](https:
2237
+ # //cloud.google.com/apis/design/errors).
2238
+ class Status
2239
+ include Google::Apis::Core::Hashable
2240
+
2241
+ # The status code, which should be an enum value of google.rpc.Code.
2242
+ # Corresponds to the JSON property `code`
2243
+ # @return [Fixnum]
2244
+ attr_accessor :code
2245
+
2246
+ # A list of messages that carry the error details. There is a common set of
2247
+ # message types for APIs to use.
2248
+ # Corresponds to the JSON property `details`
2249
+ # @return [Array<Hash<String,Object>>]
2250
+ attr_accessor :details
2251
+
2252
+ # A developer-facing error message, which should be in English. Any user-facing
2253
+ # error message should be localized and sent in the google.rpc.Status.details
2254
+ # field, or localized by the client.
2255
+ # Corresponds to the JSON property `message`
2256
+ # @return [String]
2257
+ attr_accessor :message
2258
+
2259
+ def initialize(**args)
2260
+ update!(**args)
2261
+ end
2262
+
2263
+ # Update properties of this object
2264
+ def update!(**args)
2265
+ @code = args[:code] if args.key?(:code)
2266
+ @details = args[:details] if args.key?(:details)
2267
+ @message = args[:message] if args.key?(:message)
2268
+ end
2269
+ end
2270
+
2098
2271
  #
2099
2272
  class TargetConfiguration
2100
2273
  include Google::Apis::Core::Hashable
@@ -2251,7 +2424,7 @@ module Google
2251
2424
  # requests. For more information, read Handling API responses. Operations can be
2252
2425
  # global, regional or zonal. - For global operations, use the `globalOperations`
2253
2426
  # resource. - For regional operations, use the `regionOperations` resource. -
2254
- # For zonal operations, use the `zonalOperations` resource. For more information,
2427
+ # For zonal operations, use the `zoneOperations` resource. For more information,
2255
2428
  # read Global, Regional, and Zonal Resources.
2256
2429
  # Corresponds to the JSON property `operation`
2257
2430
  # @return [Google::Apis::DeploymentmanagerAlpha::Operation]
@@ -2464,7 +2637,7 @@ module Google
2464
2637
  # requests. For more information, read Handling API responses. Operations can be
2465
2638
  # global, regional or zonal. - For global operations, use the `globalOperations`
2466
2639
  # resource. - For regional operations, use the `regionOperations` resource. -
2467
- # For zonal operations, use the `zonalOperations` resource. For more information,
2640
+ # For zonal operations, use the `zoneOperations` resource. For more information,
2468
2641
  # read Global, Regional, and Zonal Resources.
2469
2642
  # Corresponds to the JSON property `operation`
2470
2643
  # @return [Google::Apis::DeploymentmanagerAlpha::Operation]
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DeploymentmanagerAlpha
18
18
  # Version of the google-apis-deploymentmanager_alpha gem
19
- GEM_VERSION = "0.23.0"
19
+ GEM_VERSION = "0.25.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.0"
22
+ GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220908"
25
+ REVISION = "20230821"
26
26
  end
27
27
  end
28
28
  end
@@ -58,6 +58,12 @@ module Google
58
58
  include Google::Apis::Core::JsonObjectSupport
59
59
  end
60
60
 
61
+ class BulkInsertOperationStatus
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
61
67
  class CollectionOverride
62
68
  class Representation < Google::Apis::Core::JsonRepresentation; end
63
69
 
@@ -172,6 +178,12 @@ module Google
172
178
  include Google::Apis::Core::JsonObjectSupport
173
179
  end
174
180
 
181
+ class InstancesBulkInsertOperationMetadata
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
175
187
  class Manifest
176
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
177
189
 
@@ -310,6 +322,24 @@ module Google
310
322
  include Google::Apis::Core::JsonObjectSupport
311
323
  end
312
324
 
325
+ class SetCommonInstanceMetadataOperationMetadata
326
+ class Representation < Google::Apis::Core::JsonRepresentation; end
327
+
328
+ include Google::Apis::Core::JsonObjectSupport
329
+ end
330
+
331
+ class SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo
332
+ class Representation < Google::Apis::Core::JsonRepresentation; end
333
+
334
+ include Google::Apis::Core::JsonObjectSupport
335
+ end
336
+
337
+ class Status
338
+ class Representation < Google::Apis::Core::JsonRepresentation; end
339
+
340
+ include Google::Apis::Core::JsonObjectSupport
341
+ end
342
+
313
343
  class TargetConfiguration
314
344
  class Representation < Google::Apis::Core::JsonRepresentation; end
315
345
 
@@ -451,6 +481,17 @@ module Google
451
481
  end
452
482
  end
453
483
 
484
+ class BulkInsertOperationStatus
485
+ # @private
486
+ class Representation < Google::Apis::Core::JsonRepresentation
487
+ property :created_vm_count, as: 'createdVmCount'
488
+ property :deleted_vm_count, as: 'deletedVmCount'
489
+ property :failed_to_create_vm_count, as: 'failedToCreateVmCount'
490
+ property :status, as: 'status'
491
+ property :target_vm_count, as: 'targetVmCount'
492
+ end
493
+ end
494
+
454
495
  class CollectionOverride
455
496
  # @private
456
497
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -647,6 +688,14 @@ module Google
647
688
  end
648
689
  end
649
690
 
691
+ class InstancesBulkInsertOperationMetadata
692
+ # @private
693
+ class Representation < Google::Apis::Core::JsonRepresentation
694
+ hash :per_location_status, as: 'perLocationStatus', class: Google::Apis::DeploymentmanagerAlpha::BulkInsertOperationStatus, decorator: Google::Apis::DeploymentmanagerAlpha::BulkInsertOperationStatus::Representation
695
+
696
+ end
697
+ end
698
+
650
699
  class Manifest
651
700
  # @private
652
701
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -698,6 +747,8 @@ module Google
698
747
  property :http_error_status_code, as: 'httpErrorStatusCode'
699
748
  property :id, :numeric_string => true, as: 'id'
700
749
  property :insert_time, as: 'insertTime'
750
+ property :instances_bulk_insert_operation_metadata, as: 'instancesBulkInsertOperationMetadata', class: Google::Apis::DeploymentmanagerAlpha::InstancesBulkInsertOperationMetadata, decorator: Google::Apis::DeploymentmanagerAlpha::InstancesBulkInsertOperationMetadata::Representation
751
+
701
752
  property :kind, as: 'kind'
702
753
  property :name, as: 'name'
703
754
  property :operation_group_id, as: 'operationGroupId'
@@ -705,6 +756,8 @@ module Google
705
756
  property :progress, as: 'progress'
706
757
  property :region, as: 'region'
707
758
  property :self_link, as: 'selfLink'
759
+ property :set_common_instance_metadata_operation_metadata, as: 'setCommonInstanceMetadataOperationMetadata', class: Google::Apis::DeploymentmanagerAlpha::SetCommonInstanceMetadataOperationMetadata, decorator: Google::Apis::DeploymentmanagerAlpha::SetCommonInstanceMetadataOperationMetadata::Representation
760
+
708
761
  property :start_time, as: 'startTime'
709
762
  property :status, as: 'status'
710
763
  property :status_message, as: 'statusMessage'
@@ -918,6 +971,33 @@ module Google
918
971
  end
919
972
  end
920
973
 
974
+ class SetCommonInstanceMetadataOperationMetadata
975
+ # @private
976
+ class Representation < Google::Apis::Core::JsonRepresentation
977
+ property :client_operation_id, as: 'clientOperationId'
978
+ hash :per_location_operations, as: 'perLocationOperations', class: Google::Apis::DeploymentmanagerAlpha::SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo, decorator: Google::Apis::DeploymentmanagerAlpha::SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo::Representation
979
+
980
+ end
981
+ end
982
+
983
+ class SetCommonInstanceMetadataOperationMetadataPerLocationOperationInfo
984
+ # @private
985
+ class Representation < Google::Apis::Core::JsonRepresentation
986
+ property :error, as: 'error', class: Google::Apis::DeploymentmanagerAlpha::Status, decorator: Google::Apis::DeploymentmanagerAlpha::Status::Representation
987
+
988
+ property :state, as: 'state'
989
+ end
990
+ end
991
+
992
+ class Status
993
+ # @private
994
+ class Representation < Google::Apis::Core::JsonRepresentation
995
+ property :code, as: 'code'
996
+ collection :details, as: 'details'
997
+ property :message, as: 'message'
998
+ end
999
+ end
1000
+
921
1001
  class TargetConfiguration
922
1002
  # @private
923
1003
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-deploymentmanager_alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.0
4
+ version: 0.25.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: 2022-10-21 00:00:00.000000000 Z
11
+ date: 2023-08-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.9.1
19
+ version: 0.11.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.9.1
29
+ version: 0.11.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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-deploymentmanager_alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_alpha/v0.23.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_alpha/v0.25.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-deploymentmanager_alpha
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.3.14
78
+ rubygems_version: 3.4.19
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Deployment Manager V2 API Alpha