google-apis-vmmigration_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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7b35b47be079414e5b2c9e6d766bdaadf32095d787e2dce2a9815e3606477c6b
|
4
|
+
data.tar.gz: 21cf417ad4da8435d9e5b6f44441d7e24cbeffd7d85270685d4134c12a6aca04
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 280fa6bf0f9b78fae661a455d883861dffc301e938e51cb79e9d2c9331b5f557ee0250e8499c6ba8914b5a1e947e0673505e89de02186a94a1110abf4be5677d
|
7
|
+
data.tar.gz: 1a7f3250c00ea79ad03b53f18f2538813a79410dff4c252dec768307e0253d26cd2130ac90b055c38891cf3ccf8451befacd2fb987ec17443d0cf1d0d68dd4a5
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-vmmigration_v1alpha1
|
2
2
|
|
3
|
+
### v0.24.0 (2022-12-19)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20221213
|
6
|
+
|
7
|
+
### v0.23.0 (2022-12-04)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20221126
|
10
|
+
|
3
11
|
### v0.22.0 (2022-11-10)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20221103
|
@@ -22,6 +22,31 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module VmmigrationV1alpha1
|
24
24
|
|
25
|
+
# Message describing AWS Credentials using access key id and secret.
|
26
|
+
class AccessKeyCredentials
|
27
|
+
include Google::Apis::Core::Hashable
|
28
|
+
|
29
|
+
# AWS access key ID.
|
30
|
+
# Corresponds to the JSON property `accessKeyId`
|
31
|
+
# @return [String]
|
32
|
+
attr_accessor :access_key_id
|
33
|
+
|
34
|
+
# Input only. AWS secret access key.
|
35
|
+
# Corresponds to the JSON property `secretAccessKey`
|
36
|
+
# @return [String]
|
37
|
+
attr_accessor :secret_access_key
|
38
|
+
|
39
|
+
def initialize(**args)
|
40
|
+
update!(**args)
|
41
|
+
end
|
42
|
+
|
43
|
+
# Update properties of this object
|
44
|
+
def update!(**args)
|
45
|
+
@access_key_id = args[:access_key_id] if args.key?(:access_key_id)
|
46
|
+
@secret_access_key = args[:secret_access_key] if args.key?(:secret_access_key)
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
25
50
|
# AdaptingOSStep contains specific step details.
|
26
51
|
class AdaptingOsStep
|
27
52
|
include Google::Apis::Core::Hashable
|
@@ -172,6 +197,11 @@ module Google
|
|
172
197
|
class AwsSourceDetails
|
173
198
|
include Google::Apis::Core::Hashable
|
174
199
|
|
200
|
+
# Message describing AWS Credentials using access key id and secret.
|
201
|
+
# Corresponds to the JSON property `accessKeyCreds`
|
202
|
+
# @return [Google::Apis::VmmigrationV1alpha1::AccessKeyCredentials]
|
203
|
+
attr_accessor :access_key_creds
|
204
|
+
|
175
205
|
# AWS access key ID.
|
176
206
|
# Corresponds to the JSON property `accessKeyId`
|
177
207
|
# @return [String]
|
@@ -197,6 +227,11 @@ module Google
|
|
197
227
|
# @return [Array<String>]
|
198
228
|
attr_accessor :inventory_security_group_names
|
199
229
|
|
230
|
+
# AWS resource tags to limit the scope of the source inventory.
|
231
|
+
# Corresponds to the JSON property `inventoryTagList`
|
232
|
+
# @return [Array<Google::Apis::VmmigrationV1alpha1::Tag>]
|
233
|
+
attr_accessor :inventory_tag_list
|
234
|
+
|
200
235
|
# Deprecated: AWS resource tags to limit the scope of the source inventory. Use
|
201
236
|
# inventory_tag_list instead.
|
202
237
|
# Corresponds to the JSON property `inventoryTags`
|
@@ -232,10 +267,12 @@ module Google
|
|
232
267
|
|
233
268
|
# Update properties of this object
|
234
269
|
def update!(**args)
|
270
|
+
@access_key_creds = args[:access_key_creds] if args.key?(:access_key_creds)
|
235
271
|
@access_key_id = args[:access_key_id] if args.key?(:access_key_id)
|
236
272
|
@aws_region = args[:aws_region] if args.key?(:aws_region)
|
237
273
|
@error = args[:error] if args.key?(:error)
|
238
274
|
@inventory_security_group_names = args[:inventory_security_group_names] if args.key?(:inventory_security_group_names)
|
275
|
+
@inventory_tag_list = args[:inventory_tag_list] if args.key?(:inventory_tag_list)
|
239
276
|
@inventory_tags = args[:inventory_tags] if args.key?(:inventory_tags)
|
240
277
|
@migration_resources_user_tags = args[:migration_resources_user_tags] if args.key?(:migration_resources_user_tags)
|
241
278
|
@public_ip = args[:public_ip] if args.key?(:public_ip)
|
@@ -778,7 +815,7 @@ module Google
|
|
778
815
|
# @return [Array<String>]
|
779
816
|
attr_accessor :network_tags
|
780
817
|
|
781
|
-
# The
|
818
|
+
# The Google Cloud target project ID or project name.
|
782
819
|
# Corresponds to the JSON property `project`
|
783
820
|
# @return [String]
|
784
821
|
attr_accessor :project
|
@@ -1086,9 +1123,10 @@ module Google
|
|
1086
1123
|
end
|
1087
1124
|
end
|
1088
1125
|
|
1089
|
-
# DatacenterConnector message describes a connector between the Source and
|
1090
|
-
# which is installed on a vmware datacenter (an OVA vm installed
|
1091
|
-
# connect the Datacenter to
|
1126
|
+
# DatacenterConnector message describes a connector between the Source and
|
1127
|
+
# Google Cloud, which is installed on a vmware datacenter (an OVA vm installed
|
1128
|
+
# by the user) to connect the Datacenter to Google Cloud and support vm
|
1129
|
+
# migration data transfer.
|
1092
1130
|
class DatacenterConnector
|
1093
1131
|
include Google::Apis::Core::Hashable
|
1094
1132
|
|
@@ -1111,7 +1149,7 @@ module Google
|
|
1111
1149
|
attr_accessor :available_versions
|
1112
1150
|
|
1113
1151
|
# Output only. The communication channel between the datacenter connector and
|
1114
|
-
#
|
1152
|
+
# Google Cloud.
|
1115
1153
|
# Corresponds to the JSON property `bucket`
|
1116
1154
|
# @return [String]
|
1117
1155
|
attr_accessor :bucket
|
@@ -2536,6 +2574,31 @@ module Google
|
|
2536
2574
|
end
|
2537
2575
|
end
|
2538
2576
|
|
2577
|
+
# Tag is an AWS tag representation.
|
2578
|
+
class Tag
|
2579
|
+
include Google::Apis::Core::Hashable
|
2580
|
+
|
2581
|
+
# Key of tag.
|
2582
|
+
# Corresponds to the JSON property `key`
|
2583
|
+
# @return [String]
|
2584
|
+
attr_accessor :key
|
2585
|
+
|
2586
|
+
# Value of tag.
|
2587
|
+
# Corresponds to the JSON property `value`
|
2588
|
+
# @return [String]
|
2589
|
+
attr_accessor :value
|
2590
|
+
|
2591
|
+
def initialize(**args)
|
2592
|
+
update!(**args)
|
2593
|
+
end
|
2594
|
+
|
2595
|
+
# Update properties of this object
|
2596
|
+
def update!(**args)
|
2597
|
+
@key = args[:key] if args.key?(:key)
|
2598
|
+
@value = args[:value] if args.key?(:value)
|
2599
|
+
end
|
2600
|
+
end
|
2601
|
+
|
2539
2602
|
# TargetProject message represents a target Compute Engine project for a
|
2540
2603
|
# migration or a clone.
|
2541
2604
|
class TargetProject
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.24.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221213"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -22,6 +22,12 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module VmmigrationV1alpha1
|
24
24
|
|
25
|
+
class AccessKeyCredentials
|
26
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
|
+
|
28
|
+
include Google::Apis::Core::JsonObjectSupport
|
29
|
+
end
|
30
|
+
|
25
31
|
class AdaptingOsStep
|
26
32
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
33
|
|
@@ -388,6 +394,12 @@ module Google
|
|
388
394
|
include Google::Apis::Core::JsonObjectSupport
|
389
395
|
end
|
390
396
|
|
397
|
+
class Tag
|
398
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
399
|
+
|
400
|
+
include Google::Apis::Core::JsonObjectSupport
|
401
|
+
end
|
402
|
+
|
391
403
|
class TargetProject
|
392
404
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
393
405
|
|
@@ -448,6 +460,14 @@ module Google
|
|
448
460
|
include Google::Apis::Core::JsonObjectSupport
|
449
461
|
end
|
450
462
|
|
463
|
+
class AccessKeyCredentials
|
464
|
+
# @private
|
465
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
466
|
+
property :access_key_id, as: 'accessKeyId'
|
467
|
+
property :secret_access_key, as: 'secretAccessKey'
|
468
|
+
end
|
469
|
+
end
|
470
|
+
|
451
471
|
class AdaptingOsStep
|
452
472
|
# @private
|
453
473
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -500,11 +520,15 @@ module Google
|
|
500
520
|
class AwsSourceDetails
|
501
521
|
# @private
|
502
522
|
class Representation < Google::Apis::Core::JsonRepresentation
|
523
|
+
property :access_key_creds, as: 'accessKeyCreds', class: Google::Apis::VmmigrationV1alpha1::AccessKeyCredentials, decorator: Google::Apis::VmmigrationV1alpha1::AccessKeyCredentials::Representation
|
524
|
+
|
503
525
|
property :access_key_id, as: 'accessKeyId'
|
504
526
|
property :aws_region, as: 'awsRegion'
|
505
527
|
property :error, as: 'error', class: Google::Apis::VmmigrationV1alpha1::Status, decorator: Google::Apis::VmmigrationV1alpha1::Status::Representation
|
506
528
|
|
507
529
|
collection :inventory_security_group_names, as: 'inventorySecurityGroupNames'
|
530
|
+
collection :inventory_tag_list, as: 'inventoryTagList', class: Google::Apis::VmmigrationV1alpha1::Tag, decorator: Google::Apis::VmmigrationV1alpha1::Tag::Representation
|
531
|
+
|
508
532
|
hash :inventory_tags, as: 'inventoryTags'
|
509
533
|
hash :migration_resources_user_tags, as: 'migrationResourcesUserTags'
|
510
534
|
property :public_ip, as: 'publicIp'
|
@@ -1140,6 +1164,14 @@ module Google
|
|
1140
1164
|
end
|
1141
1165
|
end
|
1142
1166
|
|
1167
|
+
class Tag
|
1168
|
+
# @private
|
1169
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1170
|
+
property :key, as: 'key'
|
1171
|
+
property :value, as: 'value'
|
1172
|
+
end
|
1173
|
+
end
|
1174
|
+
|
1143
1175
|
class TargetProject
|
1144
1176
|
# @private
|
1145
1177
|
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.
|
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:
|
11
|
+
date: 2023-01-04 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1alpha1/v0.24.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: []
|