google-apis-migrationcenter_v1alpha1 0.41.0 → 0.42.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: ba203d2f20e12b4de5e54300d600c6a4a681064df5b34dbaa586fefb5ba16b20
4
- data.tar.gz: 5f40d40a705183925a04cc02a50eaf620a887c8b1d0a47c2f766943af9c10a07
3
+ metadata.gz: c09be7b2072338d6096e4c4c4be8c3f76f7e0ce82d0fc4b80be9331064b60adb
4
+ data.tar.gz: 90e57907d96416f94ab6aad10f246780d60d1de0f071a8a50b1ee2de7e4e5b69
5
5
  SHA512:
6
- metadata.gz: 6d38aadf1a5a1a3666a260ac28aad8043392d98a689dedd3089e94d676a84891f13d8dc16cc5a9f5586725cee560bd3eb4510517b131f1caf55e6e9f10f40aac
7
- data.tar.gz: ec38786346e1a33ef1c581b769e760bba5dde8e0173d31a1287e557988c246868f7dae5aa22e840272751e13452d38a8bf0567fcb73397e9983be76f3a76f67c
6
+ metadata.gz: 04b7bd86ea82d1406d7a9af34c0d40e88eb6641e4c5760503f797b42186c1407a94171a53ab212ea78a43b8b4bdf42546933cf24fec77a64396e22078c1d6130
7
+ data.tar.gz: f2c9c6fa4592a713a5bdd214c22799997620087fbd53be635fa7baa8903f7a26c8499465e7997a9b3d09f3fca6289cb37c513a45435af11ff45bb636e63f2b8f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-migrationcenter_v1alpha1
2
2
 
3
+ ### v0.42.0 (2025-06-01)
4
+
5
+ * Regenerated from discovery document revision 20250522
6
+ * Regenerated using generator version 0.18.0
7
+
3
8
  ### v0.41.0 (2025-05-04)
4
9
 
5
10
  * Regenerated from discovery document revision 20250422
@@ -2602,11 +2602,6 @@ module Google
2602
2602
  # @return [Fixnum]
2603
2603
  attr_accessor :total_free_bytes
2604
2604
 
2605
- # VMware disk config details.
2606
- # Corresponds to the JSON property `vmwareConfig`
2607
- # @return [Google::Apis::MigrationcenterV1alpha1::VmwareDiskConfig]
2608
- attr_accessor :vmware_config
2609
-
2610
2605
  def initialize(**args)
2611
2606
  update!(**args)
2612
2607
  end
@@ -2621,7 +2616,6 @@ module Google
2621
2616
  @status = args[:status] if args.key?(:status)
2622
2617
  @total_capacity_bytes = args[:total_capacity_bytes] if args.key?(:total_capacity_bytes)
2623
2618
  @total_free_bytes = args[:total_free_bytes] if args.key?(:total_free_bytes)
2624
- @vmware_config = args[:vmware_config] if args.key?(:vmware_config)
2625
2619
  end
2626
2620
  end
2627
2621
 
@@ -8144,44 +8138,6 @@ module Google
8144
8138
  end
8145
8139
  end
8146
8140
 
8147
- # VMware disk config details.
8148
- class VmwareDiskConfig
8149
- include Google::Apis::Core::Hashable
8150
-
8151
- # VMDK backing type.
8152
- # Corresponds to the JSON property `backingType`
8153
- # @return [String]
8154
- attr_accessor :backing_type
8155
-
8156
- # RDM compatibility mode.
8157
- # Corresponds to the JSON property `rdmCompatibilityMode`
8158
- # @return [String]
8159
- attr_accessor :rdm_compatibility_mode
8160
-
8161
- # Is VMDK shared with other VMs.
8162
- # Corresponds to the JSON property `shared`
8163
- # @return [Boolean]
8164
- attr_accessor :shared
8165
- alias_method :shared?, :shared
8166
-
8167
- # VMDK disk mode.
8168
- # Corresponds to the JSON property `vmdkDiskMode`
8169
- # @return [String]
8170
- attr_accessor :vmdk_disk_mode
8171
-
8172
- def initialize(**args)
8173
- update!(**args)
8174
- end
8175
-
8176
- # Update properties of this object
8177
- def update!(**args)
8178
- @backing_type = args[:backing_type] if args.key?(:backing_type)
8179
- @rdm_compatibility_mode = args[:rdm_compatibility_mode] if args.key?(:rdm_compatibility_mode)
8180
- @shared = args[:shared] if args.key?(:shared)
8181
- @vmdk_disk_mode = args[:vmdk_disk_mode] if args.key?(:vmdk_disk_mode)
8182
- end
8183
- end
8184
-
8185
8141
  # VMWare engine migration target.
8186
8142
  class VmwareEngineMigrationTarget
8187
8143
  include Google::Apis::Core::Hashable
@@ -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.41.0"
19
+ GEM_VERSION = "0.42.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250422"
25
+ REVISION = "20250522"
26
26
  end
27
27
  end
28
28
  end
@@ -1396,12 +1396,6 @@ module Google
1396
1396
  include Google::Apis::Core::JsonObjectSupport
1397
1397
  end
1398
1398
 
1399
- class VmwareDiskConfig
1400
- class Representation < Google::Apis::Core::JsonRepresentation; end
1401
-
1402
- include Google::Apis::Core::JsonObjectSupport
1403
- end
1404
-
1405
1399
  class VmwareEngineMigrationTarget
1406
1400
  class Representation < Google::Apis::Core::JsonRepresentation; end
1407
1401
 
@@ -2200,8 +2194,6 @@ module Google
2200
2194
  property :status, as: 'status'
2201
2195
  property :total_capacity_bytes, :numeric_string => true, as: 'totalCapacityBytes'
2202
2196
  property :total_free_bytes, :numeric_string => true, as: 'totalFreeBytes'
2203
- property :vmware_config, as: 'vmwareConfig', class: Google::Apis::MigrationcenterV1alpha1::VmwareDiskConfig, decorator: Google::Apis::MigrationcenterV1alpha1::VmwareDiskConfig::Representation
2204
-
2205
2197
  end
2206
2198
  end
2207
2199
 
@@ -3865,16 +3857,6 @@ module Google
3865
3857
  end
3866
3858
  end
3867
3859
 
3868
- class VmwareDiskConfig
3869
- # @private
3870
- class Representation < Google::Apis::Core::JsonRepresentation
3871
- property :backing_type, as: 'backingType'
3872
- property :rdm_compatibility_mode, as: 'rdmCompatibilityMode'
3873
- property :shared, as: 'shared'
3874
- property :vmdk_disk_mode, as: 'vmdkDiskMode'
3875
- end
3876
- end
3877
-
3878
3860
  class VmwareEngineMigrationTarget
3879
3861
  # @private
3880
3862
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-migrationcenter_v1alpha1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.41.0
4
+ version: 0.42.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-migrationcenter_v1alpha1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1alpha1/v0.41.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1alpha1/v0.42.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-migrationcenter_v1alpha1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.8
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Migration Center API V1alpha1
79
79
  test_files: []