google-apis-vmmigration_v1 0.34.0 → 0.36.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: ad126cf60441bd1b6b9a4979d92b4fca11b99cb9f39379a088101cc576335b0c
4
- data.tar.gz: fc9c8f8bc34ba42adcbb06f03f51aef4d3b9b335c0f12bf539b91443aeab2cdc
3
+ metadata.gz: 6547a2245a987832d13dda08680ba5460f127f59dd04723e34bfe5ffac54e8b2
4
+ data.tar.gz: f9e34feb8ca6744dab3c27dec9b73e6f06bcda3043a680fd2824766027738171
5
5
  SHA512:
6
- metadata.gz: 2592f2bdbec5044abb0f62ba71538ca115084bbea723b987b483d3b59fefc62459810e271fad367c1996b19b5371b964e292d6ddb51dfae9182c368b3fc5e631
7
- data.tar.gz: 4ce63d0c696cf9ebc242559267762674f05c8d103f2f7e014aa05e8b87068b607d878a41dd75c74be7ce3c3639ab11e3fd055db9c57e55ed4fd3109585984321
6
+ metadata.gz: ac7aeb2c7efc3875717bcd46e650267ad05aa45becc3647f420896eb69af44653bb1213194a4b03f8959fe0d658d62375ba0ab25032c632ed87a7575319418ab
7
+ data.tar.gz: f7c5f1f16bf0a5638914d65ee36270c2092453d098dfaf61dcbe0c0975ed5ed7ba9aa1a50ab8652e6a3f1d43bd4f00befc69b372418f87cb14bd5cc5a3c56018
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-vmmigration_v1
2
2
 
3
+ ### v0.36.0 (2023-08-27)
4
+
5
+ * Regenerated from discovery document revision 20230817
6
+
7
+ ### v0.35.0 (2023-08-13)
8
+
9
+ * Regenerated from discovery document revision 20230803
10
+
3
11
  ### v0.34.0 (2023-08-06)
4
12
 
5
13
  * Regenerated from discovery document revision 20230727
@@ -2017,6 +2017,11 @@ module Google
2017
2017
  # @return [String]
2018
2018
  attr_accessor :update_time
2019
2019
 
2020
+ # Represent the source Vmware VM details.
2021
+ # Corresponds to the JSON property `vmwareSourceVmDetails`
2022
+ # @return [Google::Apis::VmmigrationV1::VmwareSourceVmDetails]
2023
+ attr_accessor :vmware_source_vm_details
2024
+
2020
2025
  def initialize(**args)
2021
2026
  update!(**args)
2022
2027
  end
@@ -2044,6 +2049,7 @@ module Google
2044
2049
  @state = args[:state] if args.key?(:state)
2045
2050
  @state_time = args[:state_time] if args.key?(:state_time)
2046
2051
  @update_time = args[:update_time] if args.key?(:update_time)
2052
+ @vmware_source_vm_details = args[:vmware_source_vm_details] if args.key?(:vmware_source_vm_details)
2047
2053
  end
2048
2054
  end
2049
2055
 
@@ -2217,13 +2223,13 @@ module Google
2217
2223
  # @return [String]
2218
2224
  attr_accessor :name
2219
2225
 
2220
- # The normal response of the operation in case of success. If the original
2221
- # method returns no data on success, such as `Delete`, the response is `google.
2222
- # protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`,
2223
- # the response should be the resource. For other methods, the response should
2224
- # have the type `XxxResponse`, where `Xxx` is the original method name. For
2225
- # example, if the original method name is `TakeSnapshot()`, the inferred
2226
- # response type is `TakeSnapshotResponse`.
2226
+ # The normal, successful response of the operation. If the original method
2227
+ # returns no data on success, such as `Delete`, the response is `google.protobuf.
2228
+ # Empty`. If the original method is standard `Get`/`Create`/`Update`, the
2229
+ # response should be the resource. For other methods, the response should have
2230
+ # the type `XxxResponse`, where `Xxx` is the original method name. For example,
2231
+ # if the original method name is `TakeSnapshot()`, the inferred response type is
2232
+ # `TakeSnapshotResponse`.
2227
2233
  # Corresponds to the JSON property `response`
2228
2234
  # @return [Hash<String,Object>]
2229
2235
  attr_accessor :response
@@ -3079,6 +3085,37 @@ module Google
3079
3085
  end
3080
3086
  end
3081
3087
 
3088
+ # The details of a Vmware VM disk.
3089
+ class VmwareDiskDetails
3090
+ include Google::Apis::Core::Hashable
3091
+
3092
+ # The ordinal number of the disk.
3093
+ # Corresponds to the JSON property `diskNumber`
3094
+ # @return [Fixnum]
3095
+ attr_accessor :disk_number
3096
+
3097
+ # The disk label.
3098
+ # Corresponds to the JSON property `label`
3099
+ # @return [String]
3100
+ attr_accessor :label
3101
+
3102
+ # Size in GB.
3103
+ # Corresponds to the JSON property `sizeGb`
3104
+ # @return [Fixnum]
3105
+ attr_accessor :size_gb
3106
+
3107
+ def initialize(**args)
3108
+ update!(**args)
3109
+ end
3110
+
3111
+ # Update properties of this object
3112
+ def update!(**args)
3113
+ @disk_number = args[:disk_number] if args.key?(:disk_number)
3114
+ @label = args[:label] if args.key?(:label)
3115
+ @size_gb = args[:size_gb] if args.key?(:size_gb)
3116
+ end
3117
+ end
3118
+
3082
3119
  # VmwareSourceDetails message describes a specific source details for the vmware
