google-apis-migrationcenter_v1 0.17.0 → 0.18.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a361164a792a897f74cc8f616ff91feb9b47c854457697c3435a80abd1d53945
|
4
|
+
data.tar.gz: e9a7f18d317756575040ebb3af76b1cb437197f93f16050c4dbb578d0699700a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c7536e8cc089aa9719ca2ae38a86dd2095a4c14854b7817be674603094014f0b47cad810d5b3c3899aad2d1e7115ba99bce8bf5abd350324c11a76d6b0d878a8
|
7
|
+
data.tar.gz: 1483815a98d2eef573412e18b921d325130fbd2d59e90a15bc8b62eb0cd8a3986423fbabf0992b54983a83bf732b1588206291288a5ee5e2be20486d866c7369
|
data/CHANGELOG.md
CHANGED
@@ -550,6 +550,11 @@ module Google
|
|
550
550
|
class AwsEc2PlatformDetails
|
551
551
|
include Google::Apis::Core::Hashable
|
552
552
|
|
553
|
+
# Optional. Whether the machine is hyperthreaded.
|
554
|
+
# Corresponds to the JSON property `hyperthreading`
|
555
|
+
# @return [String]
|
556
|
+
attr_accessor :hyperthreading
|
557
|
+
|
553
558
|
# The location of the machine in the AWS format.
|
554
559
|
# Corresponds to the JSON property `location`
|
555
560
|
# @return [String]
|
@@ -566,6 +571,7 @@ module Google
|
|
566
571
|
|
567
572
|
# Update properties of this object
|
568
573
|
def update!(**args)
|
574
|
+
@hyperthreading = args[:hyperthreading] if args.key?(:hyperthreading)
|
569
575
|
@location = args[:location] if args.key?(:location)
|
570
576
|
@machine_type_label = args[:machine_type_label] if args.key?(:machine_type_label)
|
571
577
|
end
|
@@ -575,6 +581,11 @@ module Google
|
|
575
581
|
class AzureVmPlatformDetails
|
576
582
|
include Google::Apis::Core::Hashable
|
577
583
|
|
584
|
+
# Whether the machine is hyperthreaded.
|
585
|
+
# Corresponds to the JSON property `hyperthreading`
|
586
|
+
# @return [String]
|
587
|
+
attr_accessor :hyperthreading
|
588
|
+
|
578
589
|
# The location of the machine in the Azure format.
|
579
590
|
# Corresponds to the JSON property `location`
|
580
591
|
# @return [String]
|
@@ -596,6 +607,7 @@ module Google
|
|
596
607
|
|
597
608
|
# Update properties of this object
|
598
609
|
def update!(**args)
|
610
|
+
@hyperthreading = args[:hyperthreading] if args.key?(:hyperthreading)
|
599
611
|
@location = args[:location] if args.key?(:location)
|
600
612
|
@machine_type_label = args[:machine_type_label] if args.key?(:machine_type_label)
|
601
613
|
@provisioning_state = args[:provisioning_state] if args.key?(:provisioning_state)
|
@@ -1678,6 +1690,11 @@ module Google
|
|
1678
1690
|
class GenericPlatformDetails
|
1679
1691
|
include Google::Apis::Core::Hashable
|
1680
1692
|
|
1693
|
+
# Whether the machine is hyperthreaded.
|
1694
|
+
# Corresponds to the JSON property `hyperthreading`
|
1695
|
+
# @return [String]
|
1696
|
+
attr_accessor :hyperthreading
|
1697
|
+
|
1681
1698
|
# Free text representation of the machine location. The format of this field
|
1682
1699
|
# should not be relied on. Different VMs in the same location may have different
|
1683
1700
|
# string values for this field.
|
@@ -1691,6 +1708,7 @@ module Google
|
|
1691
1708
|
|
1692
1709
|
# Update properties of this object
|
1693
1710
|
def update!(**args)
|
1711
|
+
@hyperthreading = args[:hyperthreading] if args.key?(:hyperthreading)
|
1694
1712
|
@location = args[:location] if args.key?(:location)
|
1695
1713
|
end
|
1696
1714
|
end
|
@@ -3527,6 +3545,11 @@ module Google
|
|
3527
3545
|
class PhysicalPlatformDetails
|
3528
3546
|
include Google::Apis::Core::Hashable
|
3529
3547
|
|
3548
|
+
# Whether the machine is hyperthreaded.
|
3549
|
+
# Corresponds to the JSON property `hyperthreading`
|
3550
|
+
# @return [String]
|
3551
|
+
attr_accessor :hyperthreading
|
3552
|
+
|
3530
3553
|
# Free text representation of the machine location. The format of this field
|
3531
3554
|
# should not be relied on. Different machines in the same location may have
|
3532
3555
|
# different string values for this field.
|
@@ -3540,6 +3563,7 @@ module Google
|
|
3540
3563
|
|
3541
3564
|
# Update properties of this object
|
3542
3565
|
def update!(**args)
|
3566
|
+
@hyperthreading = args[:hyperthreading] if args.key?(:hyperthreading)
|
3543
3567
|
@location = args[:location] if args.key?(:location)
|
3544
3568
|
end
|
3545
3569
|
end
|
@@ -5129,6 +5153,11 @@ module Google
|
|
5129
5153
|
class VmwarePlatformDetails
|
5130
5154
|
include Google::Apis::Core::Hashable
|
5131
5155
|
|
5156
|
+
# Whether the ESX is hyperthreaded.
|
5157
|
+
# Corresponds to the JSON property `esxHyperthreading`
|
5158
|
+
# @return [String]
|
5159
|
+
attr_accessor :esx_hyperthreading
|
5160
|
+
|
5132
5161
|
# ESX version.
|
5133
5162
|
# Corresponds to the JSON property `esxVersion`
|
5134
5163
|
# @return [String]
|
@@ -5167,6 +5196,7 @@ module Google
|
|
5167
5196
|
|
5168
5197
|
# Update properties of this object
|
5169
5198
|
def update!(**args)
|
5199
|
+
@esx_hyperthreading = args[:esx_hyperthreading] if args.key?(:esx_hyperthreading)
|
5170
5200
|
@esx_version = args[:esx_version] if args.key?(:esx_version)
|
5171
5201
|
@osid = args[:osid] if args.key?(:osid)
|
5172
5202
|
@vcenter_folder = args[:vcenter_folder] if args.key?(:vcenter_folder)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module MigrationcenterV1
|
18
18
|
# Version of the google-apis-migrationcenter_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.18.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241001"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1100,6 +1100,7 @@ module Google
|
|
1100
1100
|
class AwsEc2PlatformDetails
|
1101
1101
|
# @private
|
1102
1102
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1103
|
+
property :hyperthreading, as: 'hyperthreading'
|
1103
1104
|
property :location, as: 'location'
|
1104
1105
|
property :machine_type_label, as: 'machineTypeLabel'
|
1105
1106
|
end
|
@@ -1108,6 +1109,7 @@ module Google
|
|
1108
1109
|
class AzureVmPlatformDetails
|
1109
1110
|
# @private
|
1110
1111
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1112
|
+
property :hyperthreading, as: 'hyperthreading'
|
1111
1113
|
property :location, as: 'location'
|
1112
1114
|
property :machine_type_label, as: 'machineTypeLabel'
|
1113
1115
|
property :provisioning_state, as: 'provisioningState'
|
@@ -1442,6 +1444,7 @@ module Google
|
|
1442
1444
|
class GenericPlatformDetails
|
1443
1445
|
# @private
|
1444
1446
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1447
|
+
property :hyperthreading, as: 'hyperthreading'
|
1445
1448
|
property :location, as: 'location'
|
1446
1449
|
end
|
1447
1450
|
end
|
@@ -2000,6 +2003,7 @@ module Google
|
|
2000
2003
|
class PhysicalPlatformDetails
|
2001
2004
|
# @private
|
2002
2005
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2006
|
+
property :hyperthreading, as: 'hyperthreading'
|
2003
2007
|
property :location, as: 'location'
|
2004
2008
|
end
|
2005
2009
|
end
|
@@ -2466,6 +2470,7 @@ module Google
|
|
2466
2470
|
class VmwarePlatformDetails
|
2467
2471
|
# @private
|
2468
2472
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2473
|
+
property :esx_hyperthreading, as: 'esxHyperthreading'
|
2469
2474
|
property :esx_version, as: 'esxVersion'
|
2470
2475
|
property :osid, as: 'osid'
|
2471
2476
|
property :vcenter_folder, as: 'vcenterFolder'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-migrationcenter_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.18.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: 2024-10-
|
11
|
+
date: 2024-10-13 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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1/v0.18.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-migrationcenter_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.21
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Migration Center API V1
|