google-apis-migrationcenter_v1alpha1 0.31.0 → 0.32.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: 2b8e9bc3de2c88b6800df8b9f6dd8c78763afa7bd38448010e57ba62beb230ac
4
- data.tar.gz: 9a574019137ea61f4286eee03292fdb9c6a1f5494e8a419ddf4f7a6bd38fc61c
3
+ metadata.gz: 83fab98df673a425a73b9595fdd1f158a2c3817394e246960ce4682b050ade4c
4
+ data.tar.gz: 1862a026f390e0cd85ae16c76e6f53de30fb3d7ef416e0431ec9ca5f6cc65e0b
5
5
  SHA512:
6
- metadata.gz: 37bb124202fc1a49fe48e97e3bc43e7dabc2ba57a198d6d46900a575d7dcedc9d438ac600159134bcc1bd2e29d08cf564eabec97ae3e8bd71eb23b9f47ac40a8
7
- data.tar.gz: 646d48d948d920c0639dacd33488fc83651cf0a593da1234b303a35cda388e83f87f8f1cebd5119fcf1029e9aad15628b48b4baa5a331858f3df876692731c84
6
+ metadata.gz: 4aacdba8a42f659202b2f4fa861accd3ce4f2ad21d19020af7734576d8dc563d2659d000b7bb3fcc6f6f6b4cc71ec6c902b90010018a202e6621ba5bfce197cd
7
+ data.tar.gz: 595c0608f4471b122df2a85bd8f97a0e37bc365b928759ee66f1a23e1721f79d19d0beae4c4deb9d0529f3229f407d8c4492645883fb6300bc064b081170d9d5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-migrationcenter_v1alpha1
2
2
 
3
+ ### v0.32.0 (2024-06-26)
4
+
5
+ * Regenerated from discovery document revision 20240620
6
+
3
7
  ### v0.31.0 (2024-06-16)
4
8
 
5
9
  * Regenerated from discovery document revision 20240606
@@ -1148,6 +1148,13 @@ module Google
1148
1148
  # @return [Fixnum]
1149
1149
  attr_accessor :memory_mb
1150
1150
 
1151
+ # Output only. Whether simultaneous multithreading is enabled (see https://cloud.
1152
+ # google.com/sql/docs/sqlserver/create-instance#smt-create-instance).
1153
+ # Corresponds to the JSON property `smtEnabled`
1154
+ # @return [Boolean]
1155
+ attr_accessor :smt_enabled
1156
+ alias_method :smt_enabled?, :smt_enabled
1157
+
1151
1158
  # Compute Engine storage option descriptor.
1152
1159
  # Corresponds to the JSON property `storage`
1153
1160
  # @return [Google::Apis::MigrationcenterV1alpha1::ComputeStorageDescriptor]
@@ -1175,6 +1182,7 @@ module Google
1175
1182
  @egress_gb_per_month = args[:egress_gb_per_month] if args.key?(:egress_gb_per_month)
1176
1183
  @logical_core_count = args[:logical_core_count] if args.key?(:logical_core_count)
1177
1184
  @memory_mb = args[:memory_mb] if args.key?(:memory_mb)
1185
+ @smt_enabled = args[:smt_enabled] if args.key?(:smt_enabled)
1178
1186
  @storage = args[:storage] if args.key?(:storage)
1179
1187
  @version = args[:version] if args.key?(:version)
1180
1188
  @zone_availability = args[:zone_availability] if args.key?(:zone_availability)
@@ -1204,10 +1212,9 @@ module Google
1204
1212
  class ComputeEnginePreferences
1205
1213
  include Google::Apis::Core::Hashable
1206
1214
 
1207
- # If os_pricing_preferences is specified, it overrides this field. License type
1208
- # to consider when calculating costs for virtual machine insights and
1209
- # recommendations. If unspecified, costs are calculated based on the default
1210
- # licensing plan.
1215
+ # License type to consider when calculating costs for operating systems. If
1216
+ # unspecified, costs are calculated based on the default licensing plan. If
1217
+ # os_pricing_preferences is specified, it overrides this field.
1211
1218
  # Corresponds to the JSON property `licenseType`
1212
1219
  # @return [String]
1213
1220
  attr_accessor :license_type
@@ -1219,6 +1226,11 @@ module Google
1219
1226
  # @return [Google::Apis::MigrationcenterV1alpha1::MachinePreferences]
1220
1227
  attr_accessor :machine_preferences
1221
1228
 
1229
+ # Optional. Preferences for multithreading support.
1230
+ # Corresponds to the JSON property `multithreading`
1231
+ # @return [String]
1232
+ attr_accessor :multithreading
1233
+
1222
1234
  # Pricing options for OS images.
1223
1235
  # Corresponds to the JSON property `osPricingPreferences`
1224
1236
  # @return [Google::Apis::MigrationcenterV1alpha1::OperatingSystemPricingPreferences]
