google-apis-vmmigration_v1alpha1 0.35.0 → 0.37.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: 4bbbed3985c5b27068e2975d6d8d3e37045a80adb8b53980595bbdce5cb7ff1e
4
- data.tar.gz: cd44cbec0ac7c222dd663086adcad65eef41d17802820763d69a2cb159facba3
3
+ metadata.gz: a333ab0ab0113c5c647e5723bed074f0e8c5994f2e634850bb1461987d864882
4
+ data.tar.gz: 794849573d48ab6cd84097b7ab8bde97ff91efe6a2537607c5a5c1e697141bfe
5
5
  SHA512:
6
- metadata.gz: 90cadecf40e2337f6321eb5600dcd72c0bf0175cc2bef3b0ecd8afadd13ff2860d038fea52ebcb6ab707e6a5b2c5962c5c34319259075a57f117de0b1e2303a5
7
- data.tar.gz: a0583553f8813193a1416e6b34a362e77f501c06c8deae9ee09917fa378fc350db8e34e200266eeab533dd43781c6efcac4fc721608ec80037ef3ef9e7c01e7d
6
+ metadata.gz: 3d70af60c5c7b27fdc7a9b82069958f22e9f91e7a5c5208ecae9f64465dcd38be7131bd58596e48d529ba227eae26281946fdf8f39e77ebd5747a2715b45986e
7
+ data.tar.gz: efd39c387ab8754d5fcdb13b34655f9838549004ccd99352c5338762b88979dc9c1be20085912921b068d51b710df305e347b1c8e7186996398589c0ee57a00e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-vmmigration_v1alpha1
2
2
 
3
+ ### v0.37.0 (2023-08-27)
4
+
5
+ * Regenerated from discovery document revision 20230817
6
+
7
+ ### v0.36.0 (2023-08-13)
8
+
9
+ * Regenerated from discovery document revision 20230803
10
+
3
11
  ### v0.35.0 (2023-08-06)
4
12
 
5
13
  * Regenerated from discovery document revision 20230727
@@ -2070,6 +2070,11 @@ module Google
2070
2070
  # @return [String]
2071
2071
  attr_accessor :update_time
2072
2072
 
2073
+ # Represent the source Vmware VM details.
2074
+ # Corresponds to the JSON property `vmwareSourceVmDetails`
2075
+ # @return [Google::Apis::VmmigrationV1alpha1::VmwareSourceVmDetails]
2076
+ attr_accessor :vmware_source_vm_details
2077
+
2073
2078
  def initialize(**args)
2074
2079
  update!(**args)
2075
2080
  end
@@ -2099,6 +2104,7 @@ module Google
2099
2104
  @state_time = args[:state_time] if args.key?(:state_time)
2100
2105
  @target_defaults = args[:target_defaults] if args.key?(:target_defaults)
2101
2106
  @update_time = args[:update_time] if args.key?(:update_time)
2107
+ @vmware_source_vm_details = args[:vmware_source_vm_details] if args.key?(:vmware_source_vm_details)
2102
2108
  end
2103
2109
  end
2104
2110
 
@@ -2272,13 +2278,13 @@ module Google
2272
2278
  # @return [String]
2273
2279
  attr_accessor :name
2274
2280
 
2275
- # The normal response of the operation in case of success. If the original
2276
- # method returns no data on success, such as `Delete`, the response is `google.
2277
- # protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`,
2278
- # the response should be the resource. For other methods, the response should
2279
- # have the type `XxxResponse`, where `Xxx` is the original method name. For
2280
- # example, if the original method name is `TakeSnapshot()`, the inferred
2281
- # response type is `TakeSnapshotResponse`.
2281
+ # The normal, successful response of the operation. If the original method
2282
+ # returns no data on success, such as `Delete`, the response is `google.protobuf.
2283
+ # Empty`. If the original method is standard `Get`/`Create`/`Update`, the
2284
+ # response should be the resource. For other methods, the response should have
2285
+ # the type `XxxResponse`, where `Xxx` is the original method name. For example,
2286
+ # if the original method name is `TakeSnapshot()`, the inferred response type is
2287
+ # `TakeSnapshotResponse`.
2282
2288
  # Corresponds to the JSON property `response`
2283
2289
  # @return [Hash<String,Object>]
2284
2290
  attr_accessor :response
@@ -3352,6 +3358,37 @@ module Google
3352
3358
  end
3353
3359
  end
3354
3360
 
3361
+ # The details of a Vmware VM disk.
3362
+ class VmwareDiskDetails
3363
+ include Google::Apis::Core::Hashable
3364
+
3365
+ # The ordinal number of the disk.
3366
+ # Corresponds to the JSON property `diskNumber`
3367
+ # @return [Fixnum]
3368
+ attr_accessor :disk_number
3369
+
3370
+ # The disk label.
3371
+ # Corresponds to the JSON property `label`
3372
+ # @return [String]
3373
+ attr_accessor :label
3374
+
3375
+ # Size in GB.
3376
+ # Corresponds to the JSON property `sizeGb`
3377
+ # @return [Fixnum]
3378
+ attr_accessor :size_gb
3379
+
3380
+ def initialize(**args)
3381
+ update!(**args)
3382
+ end
3383
+
3384
+ # Update properties of this object
3385
+ def update!(**args)
3386
+ @disk_number = args[:disk_number] if args.key?(:disk_number)
3387
+ @label = args[:label] if args.key?(:label)
3388
+ @size_gb = args[:size_gb] if args.key?(:size_gb)
3389
+ end
3390
+ end
3391
+
3355
3392
  # VmwareSourceDetails message describes a specific source details for the vmware
