google-apis-migrationcenter_v1alpha1 0.9.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: 50c770033156ed22af4431edfca23147028b0bb17d0d41b5c31fe3cf0e34f041
4
- data.tar.gz: 41cd7f78e89113f3afcf9d3d6a95aec96fec5bd98731f77ee5e67ccc07641d23
3
+ metadata.gz: 6791dfd1732bcbd9b2fc475841d6afa1c9e3ce12afcefb16083e22cfad7e3914
4
+ data.tar.gz: 1d16bc136a0625650cd29bb5744f4f99e1ff9add3d4883d065745456a843f755
5
5
  SHA512:
6
- metadata.gz: d51bb20ef1fb5c26e9f83b2e9e99d89dedb8413e7f0d50d3462cafa9d2860d672c9ccdd982bdf25d2cbee30b0eb0bc6974021786749870642b478ae3632a4d65
7
- data.tar.gz: b3fa0118252f54b78cf7a302ddbf387d08117b844c3d52044ea0f316169b6ff8ac7725889dee27b8f55e59d28a29e876497fcf65334d1f72423c43b27063247c
6
+ metadata.gz: 9a70dc21e4d57670181bbee61813aa7dd3ab665a104a10deb949c48db5679f31ece08eca7591e703aefc4c1692677047a5f2a981d6596809989e6659ab0242de
7
+ data.tar.gz: 13b45f8b72abc8e4fdd0f404742b9ee683cd32f72c158856b014e684943cdec69adc193208b47e3f219553e1fa269786e1a57603420dcd720bfaf398646e517a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
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
+
7
+ ### v0.10.0 (2023-06-18)
8
+
9
+ * Regenerated from discovery document revision 20230613
10
+
3
11
  ### v0.9.0 (2023-06-11)
4
12
 
5
13
  * Regenerated from discovery document revision 20230602
@@ -461,7 +461,8 @@ module Google
461
461
  # @return [Hash<String,String>]
462
462
  attr_accessor :labels
463
463
 
464
- # Asset performance data samples.
464
+ # Asset performance data samples. Samples that are older than 40 days are
465
+ # ignored.
465
466
  # Corresponds to the JSON property `performanceSamples`
466
467
  # @return [Array<Google::Apis::MigrationcenterV1alpha1::PerformanceSample>]
467
468
  attr_accessor :performance_samples
@@ -803,6 +804,11 @@ module Google
803
804
  # @return [String]
804
805
  attr_accessor :series
805
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
+
806
812
  def initialize(**args)
807
813
  update!(**args)
808
814
  end
@@ -814,6 +820,32 @@ module Google
814
820
  @memory_mb = args[:memory_mb] if args.key?(:memory_mb)
815
821
  @physical_core_count = args[:physical_core_count] if args.key?(:physical_core_count)
816
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)
817
849
  end
818
850
  end
819
851
 
@@ -3196,7 +3228,7 @@ module Google
3196
3228
  # @return [Google::Apis::MigrationcenterV1alpha1::NetworkUsageSample]
3197
3229
  attr_accessor :network
3198
3230
 
3199
- # Time the sample was collected.
3231
+ # Required. Time the sample was collected.
3200
3232
  # Corresponds to the JSON property `sampleTime`
3201
3233
  # @return [String]
3202
3234
  attr_accessor :sample_time
@@ -3823,11 +3855,21 @@ module Google
3823
3855
  # @return [String]
3824
3856
  attr_accessor :pricing_track
3825
3857
 
3858
+ # A set of findings that applies to assets destined for Sole-Tenant nodes.
3859
+ # Corresponds to the JSON property `soleTenantFinding`
3860
+ # @return [Google::Apis::MigrationcenterV1alpha1::ReportSummarySoleTenantFinding]
3861
+ attr_accessor :sole_tenant_finding
3862
+
3826
3863
  # Text describing the business priority specified for this Preference Set
3827
3864
  # Corresponds to the JSON property `topPriority`
3828
3865
  # @return [String]
3829
3866
  attr_accessor :top_priority
3830
3867
 
3868
+ # A set of findings that applies to assets destined for VMWare Engine.
3869
+ # Corresponds to the JSON property `vmwareEngineFinding`
3870
+ # @return [Google::Apis::MigrationcenterV1alpha1::ReportSummaryVmWareEngineFinding]
3871
+ attr_accessor :vmware_engine_finding
3872
+
3831
3873
  def initialize(**args)