@@ -1238,6 +1250,7 @@ module Google
1238
1250
  def update!(**args)
1239
1251
  @license_type = args[:license_type] if args.key?(:license_type)
1240
1252
  @machine_preferences = args[:machine_preferences] if args.key?(:machine_preferences)
1253
+ @multithreading = args[:multithreading] if args.key?(:multithreading)
1241
1254
  @os_pricing_preferences = args[:os_pricing_preferences] if args.key?(:os_pricing_preferences)
1242
1255
  @persistent_disk_type = args[:persistent_disk_type] if args.key?(:persistent_disk_type)
1243
1256
  end
@@ -1272,6 +1285,13 @@ module Google
1272
1285
  # @return [String]
1273
1286
  attr_accessor :series
1274
1287
 
1288
+ # Output only. Whether simultaneous multithreading is enabled (see https://cloud.
1289
+ # google.com/compute/docs/instances/set-threads-per-core).
1290
+ # Corresponds to the JSON property `smtEnabled`
1291
+ # @return [Boolean]
1292
+ attr_accessor :smt_enabled
1293
+ alias_method :smt_enabled?, :smt_enabled
1294
+
1275
1295
  # Output only. Compute Engine storage. Never empty.
1276
1296
  # Corresponds to the JSON property `storage`
1277
1297
  # @return [Array<Google::Apis::MigrationcenterV1alpha1::ComputeStorageDescriptor>]
@@ -1288,6 +1308,7 @@ module Google
1288
1308
  @memory_mb = args[:memory_mb] if args.key?(:memory_mb)
1289
1309
  @physical_core_count = args[:physical_core_count] if args.key?(:physical_core_count)
1290
1310
  @series = args[:series] if args.key?(:series)
1311
+ @smt_enabled = args[:smt_enabled] if args.key?(:smt_enabled)
1291
1312
  @storage = args[:storage] if args.key?(:storage)
1292
1313
  end
1293
1314
  end
@@ -7091,7 +7112,7 @@ module Google
7091
7112
  class VirtualMachineDetails
7092
7113
  include Google::Apis::Core::Hashable
7093
7114
 
7094
- # Number of CPU cores in the VirtualMachine. Must be non-negative.
7115
+ # Number of logical CPU cores in the VirtualMachine. Must be non-negative.
7095
7116
  # Corresponds to the JSON property `coreCount`
7096
7117
  # @return [Fixnum]
7097
7118
  attr_accessor :core_count
@@ -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.31.0"
19
+ GEM_VERSION = "0.32.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240606"
25
+ REVISION = "20240620"
26
26
  end
27
27
  end
28
28
  end
@@ -1662,6 +1662,7 @@ module Google
1662
1662
  property :egress_gb_per_month, :numeric_string => true, as: 'egressGbPerMonth'
1663
1663
  property :logical_core_count, as: 'logicalCoreCount'
1664
1664
  property :memory_mb, as: 'memoryMb'
1665
+ property :smt_enabled, as: 'smtEnabled'
1665
1666
  property :storage, as: 'storage', class: Google::Apis::MigrationcenterV1alpha1::ComputeStorageDescriptor, decorator: Google::Apis::MigrationcenterV1alpha1::ComputeStorageDescriptor::Representation
1666
1667
 
1667
1668
  property :version, as: 'version'
@@ -1683,6 +1684,7 @@ module Google
1683
1684
  property :license_type, as: 'licenseType'
1684
1685
  property :machine_preferences, as: 'machinePreferences', class: Google::Apis::MigrationcenterV1alpha1::MachinePreferences, decorator: Google::Apis::MigrationcenterV1alpha1::MachinePreferences::Representation
1685
1686
 
1687
+ property :multithreading, as: 'multithreading'
1686
1688
  property :os_pricing_preferences, as: 'osPricingPreferences', class: Google::Apis::MigrationcenterV1alpha1::OperatingSystemPricingPreferences, decorator: Google::Apis::MigrationcenterV1alpha1::OperatingSystemPricingPreferences::Representation
1687
1689
 
1688
1690
  property :persistent_disk_type, as: 'persistentDiskType'
@@ -1697,6 +1699,7 @@ module Google
1697
1699
  property :memory_mb, as: 'memoryMb'
1698
1700
  property :physical_core_count, as: 'physicalCoreCount'
1699
1701
  property :series, as: 'series'
1702
+ property :smt_enabled, as: 'smtEnabled'
1700
1703
  collection :storage, as: 'storage', class: Google::Apis::MigrationcenterV1alpha1::ComputeStorageDescriptor, decorator: Google::Apis::MigrationcenterV1alpha1::ComputeStorageDescriptor::Representation
1701
1704
 
1702
1705
  end
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.31.0
4
+ version: 0.32.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-06-16 00:00:00.000000000 Z
11
+ date: 2024-06-27 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.31.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1alpha1/v0.32.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: []