3356
3393
  # source type.
3357
3394
  class VmwareSourceDetails
@@ -3397,6 +3434,37 @@ module Google
3397
3434
  end
3398
3435
  end
3399
3436
 
3437
+ # Represent the source Vmware VM details.
3438
+ class VmwareSourceVmDetails
3439
+ include Google::Apis::Core::Hashable
3440
+
3441
+ # The total size of the disks being migrated in bytes.
3442
+ # Corresponds to the JSON property `committedStorageBytes`
3443
+ # @return [Fixnum]
3444
+ attr_accessor :committed_storage_bytes
3445
+
3446
+ # The disks attached to the source VM.
3447
+ # Corresponds to the JSON property `disks`
3448
+ # @return [Array<Google::Apis::VmmigrationV1alpha1::VmwareDiskDetails>]
3449
+ attr_accessor :disks
3450
+
3451
+ # The firmware type of the source VM.
3452
+ # Corresponds to the JSON property `firmware`
3453
+ # @return [String]
3454
+ attr_accessor :firmware
3455
+
3456
+ def initialize(**args)
3457
+ update!(**args)
3458
+ end
3459
+
3460
+ # Update properties of this object
3461
+ def update!(**args)
3462
+ @committed_storage_bytes = args[:committed_storage_bytes] if args.key?(:committed_storage_bytes)
3463
+ @disks = args[:disks] if args.key?(:disks)
3464
+ @firmware = args[:firmware] if args.key?(:firmware)
3465
+ end
3466
+ end
3467
+
3400
3468
  # VmwareVmDetails describes a VM in vCenter.
3401
3469
  class VmwareVmDetails
3402
3470
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module VmmigrationV1alpha1
18
18
  # Version of the google-apis-vmmigration_v1alpha1 gem
19
- GEM_VERSION = "0.35.0"
19
+ GEM_VERSION = "0.37.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
@@ -484,12 +484,24 @@ module Google
484
484
  include Google::Apis::Core::JsonObjectSupport
485
485
  end
486
486
 
487
+ class VmwareDiskDetails
488
+ class Representation < Google::Apis::Core::JsonRepresentation; end
489
+
490
+ include Google::Apis::Core::JsonObjectSupport
491
+ end
492
+
487
493
  class VmwareSourceDetails
488
494
  class Representation < Google::Apis::Core::JsonRepresentation; end
489
495
 
490
496
  include Google::Apis::Core::JsonObjectSupport
491
497
  end
492
498
 
499
+ class VmwareSourceVmDetails
500
+ class Representation < Google::Apis::Core::JsonRepresentation; end
501
+
502
+ include Google::Apis::Core::JsonObjectSupport
503
+ end
504
+
493
505
  class VmwareVmDetails
494
506
  class Representation < Google::Apis::Core::JsonRepresentation; end
495
507
 
@@ -1078,6 +1090,8 @@ module Google
1078
1090
  property :target_defaults, as: 'targetDefaults', class: Google::Apis::VmmigrationV1alpha1::TargetVmDetails, decorator: Google::Apis::VmmigrationV1alpha1::TargetVmDetails::Representation
1079
1091
 
1080
1092
  property :update_time, as: 'updateTime'
1093
+ property :vmware_source_vm_details, as: 'vmwareSourceVmDetails', class: Google::Apis::VmmigrationV1alpha1::VmwareSourceVmDetails, decorator: Google::Apis::VmmigrationV1alpha1::VmwareSourceVmDetails::Representation
1094
+
1081
1095
  end
1082
1096
  end
1083
1097
 
@@ -1405,6 +1419,15 @@ module Google
1405
1419
  end
1406
1420
  end
1407
1421
 
1422
+ class VmwareDiskDetails
1423
+ # @private
1424
+ class Representation < Google::Apis::Core::JsonRepresentation
1425
+ property :disk_number, as: 'diskNumber'
1426
+ property :label, as: 'label'
1427
+ property :size_gb, :numeric_string => true, as: 'sizeGb'
1428
+ end
1429
+ end
1430
+
1408
1431
  class VmwareSourceDetails
1409
1432
  # @private
1410
1433
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1416,6 +1439,16 @@ module Google
1416
1439
  end
1417
1440
  end
1418
1441
 
1442
+ class VmwareSourceVmDetails
1443
+ # @private
1444
+ class Representation < Google::Apis::Core::JsonRepresentation
1445
+ property :committed_storage_bytes, :numeric_string => true, as: 'committedStorageBytes'
1446
+ collection :disks, as: 'disks', class: Google::Apis::VmmigrationV1alpha1::VmwareDiskDetails, decorator: Google::Apis::VmmigrationV1alpha1::VmwareDiskDetails::Representation
1447
+
1448
+ property :firmware, as: 'firmware'
1449
+ end
1450
+ end
1451
+
1419
1452
  class VmwareVmDetails
1420
1453
  # @private
1421
1454
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-vmmigration_v1alpha1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.35.0
4
+ version: 0.37.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_v1alpha1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1alpha1/v0.35.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1alpha1/v0.37.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vmmigration_v1alpha1
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 V1alpha1