google-apis-migrationcenter_v1alpha1 0.22.0 → 0.24.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: 841fd68f83b5e032e109d050d9f184ccf135bcc88c3889fe30fc6cc0b1bed0ee
4
- data.tar.gz: 302980790205b97ec40218b0962cdf711cb1bb8e34a8f48f88382a8092dea80f
3
+ metadata.gz: 5e048aa6536942519359a99ab1a54ade7cfc4fbf0af4e1f922cd2e9bdf708d30
4
+ data.tar.gz: 76f6faefc464cbec6e7e2fff37b86dc5672bfa9f82c5f177d56281156ecebf7a
5
5
  SHA512:
6
- metadata.gz: b20e8e6d5aeaf046a396bdc9b51a2cdb32040c944dea1bf783987abed5860555e7e5bbcd2fe986c452876bcf7597b683b5ce6872f1da24541d678ed67a363adb
7
- data.tar.gz: 6e11c871a6d7450d6f693878ecb2f382f58d31b5869ecfe3f199f5dc3fe85c930f1ca4da9fba60b785e99120cbc01069b406bc46d49adcec6b01fcbd1e9c78a6
6
+ metadata.gz: 3d8f7076fd59b643f37a2e108612a2599973c30f7470bbb7104ca4a3684c6faad574061c3105970713f7deae28c1113c9a37eaa41675b5a887365fd8435c4e62
7
+ data.tar.gz: ceb3ead0f16a72dec4f831ece37b3387419bb2d9ba49d4f5fcbc902ef3dce0fbfc673eecfd0a1d083f621f4945a3ea8cce321a9f2a25ad08c7f432270df63e71
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-migrationcenter_v1alpha1
2
2
 
3
+ ### v0.24.0 (2024-02-24)
4
+
5
+ * Regenerated using generator version 0.14.0
6
+
7
+ ### v0.23.0 (2024-01-28)
8
+
9
+ * Regenerated from discovery document revision 20240122
10
+ * Regenerated using generator version 0.13.1
11
+
3
12
  ### v0.22.0 (2024-01-23)
4
13
 
5
14
  * Regenerated from discovery document revision 20240104
data/OVERVIEW.md CHANGED
@@ -83,9 +83,9 @@ The [product documentation](https://cloud.google.com/migration-center) may provi
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.5+.
86
+ This library is supported on Ruby 2.7+.
87
87
 
88
- Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Currently, this means Ruby 2.5 and later. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
88
+ Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
90
90
  ## License
91
91
 
@@ -851,6 +851,19 @@ module Google
851
851
  end
852
852
  end
853
853
 
854
+ # Compute engine sole tenant migration target.
855
+ class ComputeEngineSoleTenantMigrationTarget
856
+ include Google::Apis::Core::Hashable
857
+
858
+ def initialize(**args)
859
+ update!(**args)
860
+ end
861
+
862
+ # Update properties of this object
863
+ def update!(**args)
864
+ end
865
+ end
866
+
854
867
  # Compute Engine storage option descriptor.
855
868
  class ComputeStorageDescriptor
856
869
  include Google::Apis::Core::Hashable
@@ -2779,6 +2792,11 @@ module Google
2779
2792
  class MigrationInsight
2780
2793
  include Google::Apis::Core::Hashable
2781
2794
 
2795
+ # Compute engine sole tenant migration target.
2796
+ # Corresponds to the JSON property `computeEngineSoleTenantTarget`
2797
+ # @return [Google::Apis::MigrationcenterV1alpha1::ComputeEngineSoleTenantMigrationTarget]
2798
+ attr_accessor :compute_engine_sole_tenant_target
2799
+
2782
2800
  # Compute engine migration target.
2783
2801
  # Corresponds to the JSON property `computeEngineTarget`
2784
2802
  # @return [Google::Apis::MigrationcenterV1alpha1::ComputeEngineMigrationTarget]
@@ -2805,6 +2823,7 @@ module Google
2805
2823
 
2806
2824
  # Update properties of this object
2807
2825
  def update!(**args)
2826
+ @compute_engine_sole_tenant_target = args[:compute_engine_sole_tenant_target] if args.key?(:compute_engine_sole_tenant_target)
2808
2827
  @compute_engine_target = args[:compute_engine_target] if args.key?(:compute_engine_target)
2809
2828
  @fit = args[:fit] if args.key?(:fit)
2810
2829
  @gke_target = args[:gke_target] if args.key?(:gke_target)
@@ -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.22.0"
19
+ GEM_VERSION = "0.24.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.13.0"
22
+ GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240104"
25
+ REVISION = "20240122"
26
26
  end
27
27
  end
28
28
  end
@@ -190,6 +190,12 @@ module Google
190
190
  include Google::Apis::Core::JsonObjectSupport
191
191
  end
192
192
 
193
+ class ComputeEngineSoleTenantMigrationTarget
194
+ class Representation < Google::Apis::Core::JsonRepresentation; end
195
+
196
+ include Google::Apis::Core::JsonObjectSupport
197
+ end
198
+
193
199
  class ComputeStorageDescriptor
194
200
  class Representation < Google::Apis::Core::JsonRepresentation; end
195
201
 
@@ -1231,6 +1237,12 @@ module Google
1231
1237
  end
1232
1238
  end
1233
1239
 
1240
+ class ComputeEngineSoleTenantMigrationTarget
1241
+ # @private
1242
+ class Representation < Google::Apis::Core::JsonRepresentation
1243
+ end
1244
+ end
1245
+
1234
1246
  class ComputeStorageDescriptor
1235
1247
  # @private
1236
1248
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1829,6 +1841,8 @@ module Google
1829
1841
  class MigrationInsight
1830
1842
  # @private
1831
1843
  class Representation < Google::Apis::Core::JsonRepresentation
1844
+ property :compute_engine_sole_tenant_target, as: 'computeEngineSoleTenantTarget', class: Google::Apis::MigrationcenterV1alpha1::ComputeEngineSoleTenantMigrationTarget, decorator: Google::Apis::MigrationcenterV1alpha1::ComputeEngineSoleTenantMigrationTarget::Representation
1845
+
1832
1846
  property :compute_engine_target, as: 'computeEngineTarget', class: Google::Apis::MigrationcenterV1alpha1::ComputeEngineMigrationTarget, decorator: Google::Apis::MigrationcenterV1alpha1::ComputeEngineMigrationTarget::Representation
1833
1847
 
1834
1848
  property :fit, as: 'fit', class: Google::Apis::MigrationcenterV1alpha1::FitDescriptor, decorator: Google::Apis::MigrationcenterV1alpha1::FitDescriptor::Representation
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.22.0
4
+ version: 0.24.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-01-23 00:00:00.000000000 Z
11
+ date: 2024-02-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.12.0
19
+ version: 0.14.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.12.0
29
+ version: 0.14.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.22.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1alpha1/v0.24.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: []
@@ -68,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
68
68
  requirements:
69
69
  - - ">="
70
70
  - !ruby/object:Gem::Version
71
- version: '2.5'
71
+ version: '2.7'
72
72
  required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  requirements:
74
74
  - - ">="
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.3
78
+ rubygems_version: 3.5.6
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Migration Center API V1alpha1