3832
3874
  update!(**args)
3833
3875
  end
@@ -3846,7 +3888,9 @@ module Google
3846
3888
  @monthly_cost_total = args[:monthly_cost_total] if args.key?(:monthly_cost_total)
3847
3889
  @preferred_region = args[:preferred_region] if args.key?(:preferred_region)
3848
3890
  @pricing_track = args[:pricing_track] if args.key?(:pricing_track)
3891
+ @sole_tenant_finding = args[:sole_tenant_finding] if args.key?(:sole_tenant_finding)
3849
3892
  @top_priority = args[:top_priority] if args.key?(:top_priority)
3893
+ @vmware_engine_finding = args[:vmware_engine_finding] if args.key?(:vmware_engine_finding)
3850
3894
  end
3851
3895
  end
3852
3896
 
@@ -3970,6 +4014,68 @@ module Google
3970
4014
  end
3971
4015
  end
3972
4016
 
4017
+ # A set of findings that applies to assets destined for Sole-Tenant nodes.
4018
+ class ReportSummarySoleTenantFinding
4019
+ include Google::Apis::Core::Hashable
4020
+
4021
+ # Count of assets which are allocated
4022
+ # Corresponds to the JSON property `allocatedAssetCount`
4023
+ # @return [Fixnum]
4024
+ attr_accessor :allocated_asset_count
4025
+
4026
+ # Set of regions in which the assets are allocated
4027
+ # Corresponds to the JSON property `allocatedRegions`
4028
+ # @return [Array<String>]
4029
+ attr_accessor :allocated_regions
4030
+
4031
+ # Set of per-nodetype allocation records
4032
+ # Corresponds to the JSON property `nodeAllocations`
4033
+ # @return [Array<Google::Apis::MigrationcenterV1alpha1::ReportSummarySoleTenantNodeAllocation>]
4034
+ attr_accessor :node_allocations
4035
+
4036
+ def initialize(**args)
4037
+ update!(**args)
4038
+ end
4039
+
4040
+ # Update properties of this object
4041
+ def update!(**args)
4042
+ @allocated_asset_count = args[:allocated_asset_count] if args.key?(:allocated_asset_count)
4043
+ @allocated_regions = args[:allocated_regions] if args.key?(:allocated_regions)
4044
+ @node_allocations = args[:node_allocations] if args.key?(:node_allocations)
4045
+ end
4046
+ end
4047
+
4048
+ # Represents the assets allocated to a specific Sole-Tenant node type.
4049
+ class ReportSummarySoleTenantNodeAllocation
4050
+ include Google::Apis::Core::Hashable
4051
+
4052
+ # Count of assets allocated to these nodes
4053
+ # Corresponds to the JSON property `allocatedAssetCount`
4054
+ # @return [Fixnum]
4055
+ attr_accessor :allocated_asset_count
4056
+
4057
+ # A Sole Tenant node type.
4058
+ # Corresponds to the JSON property `node`
4059
+ # @return [Google::Apis::MigrationcenterV1alpha1::SoleTenantNodeType]
4060
+ attr_accessor :node
4061
+
4062
+ # Count of this node type to be provisioned
4063
+ # Corresponds to the JSON property `nodeCount`
4064
+ # @return [Fixnum]
4065
+ attr_accessor :node_count
4066
+
4067
+ def initialize(**args)
4068
+ update!(**args)
4069
+ end
4070
+
4071
+ # Update properties of this object
4072
+ def update!(**args)
4073
+ @allocated_asset_count = args[:allocated_asset_count] if args.key?(:allocated_asset_count)
4074
+ @node = args[:node] if args.key?(:node)
4075
+ @node_count = args[:node_count] if args.key?(:node_count)
4076
+ end
4077
+ end
4078
+
3973
4079
  # Utilization Chart is a specific type of visualization which displays a metric
3974
4080
  # classified into "Used" and "Free" buckets.
3975
4081
  class ReportSummaryUtilizationChartData
@@ -3996,6 +4102,89 @@ module Google
3996
4102
  end
3997
4103
  end
3998
4104
 
