google-apis-migrationcenter_v1alpha1 0.10.0 → 0.11.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: c18c542b68a807a397afac551706468b15f019689a473c1dc72cceedbf4f9f47
4
- data.tar.gz: b561839b9a1f2d0abc37c00367798d737ae199c1e75ec39ca93ea7ee6a1fedb4
3
+ metadata.gz: 6791dfd1732bcbd9b2fc475841d6afa1c9e3ce12afcefb16083e22cfad7e3914
4
+ data.tar.gz: 1d16bc136a0625650cd29bb5744f4f99e1ff9add3d4883d065745456a843f755
5
5
  SHA512:
6
- metadata.gz: 10aea84f6c502bff9fc6690c5a015bfd5401eba0cbb30a9068c0517a79497b60eaf503eaf9b04b2bd7b70344b9e05ec859d05801d1729528d2db6e3e015ac42a
7
- data.tar.gz: 78dfb9b2c7773fc59c615f872f59a01e4d30e2446c012c751f324ec14de41f9b8d68d0df465e7379b9ad71e4417af3b1c90f4bdd93b53839873c58bcbb3b5882
6
+ metadata.gz: 9a70dc21e4d57670181bbee61813aa7dd3ab665a104a10deb949c48db5679f31ece08eca7591e703aefc4c1692677047a5f2a981d6596809989e6659ab0242de
7
+ data.tar.gz: 13b45f8b72abc8e4fdd0f404742b9ee683cd32f72c158856b014e684943cdec69adc193208b47e3f219553e1fa269786e1a57603420dcd720bfaf398646e517a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-migrationcenter_v1alpha1
2
2
 
3
+ ### v0.11.0 (2023-06-25)
4
+
5
+ * Regenerated from discovery document revision 20230619
6
+
3
7
  ### v0.10.0 (2023-06-18)
4
8
 
5
9
  * Regenerated from discovery document revision 20230613
@@ -804,6 +804,11 @@ module Google
804
804
  # @return [String]
805
805
  attr_accessor :series
806
806
 
807
+ # Compute Engine storage. Never empty.
808
+ # Corresponds to the JSON property `storage`
809
+ # @return [Array<Google::Apis::MigrationcenterV1alpha1::ComputeStorageDescriptor>]
810
+ attr_accessor :storage
811
+
807
812
  def initialize(**args)
808
813
  update!(**args)
809
814
  end
@@ -815,6 +820,32 @@ module Google
815
820
  @memory_mb = args[:memory_mb] if args.key?(:memory_mb)
816
821
  @physical_core_count = args[:physical_core_count] if args.key?(:physical_core_count)
817
822
  @series = args[:series] if args.key?(:series)
823
+ @storage = args[:storage] if args.key?(:storage)
824
+ end
825
+ end
826
+
827
+ # Compute Engine storage option descriptor.
828
+ class ComputeStorageDescriptor
829
+ include Google::Apis::Core::Hashable
830
+
831
+ # Disk size in GiB.
832
+ # Corresponds to the JSON property `sizeGb`
833
+ # @return [Fixnum]
834
+ attr_accessor :size_gb
835
+
836
+ # Disk type backing the storage.
837
+ # Corresponds to the JSON property `type`
838
+ # @return [String]
839
+ attr_accessor :type
840
+
841
+ def initialize(**args)
842
+ update!(**args)
843
+ end
844
+
845
+ # Update properties of this object
846
+ def update!(**args)
847
+ @size_gb = args[:size_gb] if args.key?(:size_gb)
848
+ @type = args[:type] if args.key?(:type)
818
849
  end
819
850
  end
820
851
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module MigrationcenterV1alpha1
18
18
  # Version of the google-apis-migrationcenter_v1alpha1 gem
19
- GEM_VERSION = "0.10.0"
19
+ GEM_VERSION = "0.11.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 = "20230613"
25
+ REVISION = "20230619"
26
26
  end
27
27
  end
28
28
  end
@@ -190,6 +190,12 @@ module Google
190
190
  include Google::Apis::Core::JsonObjectSupport
191
191
  end
192
192
 
193
+ class ComputeStorageDescriptor
194
+ class Representation < Google::Apis::Core::JsonRepresentation; end
195
+
196
+ include Google::Apis::Core::JsonObjectSupport
197
+ end
198
+
193
199
  class CpuUsageSample
194
200
  class Representation < Google::Apis::Core::JsonRepresentation; end
195
201
 
@@ -1186,6 +1192,16 @@ module Google
1186
1192
  property :memory_mb, as: 'memoryMb'
1187
1193
  property :physical_core_count, as: 'physicalCoreCount'
1188
1194
  property :series, as: 'series'
1195
+ collection :storage, as: 'storage', class: Google::Apis::MigrationcenterV1alpha1::ComputeStorageDescriptor, decorator: Google::Apis::MigrationcenterV1alpha1::ComputeStorageDescriptor::Representation
1196
+
1197
+ end
1198
+ end
1199
+
1200
+ class ComputeStorageDescriptor
1201
+ # @private
1202
+ class Representation < Google::Apis::Core::JsonRepresentation
1203
+ property :size_gb, as: 'sizeGb'
1204
+ property :type, as: 'type'
1189
1205
  end
1190
1206
  end
1191
1207
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-migrationcenter_v1alpha1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.11.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-06-18 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-migrationcenter_v1alpha1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1alpha1/v0.10.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1alpha1/v0.11.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-migrationcenter_v1alpha1
63
63
  post_install_message:
64
64
  rdoc_options: []