google-apis-migrationcenter_v1alpha1 0.10.0 → 0.12.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: 43dc167f645a2f84ca86383f36b0d8a9f4af29a6cf38b8c0dcd8e53194e48d87
4
+ data.tar.gz: 9ee3b30432e725b3f34d68bdab1f4365544008de753bd9a02f961dbd25ec7f5d
5
5
  SHA512:
6
- metadata.gz: 10aea84f6c502bff9fc6690c5a015bfd5401eba0cbb30a9068c0517a79497b60eaf503eaf9b04b2bd7b70344b9e05ec859d05801d1729528d2db6e3e015ac42a
7
- data.tar.gz: 78dfb9b2c7773fc59c615f872f59a01e4d30e2446c012c751f324ec14de41f9b8d68d0df465e7379b9ad71e4417af3b1c90f4bdd93b53839873c58bcbb3b5882
6
+ metadata.gz: b87456d265fe1d34efc391880168b7c0fdfb1a57ffaa48535d39cfb1609d2c39707add026d17f5842847c5c1b12c8b20f1c524bf334860f3bc0357a4a0e70afc
7
+ data.tar.gz: dc8a765abe9c64221dcdfba132f11ed2f4ef291565107a4a7e68a6f1e853dec47f001063303203aaf94da84d2a88e1ce12c193541c0789c12fbdcb965dd037a8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-migrationcenter_v1alpha1
2
2
 
3
+ ### v0.12.0 (2023-07-16)
4
+
5
+ * Regenerated from discovery document revision 20230707
6
+
7
+ ### v0.11.0 (2023-06-25)
8
+
9
+ * Regenerated from discovery document revision 20230619
10
+
3
11
  ### v0.10.0 (2023-06-18)
4
12
 
5
13
  * Regenerated from discovery document revision 20230613
@@ -461,8 +461,8 @@ module Google
461
461
  # @return [Hash<String,String>]
462
462
  attr_accessor :labels
463
463
 
464
- # Asset performance data samples. Samples that are older than 40 days are
465
- # ignored.
464
+ # Asset performance data samples. Samples that are from more than 40 days ago or
465
+ # after tomorrow are ignored.
466
466
  # Corresponds to the JSON property `performanceSamples`
467
467
  # @return [Array<Google::Apis::MigrationcenterV1alpha1::PerformanceSample>]
468
468
  attr_accessor :performance_samples
@@ -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
 
@@ -3197,7 +3228,7 @@ module Google
3197
3228
  # @return [Google::Apis::MigrationcenterV1alpha1::NetworkUsageSample]
3198
3229
  attr_accessor :network
3199
3230
 
3200
- # Required. Time the sample was collected.
3231
+ # Time the sample was collected.
3201
3232
  # Corresponds to the JSON property `sampleTime`
3202
3233
  # @return [String]
3203
3234
  attr_accessor :sample_time
@@ -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.12.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 = "20230707"
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.12.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-07-16 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.12.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: []