4105
+ # A set of findings that applies to assets destined for VMWare Engine.
4106
+ class ReportSummaryVmWareEngineFinding
4107
+ include Google::Apis::Core::Hashable
4108
+
4109
+ # Count of assets which are allocated
4110
+ # Corresponds to the JSON property `allocatedAssetCount`
4111
+ # @return [Fixnum]
4112
+ attr_accessor :allocated_asset_count
4113
+
4114
+ # Set of regions in which the assets were allocated
4115
+ # Corresponds to the JSON property `allocatedRegions`
4116
+ # @return [Array<String>]
4117
+ attr_accessor :allocated_regions
4118
+
4119
+ # Set of per-nodetype allocation records
4120
+ # Corresponds to the JSON property `nodeAllocations`
4121
+ # @return [Array<Google::Apis::MigrationcenterV1alpha1::ReportSummaryVmWareNodeAllocation>]
4122
+ attr_accessor :node_allocations
4123
+
4124
+ def initialize(**args)
4125
+ update!(**args)
4126
+ end
4127
+
4128
+ # Update properties of this object
4129
+ def update!(**args)
4130
+ @allocated_asset_count = args[:allocated_asset_count] if args.key?(:allocated_asset_count)
4131
+ @allocated_regions = args[:allocated_regions] if args.key?(:allocated_regions)
4132
+ @node_allocations = args[:node_allocations] if args.key?(:node_allocations)
4133
+ end
4134
+ end
4135
+
4136
+ # A VMWare Engine Node
4137
+ class ReportSummaryVmWareNode
4138
+ include Google::Apis::Core::Hashable
4139
+
4140
+ # Code to identify VMware Engine node series, e.g. "ve1-standard-72". Based on
4141
+ # the displayName of cloud.google.com/vmware-engine/docs/reference/rest/v1/
4142
+ # projects.locations.nodeTypes
4143
+ # Corresponds to the JSON property `code`
4144
+ # @return [String]
4145
+ attr_accessor :code
4146
+
4147
+ def initialize(**args)
4148
+ update!(**args)
4149
+ end
4150
+
4151
+ # Update properties of this object
4152
+ def update!(**args)
4153
+ @code = args[:code] if args.key?(:code)
4154
+ end
4155
+ end
4156
+
4157
+ # Represents assets allocated to a specific VMWare Node type.
4158
+ class ReportSummaryVmWareNodeAllocation
4159
+ include Google::Apis::Core::Hashable
4160
+
4161
+ # Count of assets allocated to these nodes
4162
+ # Corresponds to the JSON property `allocatedAssetCount`
4163
+ # @return [Fixnum]
4164
+ attr_accessor :allocated_asset_count
4165
+
4166
+ # Count of this node type to be provisioned
4167
+ # Corresponds to the JSON property `nodeCount`
4168
+ # @return [Fixnum]
4169
+ attr_accessor :node_count
4170
+
4171
+ # A VMWare Engine Node
4172
+ # Corresponds to the JSON property `vmwareNode`
4173
+ # @return [Google::Apis::MigrationcenterV1alpha1::ReportSummaryVmWareNode]
4174
+ attr_accessor :vmware_node
4175
+
4176
+ def initialize(**args)
4177
+ update!(**args)
4178
+ end
4179
+
4180
+ # Update properties of this object
4181
+ def update!(**args)
4182
+ @allocated_asset_count = args[:allocated_asset_count] if args.key?(:allocated_asset_count)
4183
+ @node_count = args[:node_count] if args.key?(:node_count)
4184
+ @vmware_node = args[:vmware_node] if args.key?(:vmware_node)
4185
+ end
4186
+ end
4187
+
3999
4188
  # A request to run an import job.
4000
4189
  class RunImportJobRequest
4001
4190
  include Google::Apis::Core::Hashable
@@ -4255,6 +4444,66 @@ module Google
4255
4444
  end
4256
4445
  end
4257
4446
 