3083
3120
  # source type.
3084
3121
  class VmwareSourceDetails
@@ -3124,6 +3161,37 @@ module Google
3124
3161
  end
3125
3162
  end
3126
3163
 
3164
+ # Represent the source Vmware VM details.
3165
+ class VmwareSourceVmDetails
3166
+ include Google::Apis::Core::Hashable
3167
+
3168
+ # The total size of the disks being migrated in bytes.
3169
+ # Corresponds to the JSON property `committedStorageBytes`
3170
+ # @return [Fixnum]
3171
+ attr_accessor :committed_storage_bytes
3172
+
3173
+ # The disks attached to the source VM.
3174
+ # Corresponds to the JSON property `disks`
3175
+ # @return [Array<Google::Apis::VmmigrationV1::VmwareDiskDetails>]
3176
+ attr_accessor :disks
3177
+
3178
+ # The firmware type of the source VM.
3179
+ # Corresponds to the JSON property `firmware`
3180
+ # @return [String]
3181
+ attr_accessor :firmware
3182
+
3183
+ def initialize(**args)
3184
+ update!(**args)
3185
+ end
3186
+
3187
+ # Update properties of this object
3188
+ def update!(**args)
3189
+ @committed_storage_bytes = args[:committed_storage_bytes] if args.key?(:committed_storage_bytes)
3190
+ @disks = args[:disks] if args.key?(:disks)
3191
+ @firmware = args[:firmware] if args.key?(:firmware)
3192
+ end
3193
+ end
3194
+
3127
3195
  # VmwareVmDetails describes a VM in vCenter.
3128
3196
  class VmwareVmDetails
3129
3197
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module VmmigrationV1
18
18
  # Version of the google-apis-vmmigration_v1 gem
19
- GEM_VERSION = "0.34.0"
19
+ GEM_VERSION = "0.36.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230727"
25
+ REVISION = "20230817"
26
26
  end
27
27
  end
28
28
  end
@@ -478,12 +478,24 @@ module Google
478
478
  include Google::Apis::Core::JsonObjectSupport
479
479
  end
480
480
 
481
+ class VmwareDiskDetails
482
+ class Representation < Google::Apis::Core::JsonRepresentation; end
483
+
484
+ include Google::Apis::Core::JsonObjectSupport
485
+ end
486
+
481
487
  class VmwareSourceDetails
482
488
  class Representation < Google::Apis::Core::JsonRepresentation; end
483
489
 
484
490
  include Google::Apis::Core::JsonObjectSupport
485
491
  end
486
492
 
493
+ class VmwareSourceVmDetails
494
+ class Representation < Google::Apis::Core::JsonRepresentation; end
495
+
496
+ include Google::Apis::Core::JsonObjectSupport
497
+ end
498
+
487
499
  class VmwareVmDetails
488
500
  class Representation < Google::Apis::Core::JsonRepresentation; end
489
501
 
@@ -1058,6 +1070,8 @@ module Google
1058
1070
  property :state, as: 'state'
1059
1071
  property :state_time, as: 'stateTime'
1060
1072
  property :update_time, as: 'updateTime'
1073
+ property :vmware_source_vm_details, as: 'vmwareSourceVmDetails', class: Google::Apis::VmmigrationV1::VmwareSourceVmDetails, decorator: Google::Apis::VmmigrationV1::VmwareSourceVmDetails::Representation
1074
+
1061
1075
  end
1062
1076
  end
1063
1077
 
@@ -1343,6 +1357,15 @@ module Google
1343
1357
  end
1344
1358
  end
1345
1359
 
1360
+ class VmwareDiskDetails
1361
+ # @private
1362
+ class Representation < Google::Apis::Core::JsonRepresentation
1363
+ property :disk_number, as: 'diskNumber'
1364
+ property :label, as: 'label'
1365
+ property :size_gb, :numeric_string => true, as: 'sizeGb'
1366
+ end
1367
+ end
1368
+
1346
1369
  class VmwareSourceDetails
1347
1370
  # @private
1348
1371
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1354,6 +1377,16 @@ module Google
1354
1377
  end
1355
1378
  end
1356
1379
 
1380
+ class VmwareSourceVmDetails
1381
+ # @private
1382
+ class Representation < Google::Apis::Core::JsonRepresentation
1383
+ property :committed_storage_bytes, :numeric_string => true, as: 'committedStorageBytes'
1384
+ collection :disks, as: 'disks', class: Google::Apis::VmmigrationV1::VmwareDiskDetails, decorator: Google::Apis::VmmigrationV1::VmwareDiskDetails::Representation
1385
+
1386
+ property :firmware, as: 'firmware'
1387
+ end
1388
+ end
1389
+
1357
1390
  class VmwareVmDetails
1358
1391
  # @private
1359
1392
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-vmmigration_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.34.0
4
+ version: 0.36.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: 2023-08-06 00:00:00.000000000 Z
11
+ date: 2023-08-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-vmmigration_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1/v0.34.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1/v0.36.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vmmigration_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.4.2
78
+ rubygems_version: 3.4.19
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for VM Migration API V1