google-apis-migrationcenter_v1 0.16.0 → 0.18.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: 8f1bac3834793b9a572c73f55ace42d388299afb98fed74925e3efd16b1de4ea
4
- data.tar.gz: 6039f318109b1d0931170eaec0e9c0f51352b5a7be13738063aa094dc2976342
3
+ metadata.gz: a361164a792a897f74cc8f616ff91feb9b47c854457697c3435a80abd1d53945
4
+ data.tar.gz: e9a7f18d317756575040ebb3af76b1cb437197f93f16050c4dbb578d0699700a
5
5
  SHA512:
6
- metadata.gz: 783b51dbac215d349b89cddfc9dbb9397dd16ce711539719a267074f552d3d15acb33e56602df586f1fd5c17cdf5fb65fb36369e05a04e53f42f052d992fc98f
7
- data.tar.gz: e0e5f15c2b4db0325b3991c566898cad312a73823056310c6e797dc47825c89b08ca5d63996b06085efa25b0cb95f48ba9061f0ad0ccb0d13f5c127d4e2049ad
6
+ metadata.gz: c7536e8cc089aa9719ca2ae38a86dd2095a4c14854b7817be674603094014f0b47cad810d5b3c3899aad2d1e7115ba99bce8bf5abd350324c11a76d6b0d878a8
7
+ data.tar.gz: 1483815a98d2eef573412e18b921d325130fbd2d59e90a15bc8b62eb0cd8a3986423fbabf0992b54983a83bf732b1588206291288a5ee5e2be20486d866c7369
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-migrationcenter_v1
2
2
 
3
+ ### v0.18.0 (2024-10-13)
4
+
5
+ * Regenerated from discovery document revision 20241001
6
+
7
+ ### v0.17.0 (2024-10-06)
8
+
9
+ * Regenerated from discovery document revision 20240926
10
+
3
11
  ### v0.16.0 (2024-09-15)
4
12
 
5
13
  * Regenerated from discovery document revision 20240906
@@ -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
@@ -2728,7 +2746,8 @@ module Google
2728
2746
  # @return [Fixnum]
2729
2747
  attr_accessor :cpu_socket_count
2730
2748
 
2731
- # Number of CPU threads allocated to the machine.
2749
+ # Deprecated: use MachineDetails.core_count instead. Number of CPU threads
2750
+ # allocated to the machine.
2732
2751
  # Corresponds to the JSON property `cpuThreadCount`
2733
2752
  # @return [Fixnum]
2734
2753
  attr_accessor :cpu_thread_count
@@ -3526,6 +3545,11 @@ module Google
3526
3545
  class PhysicalPlatformDetails
3527
3546
  include Google::Apis::Core::Hashable
3528
3547
 
3548
+ # Whether the machine is hyperthreaded.
3549
+ # Corresponds to the JSON property `hyperthreading`
3550
+ # @return [String]
3551
+ attr_accessor :hyperthreading
3552
+
3529
3553
  # Free text representation of the machine location. The format of this field
3530
3554
  # should not be relied on. Different machines in the same location may have
3531
3555
  # different string values for this field.
@@ -3539,6 +3563,7 @@ module Google
3539
3563
 
3540
3564
  # Update properties of this object
3541
3565
  def update!(**args)
3566
+ @hyperthreading = args[:hyperthreading] if args.key?(:hyperthreading)
3542
3567
  @location = args[:location] if args.key?(:location)
3543
3568
  end
3544
3569
  end
@@ -5128,6 +5153,11 @@ module Google
5128
5153
  class VmwarePlatformDetails
5129
5154
  include Google::Apis::Core::Hashable
5130
5155
 
5156
+ # Whether the ESX is hyperthreaded.
5157
+ # Corresponds to the JSON property `esxHyperthreading`
5158
+ # @return [String]
5159
+ attr_accessor :esx_hyperthreading
5160
+
5131
5161
  # ESX version.
5132
5162
  # Corresponds to the JSON property `esxVersion`
5133
5163
  # @return [String]
@@ -5166,6 +5196,7 @@ module Google
5166
5196
 
5167
5197
  # Update properties of this object
5168
5198
  def update!(**args)
5199
+ @esx_hyperthreading = args[:esx_hyperthreading] if args.key?(:esx_hyperthreading)
5169
5200
  @esx_version = args[:esx_version] if args.key?(:esx_version)
5170
5201
  @osid = args[:osid] if args.key?(:osid)
5171
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.16.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 = "20240906"
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.16.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-09-15 00:00:00.000000000 Z
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.16.0
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.6
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