4447
+ # Preferences concerning Sole Tenancy nodes and VMs.
4448
+ class SoleTenancyPreferences
4449
+ include Google::Apis::Core::Hashable
4450
+
4451
+ # Commitment plan to consider when calculating costs for virtual machine
4452
+ # insights and recommendations. If you are unsure which value to set, a 3 year
4453
+ # commitment plan is often a good value to start with.
4454
+ # Corresponds to the JSON property `commitmentPlan`
4455
+ # @return [String]
4456
+ attr_accessor :commitment_plan
4457
+
4458
+ # CPU overcommit ratio. Acceptable values are between 1.0 and 2.0 inclusive.
4459
+ # Corresponds to the JSON property `cpuOvercommitRatio`
4460
+ # @return [Float]
4461
+ attr_accessor :cpu_overcommit_ratio
4462
+
4463
+ # Sole Tenancy nodes maintenance policy.
4464
+ # Corresponds to the JSON property `hostMaintenancePolicy`
4465
+ # @return [String]
4466
+ attr_accessor :host_maintenance_policy
4467
+
4468
+ # A list of sole tenant node types. An empty list means that all possible node
4469
+ # types will be considered.
4470
+ # Corresponds to the JSON property `nodeTypes`
4471
+ # @return [Array<Google::Apis::MigrationcenterV1alpha1::SoleTenantNodeType>]
4472
+ attr_accessor :node_types
4473
+
4474
+ def initialize(**args)
4475
+ update!(**args)
4476
+ end
4477
+
4478
+ # Update properties of this object
4479
+ def update!(**args)
4480
+ @commitment_plan = args[:commitment_plan] if args.key?(:commitment_plan)
4481
+ @cpu_overcommit_ratio = args[:cpu_overcommit_ratio] if args.key?(:cpu_overcommit_ratio)
4482
+ @host_maintenance_policy = args[:host_maintenance_policy] if args.key?(:host_maintenance_policy)
4483
+ @node_types = args[:node_types] if args.key?(:node_types)
4484
+ end
4485
+ end
4486
+
4487
+ # A Sole Tenant node type.
4488
+ class SoleTenantNodeType
4489
+ include Google::Apis::Core::Hashable
4490
+
4491
+ # Name of the Sole Tenant node. Consult https://cloud.google.com/compute/docs/
4492
+ # nodes/sole-tenant-nodes
4493
+ # Corresponds to the JSON property `nodeName`
4494
+ # @return [String]
4495
+ attr_accessor :node_name
4496
+
4497
+ def initialize(**args)
4498
+ update!(**args)
4499
+ end
4500
+
4501
+ # Update properties of this object
4502
+ def update!(**args)
4503
+ @node_name = args[:node_name] if args.key?(:node_name)
4504
+ end
4505
+ end
4506
+
4258
4507
  # Source represents an object from which asset information is streamed to
4259
4508
  # Migration Center.
4260
4509
  class Source
@@ -4827,6 +5076,22 @@ module Google
4827
5076
  # @return [String]
4828
5077
  attr_accessor :sizing_optimization_strategy
4829
5078
 
5079
+ # Preferences concerning Sole Tenancy nodes and VMs.
5080
+ # Corresponds to the JSON property `soleTenancyPreferences`
5081
+ # @return [Google::Apis::MigrationcenterV1alpha1::SoleTenancyPreferences]
5082
+ attr_accessor :sole_tenancy_preferences
5083
+
5084
+ # Target product for assets using this preference set. Specify either target
5085
+ # product or business goal, but not both.
5086
+ # Corresponds to the JSON property `targetProduct`
5087
+ # @return [String]
5088
+ attr_accessor :target_product
5089
+
5090
+ # The user preferences relating to Google Cloud VMware Engine target platform.
5091
+ # Corresponds to the JSON property `vmwareEnginePreferences`
5092
+ # @return [Google::Apis::MigrationcenterV1alpha1::VmwareEnginePreferences]
5093
+ attr_accessor :vmware_engine_preferences
5094
+
4830
5095
  def initialize(**args)
4831
5096
  update!(**args)
4832
5097
  end
@@ -4837,6 +5102,9 @@ module Google
4837
5102
  @compute_engine_preferences = args[:compute_engine_preferences] if args.key?(:compute_engine_preferences)
4838
5103
  @region_preferences = args[:region_preferences] if args.key?(:region_preferences)
4839
5104
  @sizing_optimization_strategy = args[:sizing_optimization_strategy] if args.key?(:sizing_optimization_strategy)
5105
+ @sole_tenancy_preferences = args[:sole_tenancy_preferences] if args.key?(:sole_tenancy_preferences)
5106
+ @target_product = args[:target_product] if args.key?(:target_product)
5107
+ @vmware_engine_preferences = args[:vmware_engine_preferences] if args.key?(:vmware_engine_preferences)
4840
5108
  end
4841
5109
  end
4842
5110
 
@@ -4891,6 +5159,52 @@ module Google
4891
5159
  end
4892
5160
  end
4893
5161
 
