google-apis-migrationcenter_v1alpha1 0.9.0 → 0.10.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c18c542b68a807a397afac551706468b15f019689a473c1dc72cceedbf4f9f47
|
4
|
+
data.tar.gz: b561839b9a1f2d0abc37c00367798d737ae199c1e75ec39ca93ea7ee6a1fedb4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 10aea84f6c502bff9fc6690c5a015bfd5401eba0cbb30a9068c0517a79497b60eaf503eaf9b04b2bd7b70344b9e05ec859d05801d1729528d2db6e3e015ac42a
|
7
|
+
data.tar.gz: 78dfb9b2c7773fc59c615f872f59a01e4d30e2446c012c751f324ec14de41f9b8d68d0df465e7379b9ad71e4417af3b1c90f4bdd93b53839873c58bcbb3b5882
|
data/CHANGELOG.md
CHANGED
@@ -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
|
@@ -3196,7 +3197,7 @@ module Google
|
|
3196
3197
|
# @return [Google::Apis::MigrationcenterV1alpha1::NetworkUsageSample]
|
3197
3198
|
attr_accessor :network
|
3198
3199
|
|
3199
|
-
# Time the sample was collected.
|
3200
|
+
# Required. Time the sample was collected.
|
3200
3201
|
# Corresponds to the JSON property `sampleTime`
|
3201
3202
|
# @return [String]
|
3202
3203
|
attr_accessor :sample_time
|
@@ -3823,11 +3824,21 @@ module Google
|
|
3823
3824
|
# @return [String]
|
3824
3825
|
attr_accessor :pricing_track
|
3825
3826
|
|
3827
|
+
# A set of findings that applies to assets destined for Sole-Tenant nodes.
|
3828
|
+
# Corresponds to the JSON property `soleTenantFinding`
|
3829
|
+
# @return [Google::Apis::MigrationcenterV1alpha1::ReportSummarySoleTenantFinding]
|
3830
|
+
attr_accessor :sole_tenant_finding
|
3831
|
+
|
3826
3832
|
# Text describing the business priority specified for this Preference Set
|
3827
3833
|
# Corresponds to the JSON property `topPriority`
|
3828
3834
|
# @return [String]
|
3829
3835
|
attr_accessor :top_priority
|
3830
3836
|
|
3837
|
+
# A set of findings that applies to assets destined for VMWare Engine.
|
3838
|
+
# Corresponds to the JSON property `vmwareEngineFinding`
|
3839
|
+
# @return [Google::Apis::MigrationcenterV1alpha1::ReportSummaryVmWareEngineFinding]
|
3840
|
+
attr_accessor :vmware_engine_finding
|
3841
|
+
|
3831
3842
|
def initialize(**args)
|
3832
3843
|
update!(**args)
|
3833
3844
|
end
|
@@ -3846,7 +3857,9 @@ module Google
|
|
3846
3857
|
@monthly_cost_total = args[:monthly_cost_total] if args.key?(:monthly_cost_total)
|
3847
3858
|
@preferred_region = args[:preferred_region] if args.key?(:preferred_region)
|
3848
3859
|
@pricing_track = args[:pricing_track] if args.key?(:pricing_track)
|
3860
|
+
@sole_tenant_finding = args[:sole_tenant_finding] if args.key?(:sole_tenant_finding)
|
3849
3861
|
@top_priority = args[:top_priority] if args.key?(:top_priority)
|
3862
|
+
@vmware_engine_finding = args[:vmware_engine_finding] if args.key?(:vmware_engine_finding)
|
3850
3863
|
end
|
3851
3864
|
end
|
3852
3865
|
|
@@ -3970,6 +3983,68 @@ module Google
|
|
3970
3983
|
end
|
3971
3984
|
end
|
3972
3985
|
|
3986
|
+
# A set of findings that applies to assets destined for Sole-Tenant nodes.
|
3987
|
+
class ReportSummarySoleTenantFinding
|
3988
|
+
include Google::Apis::Core::Hashable
|
3989
|
+
|
3990
|
+
# Count of assets which are allocated
|
3991
|
+
# Corresponds to the JSON property `allocatedAssetCount`
|
3992
|
+
# @return [Fixnum]
|
3993
|
+
attr_accessor :allocated_asset_count
|
3994
|
+
|
3995
|
+
# Set of regions in which the assets are allocated
|
3996
|
+
# Corresponds to the JSON property `allocatedRegions`
|
3997
|
+
# @return [Array<String>]
|
3998
|
+
attr_accessor :allocated_regions
|
3999
|
+
|
4000
|
+
# Set of per-nodetype allocation records
|
4001
|
+
# Corresponds to the JSON property `nodeAllocations`
|
4002
|
+
# @return [Array<Google::Apis::MigrationcenterV1alpha1::ReportSummarySoleTenantNodeAllocation>]
|
4003
|
+
attr_accessor :node_allocations
|
4004
|
+
|
4005
|
+
def initialize(**args)
|
4006
|
+
update!(**args)
|
4007
|
+
end
|
4008
|
+
|
4009
|
+
# Update properties of this object
|
4010
|
+
def update!(**args)
|
4011
|
+
@allocated_asset_count = args[:allocated_asset_count] if args.key?(:allocated_asset_count)
|
4012
|
+
@allocated_regions = args[:allocated_regions] if args.key?(:allocated_regions)
|
4013
|
+
@node_allocations = args[:node_allocations] if args.key?(:node_allocations)
|
4014
|
+
end
|
4015
|
+
end
|
4016
|
+
|
4017
|
+
# Represents the assets allocated to a specific Sole-Tenant node type.
|
4018
|
+
class ReportSummarySoleTenantNodeAllocation
|
4019
|
+
include Google::Apis::Core::Hashable
|
4020
|
+
|
4021
|
+
# Count of assets allocated to these nodes
|
4022
|
+
# Corresponds to the JSON property `allocatedAssetCount`
|
4023
|
+
# @return [Fixnum]
|
4024
|
+
attr_accessor :allocated_asset_count
|
4025
|
+
|
4026
|
+
# A Sole Tenant node type.
|
4027
|
+
# Corresponds to the JSON property `node`
|
4028
|
+
# @return [Google::Apis::MigrationcenterV1alpha1::SoleTenantNodeType]
|
4029
|
+
attr_accessor :node
|
4030
|
+
|
4031
|
+
# Count of this node type to be provisioned
|
4032
|
+
# Corresponds to the JSON property `nodeCount`
|
4033
|
+
# @return [Fixnum]
|
4034
|
+
attr_accessor :node_count
|
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
|
+
@node = args[:node] if args.key?(:node)
|
4044
|
+
@node_count = args[:node_count] if args.key?(:node_count)
|
4045
|
+
end
|
4046
|
+
end
|
4047
|
+
|
3973
4048
|
# Utilization Chart is a specific type of visualization which displays a metric
|
3974
4049
|
# classified into "Used" and "Free" buckets.
|
3975
4050
|
class ReportSummaryUtilizationChartData
|
@@ -3996,6 +4071,89 @@ module Google
|
|
3996
4071
|
end
|
3997
4072
|
end
|
3998
4073
|
|
4074
|
+
# A set of findings that applies to assets destined for VMWare Engine.
|
4075
|
+
class ReportSummaryVmWareEngineFinding
|
4076
|
+
include Google::Apis::Core::Hashable
|
4077
|
+
|
4078
|
+
# Count of assets which are allocated
|
4079
|
+
# Corresponds to the JSON property `allocatedAssetCount`
|
4080
|
+
# @return [Fixnum]
|
4081
|
+
attr_accessor :allocated_asset_count
|
4082
|
+
|
4083
|
+
# Set of regions in which the assets were allocated
|
4084
|
+
# Corresponds to the JSON property `allocatedRegions`
|
4085
|
+
# @return [Array<String>]
|
4086
|
+
attr_accessor :allocated_regions
|
4087
|
+
|
4088
|
+
# Set of per-nodetype allocation records
|
4089
|
+
# Corresponds to the JSON property `nodeAllocations`
|
4090
|
+
# @return [Array<Google::Apis::MigrationcenterV1alpha1::ReportSummaryVmWareNodeAllocation>]
|
4091
|
+
attr_accessor :node_allocations
|
4092
|
+
|
4093
|
+
def initialize(**args)
|
4094
|
+
update!(**args)
|
4095
|
+
end
|
4096
|
+
|
4097
|
+
# Update properties of this object
|
4098
|
+
def update!(**args)
|
4099
|
+
@allocated_asset_count = args[:allocated_asset_count] if args.key?(:allocated_asset_count)
|
4100
|
+
@allocated_regions = args[:allocated_regions] if args.key?(:allocated_regions)
|
4101
|
+
@node_allocations = args[:node_allocations] if args.key?(:node_allocations)
|
4102
|
+
end
|
4103
|
+
end
|
4104
|
+
|
4105
|
+
# A VMWare Engine Node
|
4106
|
+
class ReportSummaryVmWareNode
|
4107
|
+
include Google::Apis::Core::Hashable
|
4108
|
+
|
4109
|
+
# Code to identify VMware Engine node series, e.g. "ve1-standard-72". Based on
|
4110
|
+
# the displayName of cloud.google.com/vmware-engine/docs/reference/rest/v1/
|
4111
|
+
# projects.locations.nodeTypes
|
4112
|
+
# Corresponds to the JSON property `code`
|
4113
|
+
# @return [String]
|
4114
|
+
attr_accessor :code
|
4115
|
+
|
4116
|
+
def initialize(**args)
|
4117
|
+
update!(**args)
|
4118
|
+
end
|
4119
|
+
|
4120
|
+
# Update properties of this object
|
4121
|
+
def update!(**args)
|
4122
|
+
@code = args[:code] if args.key?(:code)
|
4123
|
+
end
|
4124
|
+
end
|
4125
|
+
|
4126
|
+
# Represents assets allocated to a specific VMWare Node type.
|
4127
|
+
class ReportSummaryVmWareNodeAllocation
|
4128
|
+
include Google::Apis::Core::Hashable
|
4129
|
+
|
4130
|
+
# Count of assets allocated to these nodes
|
4131
|
+
# Corresponds to the JSON property `allocatedAssetCount`
|
4132
|
+
# @return [Fixnum]
|
4133
|
+
attr_accessor :allocated_asset_count
|
4134
|
+
|
4135
|
+
# Count of this node type to be provisioned
|
4136
|
+
# Corresponds to the JSON property `nodeCount`
|
4137
|
+
# @return [Fixnum]
|
4138
|
+
attr_accessor :node_count
|
4139
|
+
|
4140
|
+
# A VMWare Engine Node
|
4141
|
+
# Corresponds to the JSON property `vmwareNode`
|
4142
|
+
# @return [Google::Apis::MigrationcenterV1alpha1::ReportSummaryVmWareNode]
|
4143
|
+
attr_accessor :vmware_node
|
4144
|
+
|
4145
|
+
def initialize(**args)
|
4146
|
+
update!(**args)
|
4147
|
+
end
|
4148
|
+
|
4149
|
+
# Update properties of this object
|
4150
|
+
def update!(**args)
|
4151
|
+
@allocated_asset_count = args[:allocated_asset_count] if args.key?(:allocated_asset_count)
|
4152
|
+
@node_count = args[:node_count] if args.key?(:node_count)
|
4153
|
+
@vmware_node = args[:vmware_node] if args.key?(:vmware_node)
|
4154
|
+
end
|
4155
|
+
end
|
4156
|
+
|
3999
4157
|
# A request to run an import job.
|
4000
4158
|
class RunImportJobRequest
|
4001
4159
|
include Google::Apis::Core::Hashable
|
@@ -4255,6 +4413,66 @@ module Google
|
|
4255
4413
|
end
|
4256
4414
|
end
|
4257
4415
|
|
4416
|
+
# Preferences concerning Sole Tenancy nodes and VMs.
|
4417
|
+
class SoleTenancyPreferences
|
4418
|
+
include Google::Apis::Core::Hashable
|
4419
|
+
|
4420
|
+
# Commitment plan to consider when calculating costs for virtual machine
|
4421
|
+
# insights and recommendations. If you are unsure which value to set, a 3 year
|
4422
|
+
# commitment plan is often a good value to start with.
|
4423
|
+
# Corresponds to the JSON property `commitmentPlan`
|
4424
|
+
# @return [String]
|
4425
|
+
attr_accessor :commitment_plan
|
4426
|
+
|
4427
|
+
# CPU overcommit ratio. Acceptable values are between 1.0 and 2.0 inclusive.
|
4428
|
+
# Corresponds to the JSON property `cpuOvercommitRatio`
|
4429
|
+
# @return [Float]
|
4430
|
+
attr_accessor :cpu_overcommit_ratio
|
4431
|
+
|
4432
|
+
# Sole Tenancy nodes maintenance policy.
|
4433
|
+
# Corresponds to the JSON property `hostMaintenancePolicy`
|
4434
|
+
# @return [String]
|
4435
|
+
attr_accessor :host_maintenance_policy
|
4436
|
+
|
4437
|
+
# A list of sole tenant node types. An empty list means that all possible node
|
4438
|
+
# types will be considered.
|
4439
|
+
# Corresponds to the JSON property `nodeTypes`
|
4440
|
+
# @return [Array<Google::Apis::MigrationcenterV1alpha1::SoleTenantNodeType>]
|
4441
|
+
attr_accessor :node_types
|
4442
|
+
|
4443
|
+
def initialize(**args)
|
4444
|
+
update!(**args)
|
4445
|
+
end
|
4446
|
+
|
4447
|
+
# Update properties of this object
|
4448
|
+
def update!(**args)
|
4449
|
+
@commitment_plan = args[:commitment_plan] if args.key?(:commitment_plan)
|
4450
|
+
@cpu_overcommit_ratio = args[:cpu_overcommit_ratio] if args.key?(:cpu_overcommit_ratio)
|
4451
|
+
@host_maintenance_policy = args[:host_maintenance_policy] if args.key?(:host_maintenance_policy)
|
4452
|
+
@node_types = args[:node_types] if args.key?(:node_types)
|
4453
|
+
end
|
4454
|
+
end
|
4455
|
+
|
4456
|
+
# A Sole Tenant node type.
|
4457
|
+
class SoleTenantNodeType
|
4458
|
+
include Google::Apis::Core::Hashable
|
4459
|
+
|
4460
|
+
# Name of the Sole Tenant node. Consult https://cloud.google.com/compute/docs/
|
4461
|
+
# nodes/sole-tenant-nodes
|
4462
|
+
# Corresponds to the JSON property `nodeName`
|
4463
|
+
# @return [String]
|
4464
|
+
attr_accessor :node_name
|
4465
|
+
|
4466
|
+
def initialize(**args)
|
4467
|
+
update!(**args)
|
4468
|
+
end
|
4469
|
+
|
4470
|
+
# Update properties of this object
|
4471
|
+
def update!(**args)
|
4472
|
+
@node_name = args[:node_name] if args.key?(:node_name)
|
4473
|
+
end
|
4474
|
+
end
|
4475
|
+
|
4258
4476
|
# Source represents an object from which asset information is streamed to
|
4259
4477
|
# Migration Center.
|
4260
4478
|
class Source
|
@@ -4827,6 +5045,22 @@ module Google
|
|
4827
5045
|
# @return [String]
|
4828
5046
|
attr_accessor :sizing_optimization_strategy
|
4829
5047
|
|
5048
|
+
# Preferences concerning Sole Tenancy nodes and VMs.
|
5049
|
+
# Corresponds to the JSON property `soleTenancyPreferences`
|
5050
|
+
# @return [Google::Apis::MigrationcenterV1alpha1::SoleTenancyPreferences]
|
5051
|
+
attr_accessor :sole_tenancy_preferences
|
5052
|
+
|
5053
|
+
# Target product for assets using this preference set. Specify either target
|
5054
|
+
# product or business goal, but not both.
|
5055
|
+
# Corresponds to the JSON property `targetProduct`
|
5056
|
+
# @return [String]
|
5057
|
+
attr_accessor :target_product
|
5058
|
+
|
5059
|
+
# The user preferences relating to Google Cloud VMware Engine target platform.
|
5060
|
+
# Corresponds to the JSON property `vmwareEnginePreferences`
|
5061
|
+
# @return [Google::Apis::MigrationcenterV1alpha1::VmwareEnginePreferences]
|
5062
|
+
attr_accessor :vmware_engine_preferences
|
5063
|
+
|
4830
5064
|
def initialize(**args)
|
4831
5065
|
update!(**args)
|
4832
5066
|
end
|
@@ -4837,6 +5071,9 @@ module Google
|
|
4837
5071
|
@compute_engine_preferences = args[:compute_engine_preferences] if args.key?(:compute_engine_preferences)
|
4838
5072
|
@region_preferences = args[:region_preferences] if args.key?(:region_preferences)
|
4839
5073
|
@sizing_optimization_strategy = args[:sizing_optimization_strategy] if args.key?(:sizing_optimization_strategy)
|
5074
|
+
@sole_tenancy_preferences = args[:sole_tenancy_preferences] if args.key?(:sole_tenancy_preferences)
|
5075
|
+
@target_product = args[:target_product] if args.key?(:target_product)
|
5076
|
+
@vmware_engine_preferences = args[:vmware_engine_preferences] if args.key?(:vmware_engine_preferences)
|
4840
5077
|
end
|
4841
5078
|
end
|
4842
5079
|
|
@@ -4891,6 +5128,52 @@ module Google
|
|
4891
5128
|
end
|
4892
5129
|
end
|
4893
5130
|
|
5131
|
+
# The user preferences relating to Google Cloud VMware Engine target platform.
|
5132
|
+
class VmwareEnginePreferences
|
5133
|
+
include Google::Apis::Core::Hashable
|
5134
|
+
|
5135
|
+
# Commitment plan to consider when calculating costs for virtual machine
|
5136
|
+
# insights and recommendations. If you are unsure which value to set, a 3 year
|
5137
|
+
# commitment plan is often a good value to start with.
|
5138
|
+
# Corresponds to the JSON property `commitmentPlan`
|
5139
|
+
# @return [String]
|
5140
|
+
attr_accessor :commitment_plan
|
5141
|
+
|
5142
|
+
# CPU overcommit ratio. Acceptable values are between 1.0 and 8.0, with 0.1
|
5143
|
+
# increment.
|
5144
|
+
# Corresponds to the JSON property `cpuOvercommitRatio`
|
5145
|
+
# @return [Float]
|
5146
|
+
attr_accessor :cpu_overcommit_ratio
|
5147
|
+
|
5148
|
+
# Memory overcommit ratio. Acceptable values are 1.0, 1.25, 1.5, 1.75 and 2.0.
|
5149
|
+
# Corresponds to the JSON property `memoryOvercommitRatio`
|
5150
|
+
# @return [Float]
|
5151
|
+
attr_accessor :memory_overcommit_ratio
|
5152
|
+
|
5153
|
+
# The Deduplication and Compression ratio is based on the logical (Used Before)
|
5154
|
+
# space required to store data before applying deduplication and compression, in
|
5155
|
+
# relation to the physical (Used After) space required after applying
|
5156
|
+
# deduplication and compression. Specifically, the ratio is the Used Before
|
5157
|
+
# space divided by the Used After space. For example, if the Used Before space
|
5158
|
+
# is 3 GB, but the physical Used After space is 1 GB, the deduplication and
|
5159
|
+
# compression ratio is 3x. Acceptable values are between 1.0 and 4.0.
|
5160
|
+
# Corresponds to the JSON property `storageDeduplicationCompressionRatio`
|
5161
|
+
# @return [Float]
|
5162
|
+
attr_accessor :storage_deduplication_compression_ratio
|
5163
|
+
|
5164
|
+
def initialize(**args)
|
5165
|
+
update!(**args)
|
5166
|
+
end
|
5167
|
+
|
5168
|
+
# Update properties of this object
|
5169
|
+
def update!(**args)
|
5170
|
+
@commitment_plan = args[:commitment_plan] if args.key?(:commitment_plan)
|
5171
|
+
@cpu_overcommit_ratio = args[:cpu_overcommit_ratio] if args.key?(:cpu_overcommit_ratio)
|
5172
|
+
@memory_overcommit_ratio = args[:memory_overcommit_ratio] if args.key?(:memory_overcommit_ratio)
|
5173
|
+
@storage_deduplication_compression_ratio = args[:storage_deduplication_compression_ratio] if args.key?(:storage_deduplication_compression_ratio)
|
5174
|
+
end
|
5175
|
+
end
|
5176
|
+
|
4894
5177
|
# VMware specific details.
|
4895
5178
|
class VmwarePlatformDetails
|
4896
5179
|
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.
|
19
|
+
GEM_VERSION = "0.10.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 = "
|
25
|
+
REVISION = "20230613"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -742,12 +742,42 @@ module Google
|
|
742
742
|
include Google::Apis::Core::JsonObjectSupport
|
743
743
|
end
|
744
744
|
|
745
|
+
class ReportSummarySoleTenantFinding
|
746
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
747
|
+
|
748
|
+
include Google::Apis::Core::JsonObjectSupport
|
749
|
+
end
|
750
|
+
|
751
|
+
class ReportSummarySoleTenantNodeAllocation
|
752
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
753
|
+
|
754
|
+
include Google::Apis::Core::JsonObjectSupport
|
755
|
+
end
|
756
|
+
|
745
757
|
class ReportSummaryUtilizationChartData
|
746
758
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
747
759
|
|
748
760
|
include Google::Apis::Core::JsonObjectSupport
|
749
761
|
end
|
750
762
|
|
763
|
+
class ReportSummaryVmWareEngineFinding
|
764
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
765
|
+
|
766
|
+
include Google::Apis::Core::JsonObjectSupport
|
767
|
+
end
|
768
|
+
|
769
|
+
class ReportSummaryVmWareNode
|
770
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
771
|
+
|
772
|
+
include Google::Apis::Core::JsonObjectSupport
|
773
|
+
end
|
774
|
+
|
775
|
+
class ReportSummaryVmWareNodeAllocation
|
776
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
777
|
+
|
778
|
+
include Google::Apis::Core::JsonObjectSupport
|
779
|
+
end
|
780
|
+
|
751
781
|
class RunImportJobRequest
|
752
782
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
753
783
|
|
@@ -796,6 +826,18 @@ module Google
|
|
796
826
|
include Google::Apis::Core::JsonObjectSupport
|
797
827
|
end
|
798
828
|
|
829
|
+
class SoleTenancyPreferences
|
830
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
831
|
+
|
832
|
+
include Google::Apis::Core::JsonObjectSupport
|
833
|
+
end
|
834
|
+
|
835
|
+
class SoleTenantNodeType
|
836
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
837
|
+
|
838
|
+
include Google::Apis::Core::JsonObjectSupport
|
839
|
+
end
|
840
|
+
|
799
841
|
class Source
|
800
842
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
801
843
|
|
@@ -880,6 +922,12 @@ module Google
|
|
880
922
|
include Google::Apis::Core::JsonObjectSupport
|
881
923
|
end
|
882
924
|
|
925
|
+
class VmwareEnginePreferences
|
926
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
927
|
+
|
928
|
+
include Google::Apis::Core::JsonObjectSupport
|
929
|
+
end
|
930
|
+
|
883
931
|
class VmwarePlatformDetails
|
884
932
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
885
933
|
|
@@ -2063,7 +2111,11 @@ module Google
|
|
2063
2111
|
|
2064
2112
|
property :preferred_region, as: 'preferredRegion'
|
2065
2113
|
property :pricing_track, as: 'pricingTrack'
|
2114
|
+
property :sole_tenant_finding, as: 'soleTenantFinding', class: Google::Apis::MigrationcenterV1alpha1::ReportSummarySoleTenantFinding, decorator: Google::Apis::MigrationcenterV1alpha1::ReportSummarySoleTenantFinding::Representation
|
2115
|
+
|
2066
2116
|
property :top_priority, as: 'topPriority'
|
2117
|
+
property :vmware_engine_finding, as: 'vmwareEngineFinding', class: Google::Apis::MigrationcenterV1alpha1::ReportSummaryVmWareEngineFinding, decorator: Google::Apis::MigrationcenterV1alpha1::ReportSummaryVmWareEngineFinding::Representation
|
2118
|
+
|
2067
2119
|
end
|
2068
2120
|
end
|
2069
2121
|
|
@@ -2104,6 +2156,26 @@ module Google
|
|
2104
2156
|
end
|
2105
2157
|
end
|
2106
2158
|
|
2159
|
+
class ReportSummarySoleTenantFinding
|
2160
|
+
# @private
|
2161
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2162
|
+
property :allocated_asset_count, :numeric_string => true, as: 'allocatedAssetCount'
|
2163
|
+
collection :allocated_regions, as: 'allocatedRegions'
|
2164
|
+
collection :node_allocations, as: 'nodeAllocations', class: Google::Apis::MigrationcenterV1alpha1::ReportSummarySoleTenantNodeAllocation, decorator: Google::Apis::MigrationcenterV1alpha1::ReportSummarySoleTenantNodeAllocation::Representation
|
2165
|
+
|
2166
|
+
end
|
2167
|
+
end
|
2168
|
+
|
2169
|
+
class ReportSummarySoleTenantNodeAllocation
|
2170
|
+
# @private
|
2171
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2172
|
+
property :allocated_asset_count, :numeric_string => true, as: 'allocatedAssetCount'
|
2173
|
+
property :node, as: 'node', class: Google::Apis::MigrationcenterV1alpha1::SoleTenantNodeType, decorator: Google::Apis::MigrationcenterV1alpha1::SoleTenantNodeType::Representation
|
2174
|
+
|
2175
|
+
property :node_count, :numeric_string => true, as: 'nodeCount'
|
2176
|
+
end
|
2177
|
+
end
|
2178
|
+
|
2107
2179
|
class ReportSummaryUtilizationChartData
|
2108
2180
|
# @private
|
2109
2181
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2112,6 +2184,33 @@ module Google
|
|
2112
2184
|
end
|
2113
2185
|
end
|
2114
2186
|
|
2187
|
+
class ReportSummaryVmWareEngineFinding
|
2188
|
+
# @private
|
2189
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2190
|
+
property :allocated_asset_count, :numeric_string => true, as: 'allocatedAssetCount'
|
2191
|
+
collection :allocated_regions, as: 'allocatedRegions'
|
2192
|
+
collection :node_allocations, as: 'nodeAllocations', class: Google::Apis::MigrationcenterV1alpha1::ReportSummaryVmWareNodeAllocation, decorator: Google::Apis::MigrationcenterV1alpha1::ReportSummaryVmWareNodeAllocation::Representation
|
2193
|
+
|
2194
|
+
end
|
2195
|
+
end
|
2196
|
+
|
2197
|
+
class ReportSummaryVmWareNode
|
2198
|
+
# @private
|
2199
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2200
|
+
property :code, as: 'code'
|
2201
|
+
end
|
2202
|
+
end
|
2203
|
+
|
2204
|
+
class ReportSummaryVmWareNodeAllocation
|
2205
|
+
# @private
|
2206
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2207
|
+
property :allocated_asset_count, :numeric_string => true, as: 'allocatedAssetCount'
|
2208
|
+
property :node_count, :numeric_string => true, as: 'nodeCount'
|
2209
|
+
property :vmware_node, as: 'vmwareNode', class: Google::Apis::MigrationcenterV1alpha1::ReportSummaryVmWareNode, decorator: Google::Apis::MigrationcenterV1alpha1::ReportSummaryVmWareNode::Representation
|
2210
|
+
|
2211
|
+
end
|
2212
|
+
end
|
2213
|
+
|
2115
2214
|
class RunImportJobRequest
|
2116
2215
|
# @private
|
2117
2216
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2186,6 +2285,24 @@ module Google
|
|
2186
2285
|
end
|
2187
2286
|
end
|
2188
2287
|
|
2288
|
+
class SoleTenancyPreferences
|
2289
|
+
# @private
|
2290
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2291
|
+
property :commitment_plan, as: 'commitmentPlan'
|
2292
|
+
property :cpu_overcommit_ratio, as: 'cpuOvercommitRatio'
|
2293
|
+
property :host_maintenance_policy, as: 'hostMaintenancePolicy'
|
2294
|
+
collection :node_types, as: 'nodeTypes', class: Google::Apis::MigrationcenterV1alpha1::SoleTenantNodeType, decorator: Google::Apis::MigrationcenterV1alpha1::SoleTenantNodeType::Representation
|
2295
|
+
|
2296
|
+
end
|
2297
|
+
end
|
2298
|
+
|
2299
|
+
class SoleTenantNodeType
|
2300
|
+
# @private
|
2301
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2302
|
+
property :node_name, as: 'nodeName'
|
2303
|
+
end
|
2304
|
+
end
|
2305
|
+
|
2189
2306
|
class Source
|
2190
2307
|
# @private
|
2191
2308
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2332,6 +2449,11 @@ module Google
|
|
2332
2449
|
property :region_preferences, as: 'regionPreferences', class: Google::Apis::MigrationcenterV1alpha1::RegionPreferences, decorator: Google::Apis::MigrationcenterV1alpha1::RegionPreferences::Representation
|
2333
2450
|
|
2334
2451
|
property :sizing_optimization_strategy, as: 'sizingOptimizationStrategy'
|
2452
|
+
property :sole_tenancy_preferences, as: 'soleTenancyPreferences', class: Google::Apis::MigrationcenterV1alpha1::SoleTenancyPreferences, decorator: Google::Apis::MigrationcenterV1alpha1::SoleTenancyPreferences::Representation
|
2453
|
+
|
2454
|
+
property :target_product, as: 'targetProduct'
|
2455
|
+
property :vmware_engine_preferences, as: 'vmwareEnginePreferences', class: Google::Apis::MigrationcenterV1alpha1::VmwareEnginePreferences, decorator: Google::Apis::MigrationcenterV1alpha1::VmwareEnginePreferences::Representation
|
2456
|
+
|
2335
2457
|
end
|
2336
2458
|
end
|
2337
2459
|
|
@@ -2351,6 +2473,16 @@ module Google
|
|
2351
2473
|
end
|
2352
2474
|
end
|
2353
2475
|
|
2476
|
+
class VmwareEnginePreferences
|
2477
|
+
# @private
|
2478
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2479
|
+
property :commitment_plan, as: 'commitmentPlan'
|
2480
|
+
property :cpu_overcommit_ratio, as: 'cpuOvercommitRatio'
|
2481
|
+
property :memory_overcommit_ratio, as: 'memoryOvercommitRatio'
|
2482
|
+
property :storage_deduplication_compression_ratio, as: 'storageDeduplicationCompressionRatio'
|
2483
|
+
end
|
2484
|
+
end
|
2485
|
+
|
2354
2486
|
class VmwarePlatformDetails
|
2355
2487
|
# @private
|
2356
2488
|
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.
|
4
|
+
version: 0.10.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
|
+
date: 2023-06-18 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1alpha1/v0.10.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: []
|