google-apis-deploymentmanager_alpha 0.32.0 → 0.34.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: 8d1872355ce097e8f6040e4b2da348af173ce43ed3dc27f1066943c82c3cd852
4
- data.tar.gz: 04d3ca5bba8eeeb5efb3e9edee15d46cb2671c3a21ac12b5a1eee0873e8d5083
3
+ metadata.gz: bd08978e1161bcd8d2186ffbfd497274f876ebef25f48de5f79f442784c1140f
4
+ data.tar.gz: 859f7df7fdc03a26f8d7df79391872e88fccc1112beaf2e8ae13b95784293c8c
5
5
  SHA512:
6
- metadata.gz: 5e20303d8066e8a8e67d3c63a37ea2ce2d0b5be4f7d76a5764cbed700834ee10472a916785415ec4fbb0a8369a22989a892b4d69beca53b188dfa3f14b1921d8
7
- data.tar.gz: 4d745fc7d67a99c3a4a21f16cfa2335a883e4b32a25cb553262c5ce32ab59ac40fd56f56f515f89ce62e5945605606ce6ac97dc2e59b0fad2805a2a85e4384f5
6
+ metadata.gz: 8493a02f437d1b1bddc22ef2d2e125a29c43647e12b5a391320b6dc3fd70e065ec17af93d6be4fff6b6fa2814582d1f5e7b70a32f5b962750b1e84f2c6e74e73
7
+ data.tar.gz: 279864f000b2b783bb08e979772a2d4c0c095df9395922d606e41cb90f634709ee12a91a52522a404baa29478c9e37f29a85efd020b3156858e05a976bbb9076
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-deploymentmanager_alpha
2
2
 
3
+ ### v0.34.0 (2025-03-30)
4
+
5
+ * Regenerated from discovery document revision 20250320
6
+
7
+ ### v0.33.0 (2025-01-12)
8
+
9
+ * Regenerated from discovery document revision 20250102
10
+ * Regenerated using generator version 0.16.0
11
+
3
12
  ### v0.32.0 (2024-12-02)
4
13
 
5
14
  * Regenerated from discovery document revision 20241122
@@ -948,16 +948,16 @@ module Google
948
948
  # @return [String]
949
949
  attr_accessor :domain
950
950
 
951
- # Additional structured details about this error. Keys must match /a-z+/ but
952
- # should ideally be lowerCamelCase. Also they must be limited to 64 characters
953
- # in length. When identifying the current value of an exceeded limit, the units
954
- # should be contained in the key, not the value. For example, rather than `"
955
- # instanceLimit": "100/request"`, should be returned as, `"
956
- # instanceLimitPerRequest": "100"`, if the client exceeds the number of
951
+ # Additional structured details about this error. Keys must match a regular
952
+ # expression of `a-z+` but should ideally be lowerCamelCase. Also, they must be
953
+ # limited to 64 characters in length. When identifying the current value of an
954
+ # exceeded limit, the units should be contained in the key, not the value. For
955
+ # example, rather than ``"instanceLimit": "100/request"``, should be returned as,
956
+ # ``"instanceLimitPerRequest": "100"``, if the client exceeds the number of
957
957
  # instances that can be created in a single (batch) request.
958
- # Corresponds to the JSON property `metadata`
958
+ # Corresponds to the JSON property `metadatas`
959
959
  # @return [Hash<String,String>]
960
- attr_accessor :metadata
960
+ attr_accessor :metadatas
961
961
 
962
962
  # The reason of the error. This is a constant value that identifies the
963
963
  # proximate cause of the error. Error reasons are unique within a particular
@@ -974,7 +974,7 @@ module Google
974
974
  # Update properties of this object
975
975
  def update!(**args)
976
976
  @domain = args[:domain] if args.key?(:domain)
977
- @metadata = args[:metadata] if args.key?(:metadata)
977
+ @metadatas = args[:metadatas] if args.key?(:metadatas)
978
978
  @reason = args[:reason] if args.key?(:reason)
979
979
  end
980
980
  end
@@ -1213,6 +1213,12 @@ module Google
1213
1213
  class InstancesBulkInsertOperationMetadata
1214
1214
  include Google::Apis::Core::Hashable
1215
1215
 
1216
+ # [Output Only] The machine type of the VMs that were created used internally
1217
+ # only by KCP flex bulk insert.
1218
+ # Corresponds to the JSON property `machineType`
1219
+ # @return [String]
1220
+ attr_accessor :machine_type
1221
+
1216
1222
  # Status information per location (location name is key). Example key: zones/us-
1217
1223
  # central1-a
1218
1224
  # Corresponds to the JSON property `perLocationStatus`
@@ -1225,6 +1231,7 @@ module Google
1225
1231
 
1226
1232
  # Update properties of this object
1227
1233
  def update!(**args)
1234
+ @machine_type = args[:machine_type] if args.key?(:machine_type)
1228
1235
  @per_location_status = args[:per_location_status] if args.key?(:per_location_status)
1229
1236
  end
1230
1237
  end
@@ -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.32.0"
19
+ GEM_VERSION = "0.34.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.1"
22
+ GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241122"
25
+ REVISION = "20250320"
26
26
  end
27
27
  end
28
28
  end
@@ -709,7 +709,7 @@ module Google
709
709
  # @private
710
710
  class Representation < Google::Apis::Core::JsonRepresentation
711
711
  property :domain, as: 'domain'
712
- hash :metadata, as: 'metadata'
712
+ hash :metadatas, as: 'metadatas'
713
713
  property :reason, as: 'reason'
714
714
  end
715
715
  end
@@ -773,6 +773,7 @@ module Google
773
773
  class InstancesBulkInsertOperationMetadata
774
774
  # @private
775
775
  class Representation < Google::Apis::Core::JsonRepresentation
776
+ property :machine_type, as: 'machineType'
776
777
  hash :per_location_status, as: 'perLocationStatus', class: Google::Apis::DeploymentmanagerAlpha::BulkInsertOperationStatus, decorator: Google::Apis::DeploymentmanagerAlpha::BulkInsertOperationStatus::Representation
777
778
 
778
779
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-deploymentmanager_alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.32.0
4
+ version: 0.34.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-04 00:00:00.000000000 Z
10
+ date: 2025-03-30 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: google-apis-core
@@ -58,9 +57,8 @@ licenses:
58
57
  metadata:
59
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
59
  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.32.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_alpha/v0.34.0
62
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-deploymentmanager_alpha
63
- post_install_message:
64
62
  rdoc_options: []
65
63
  require_paths:
66
64
  - lib
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
73
  - !ruby/object:Gem::Version
76
74
  version: '0'
77
75
  requirements: []
78
- rubygems_version: 3.5.22
79
- signing_key:
76
+ rubygems_version: 3.6.5
80
77
  specification_version: 4
81
78
  summary: Simple REST client for Cloud Deployment Manager V2 API Alpha
82
79
  test_files: []