5162
+ # The user preferences relating to Google Cloud VMware Engine target platform.
5163
+ class VmwareEnginePreferences
5164
+ include Google::Apis::Core::Hashable
5165
+
5166
+ # Commitment plan to consider when calculating costs for virtual machine
5167
+ # insights and recommendations. If you are unsure which value to set, a 3 year
5168
+ # commitment plan is often a good value to start with.
5169
+ # Corresponds to the JSON property `commitmentPlan`
5170
+ # @return [String]
5171
+ attr_accessor :commitment_plan
5172
+
5173
+ # CPU overcommit ratio. Acceptable values are between 1.0 and 8.0, with 0.1
5174
+ # increment.
5175
+ # Corresponds to the JSON property `cpuOvercommitRatio`
5176
+ # @return [Float]
5177
+ attr_accessor :cpu_overcommit_ratio
5178
+
5179
+ # Memory overcommit ratio. Acceptable values are 1.0, 1.25, 1.5, 1.75 and 2.0.
5180
+ # Corresponds to the JSON property `memoryOvercommitRatio`
5181
+ # @return [Float]
5182
+ attr_accessor :memory_overcommit_ratio
5183
+
5184
+ # The Deduplication and Compression ratio is based on the logical (Used Before)
5185
+ # space required to store data before applying deduplication and compression, in
5186
+ # relation to the physical (Used After) space required after applying
5187
+ # deduplication and compression. Specifically, the ratio is the Used Before
5188
+ # space divided by the Used After space. For example, if the Used Before space
5189
+ # is 3 GB, but the physical Used After space is 1 GB, the deduplication and
5190
+ # compression ratio is 3x. Acceptable values are between 1.0 and 4.0.
5191
+ # Corresponds to the JSON property `storageDeduplicationCompressionRatio`
5192
+ # @return [Float]
5193
+ attr_accessor :storage_deduplication_compression_ratio
5194
+
5195
+ def initialize(**args)
5196
+ update!(**args)
5197
+ end
5198
+
5199
+ # Update properties of this object
5200
+ def update!(**args)
5201
+ @commitment_plan = args[:commitment_plan] if args.key?(:commitment_plan)
5202
+ @cpu_overcommit_ratio = args[:cpu_overcommit_ratio] if args.key?(:cpu_overcommit_ratio)
5203
+ @memory_overcommit_ratio = args[:memory_overcommit_ratio] if args.key?(:memory_overcommit_ratio)
5204
+ @storage_deduplication_compression_ratio = args[:storage_deduplication_compression_ratio] if args.key?(:storage_deduplication_compression_ratio)
5205
+ end
5206
+ end
5207
+
4894
5208
  # VMware specific details.
4895
5209
  class VmwarePlatformDetails
4896
5210
  include Google::Apis::Core::Hashable
@@ -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.9.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 = "20230602"
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
 
@@ -742,12 +748,42 @@ module Google
742
748
  include Google::Apis::Core::JsonObjectSupport
743
749
  end
744
750
 
751
+ class ReportSummarySoleTenantFinding
752
+ class Representation < Google::Apis::Core::JsonRepresentation; end
753
+
754
+ include Google::Apis::Core::JsonObjectSupport
755
+ end
756
+
757
+ class ReportSummarySoleTenantNodeAllocation
758
+ class Representation < Google::Apis::Core::JsonRepresentation; end
759
+
760
+ include Google::Apis::Core::JsonObjectSupport
761
+ end
762
+
745
763
  class ReportSummaryUtilizationChartData
746
764
  class Representation < Google::Apis::Core::JsonRepresentation; end
747
765
 
748
766
  include Google::Apis::Core::JsonObjectSupport
749
767
  end
750
768
 
769
+ class ReportSummaryVmWareEngineFinding
770
+ class Representation < Google::Apis::Core::JsonRepresentation; end
771
+
772
+ include Google::Apis::Core::JsonObjectSupport
773
+ end
774
+
775
+ class ReportSummaryVmWareNode
776
+ class Representation < Google::Apis::Core::JsonRepresentation; end
777
+
778
+ include Google::Apis::Core::JsonObjectSupport
779
+ end
780
+
781
+ class ReportSummaryVmWareNodeAllocation
782
+ class Representation < Google::Apis::Core::JsonRepresentation; end
783
+
784
+ include Google::Apis::Core::JsonObjectSupport
785
+ end
786
+
751
787
  class RunImportJobRequest
752
788
  class Representation < Google::Apis::Core::JsonRepresentation; end
753
789
 
