google-apis-migrationcenter_v1alpha1 0.31.0 → 0.33.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: 5f9475d5cea2c764514207c7f440005654bd411e12dbdff65c5cf40a2fa752e4
|
4
|
+
data.tar.gz: 71d12289f003998942a676fa828482ac456de84d91049eb4aa9f8b6b69cf0ea4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f7262b4225f0575a839ad8f36ea286b1b695647eab46b177ba66480bc09fa52e3892a6b24d03a3b5ec54042012daf9f3055e3b320c95b78861e1dde5270f83cb
|
7
|
+
data.tar.gz: 1fbb7a4ad790363b6c9b0c86b6714300c3bba426f175776bb275d4d77e6c96cfeaf3cbd31207d8ff0fed49155323aa9d996d2b0d125c3dba4171303148c1a319
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-migrationcenter_v1alpha1
|
2
2
|
|
3
|
+
### v0.33.0 (2024-07-25)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240711
|
6
|
+
|
7
|
+
### v0.32.0 (2024-06-26)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240620
|
10
|
+
|
3
11
|
### v0.31.0 (2024-06-16)
|
4
12
|
|
5
13
|
* 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
|
-
#
|
1208
|
-
#
|
1209
|
-
#
|
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 on Windows Server.
|
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
|
@@ -4724,7 +4745,8 @@ module Google
|
|
4724
4745
|
# @return [String]
|
4725
4746
|
attr_accessor :commitment_plan
|
4726
4747
|
|
4727
|
-
# Optional. License type
|
4748
|
+
# Optional. License type for premium images (RHEL, RHEL for SAP, SLES, SLES for
|
4749
|
+
# SAP, Windows Server).
|
4728
4750
|
# Corresponds to the JSON property `licenseType`
|
4729
4751
|
# @return [String]
|
4730
4752
|
attr_accessor :license_type
|
@@ -7091,7 +7113,7 @@ module Google
|
|
7091
7113
|
class VirtualMachineDetails
|
7092
7114
|
include Google::Apis::Core::Hashable
|
7093
7115
|
|
7094
|
-
# Number of CPU cores in the VirtualMachine. Must be non-negative.
|
7116
|
+
# Number of logical CPU cores in the VirtualMachine. Must be non-negative.
|
7095
7117
|
# Corresponds to the JSON property `coreCount`
|
7096
7118
|
# @return [Fixnum]
|
7097
7119
|
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.
|
19
|
+
GEM_VERSION = "0.33.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 = "
|
25
|
+
REVISION = "20240711"
|
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.
|
4
|
+
version: 0.33.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-
|
11
|
+
date: 2024-07-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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1alpha1/v0.33.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: []
|