@@ -796,6 +832,18 @@ module Google
796
832
  include Google::Apis::Core::JsonObjectSupport
797
833
  end
798
834
 
835
+ class SoleTenancyPreferences
836
+ class Representation < Google::Apis::Core::JsonRepresentation; end
837
+
838
+ include Google::Apis::Core::JsonObjectSupport
839
+ end
840
+
841
+ class SoleTenantNodeType
842
+ class Representation < Google::Apis::Core::JsonRepresentation; end
843
+
844
+ include Google::Apis::Core::JsonObjectSupport
845
+ end
846
+
799
847
  class Source
800
848
  class Representation < Google::Apis::Core::JsonRepresentation; end
801
849
 
@@ -880,6 +928,12 @@ module Google
880
928
  include Google::Apis::Core::JsonObjectSupport
881
929
  end
882
930
 
931
+ class VmwareEnginePreferences
932
+ class Representation < Google::Apis::Core::JsonRepresentation; end
933
+
934
+ include Google::Apis::Core::JsonObjectSupport
935
+ end
936
+
883
937
  class VmwarePlatformDetails
884
938
  class Representation < Google::Apis::Core::JsonRepresentation; end
885
939
 
@@ -1138,6 +1192,16 @@ module Google
1138
1192
  property :memory_mb, as: 'memoryMb'
1139
1193
  property :physical_core_count, as: 'physicalCoreCount'
1140
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'
1141
1205
  end
1142
1206
  end
1143
1207
 
@@ -2063,7 +2127,11 @@ module Google
2063
2127
 
2064
2128
  property :preferred_region, as: 'preferredRegion'
2065
2129
  property :pricing_track, as: 'pricingTrack'
2130
+ property :sole_tenant_finding, as: 'soleTenantFinding', class: Google::Apis::MigrationcenterV1alpha1::ReportSummarySoleTenantFinding, decorator: Google::Apis::MigrationcenterV1alpha1::ReportSummarySoleTenantFinding::Representation
2131
+
2066
2132
  property :top_priority, as: 'topPriority'
2133
+ property :vmware_engine_finding, as: 'vmwareEngineFinding', class: Google::Apis::MigrationcenterV1alpha1::ReportSummaryVmWareEngineFinding, decorator: Google::Apis::MigrationcenterV1alpha1::ReportSummaryVmWareEngineFinding::Representation
2134
+
2067
2135
  end
2068
2136
  end
2069
2137
 
@@ -2104,6 +2172,26 @@ module Google
2104
2172
  end
2105
2173
  end
2106
2174
 
2175
+ class ReportSummarySoleTenantFinding
2176
+ # @private
2177
+ class Representation < Google::Apis::Core::JsonRepresentation
2178
+ property :allocated_asset_count, :numeric_string => true, as: 'allocatedAssetCount'
2179
+ collection :allocated_regions, as: 'allocatedRegions'
2180
+ collection :node_allocations, as: 'nodeAllocations', class: Google::Apis::MigrationcenterV1alpha1::ReportSummarySoleTenantNodeAllocation, decorator: Google::Apis::MigrationcenterV1alpha1::ReportSummarySoleTenantNodeAllocation::Representation
2181
+
2182
+ end
2183
+ end
2184
+
2185
+ class ReportSummarySoleTenantNodeAllocation
2186
+ # @private
2187
+ class Representation < Google::Apis::Core::JsonRepresentation
2188
+ property :allocated_asset_count, :numeric_string => true, as: 'allocatedAssetCount'
2189
+ property :node, as: 'node', class: Google::Apis::MigrationcenterV1alpha1::SoleTenantNodeType, decorator: Google::Apis::MigrationcenterV1alpha1::SoleTenantNodeType::Representation
2190
+
2191
+ property :node_count, :numeric_string => true, as: 'nodeCount'
2192
+ end
2193
+ end
2194
+
2107
2195
  class ReportSummaryUtilizationChartData
2108
2196
  # @private
2109
2197
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2112,6 +2200,33 @@ module Google
2112
2200
  end
2113
2201
  end
2114
2202
 
2203
+ class ReportSummaryVmWareEngineFinding
2204
+ # @private
2205
+ class Representation < Google::Apis::Core::JsonRepresentation
2206
+ property :allocated_asset_count, :numeric_string => true, as: 'allocatedAssetCount'
2207
+ collection :allocated_regions, as: 'allocatedRegions'
2208
+ collection :node_allocations, as: 'nodeAllocations', class: Google::Apis::MigrationcenterV1alpha1::ReportSummaryVmWareNodeAllocation, decorator: Google::Apis::MigrationcenterV1alpha1::ReportSummaryVmWareNodeAllocation::Representation
2209
+
2210
+ end
2211
+ end
2212
+
2213
+ class ReportSummaryVmWareNode
2214
+ # @private
2215
+ class Representation < Google::Apis::Core::JsonRepresentation
2216
+ property :code, as: 'code'
2217
+ end
2218
+ end
2219
+
2220
+ class ReportSummaryVmWareNodeAllocation
2221
+ # @private
2222
+ class Representation < Google::Apis::Core::JsonRepresentation
2223
+ property :allocated_asset_count, :numeric_string => true, as: 'allocatedAssetCount'
2224
+ property :node_count, :numeric_string => true, as: 'nodeCount'
2225
+ property :vmware_node, as: 'vmwareNode', class: Google::Apis::MigrationcenterV1alpha1::ReportSummaryVmWareNode, decorator: Google::Apis::MigrationcenterV1alpha1::ReportSummaryVmWareNode::Representation
2226
+
2227
+ end
2228
+ end
2229
+
2115
2230
  class RunImportJobRequest
2116
2231
  # @private
2117
2232
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2186,6 +2301,24 @@ module Google
2186
2301
  end
2187
2302
  end
2188
2303
 
2304
+ class SoleTenancyPreferences
2305
+ # @private
2306
+ class Representation < Google::Apis::Core::JsonRepresentation
2307
+ property :commitment_plan, as: 'commitmentPlan'
2308
+ property :cpu_overcommit_ratio, as: 'cpuOvercommitRatio'
2309
+ property :host_maintenance_policy, as: 'hostMaintenancePolicy'
2310
+ collection :node_types, as: 'nodeTypes', class: Google::Apis::MigrationcenterV1alpha1::SoleTenantNodeType, decorator: Google::Apis::MigrationcenterV1alpha1::SoleTenantNodeType::Representation
2311
+
2312
+ end
2313
+ end
2314
+
2315
+ class SoleTenantNodeType
2316
+ # @private
2317
+ class Representation < Google::Apis::Core::JsonRepresentation
2318
+ property :node_name, as: 'nodeName'
2319
+ end
2320
+ end
2321
+
2189
2322
  class Source
2190
2323
  # @private
2191
2324
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2332,6 +2465,11 @@ module Google
2332
2465
  property :region_preferences, as: 'regionPreferences', class: Google::Apis::MigrationcenterV1alpha1::RegionPreferences, decorator: Google::Apis::MigrationcenterV1alpha1::RegionPreferences::Representation
2333
2466
 
2334
2467
  property :sizing_optimization_strategy, as: 'sizingOptimizationStrategy'
2468
+ property :sole_tenancy_preferences, as: 'soleTenancyPreferences', class: Google::Apis::MigrationcenterV1alpha1::SoleTenancyPreferences, decorator: Google::Apis::MigrationcenterV1alpha1::SoleTenancyPreferences::Representation
2469
+
2470
+ property :target_product, as: 'targetProduct'
2471
+ property :vmware_engine_preferences, as: 'vmwareEnginePreferences', class: Google::Apis::MigrationcenterV1alpha1::VmwareEnginePreferences, decorator: Google::Apis::MigrationcenterV1alpha1::VmwareEnginePreferences::Representation
2472
+
2335
2473
  end
2336
2474
  end
2337
2475
 
@@ -2351,6 +2489,16 @@ module Google
2351
2489
  end
2352
2490
  end
2353
2491
 
2492
+ class VmwareEnginePreferences
2493
+ # @private
2494
+ class Representation < Google::Apis::Core::JsonRepresentation
2495
+ property :commitment_plan, as: 'commitmentPlan'
2496
+ property :cpu_overcommit_ratio, as: 'cpuOvercommitRatio'
2497
+ property :memory_overcommit_ratio, as: 'memoryOvercommitRatio'
2498
+ property :storage_deduplication_compression_ratio, as: 'storageDeduplicationCompressionRatio'
2499
+ end
2500
+ end
2501
+
2354
2502
  class VmwarePlatformDetails
2355
2503
  # @private
2356
2504
  class Representation < Google::Apis::Core::JsonRepresentation
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.9.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-11 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.9.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: []