google-apis-vmmigration_v1alpha1 0.22.0 → 0.23.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: f2007356da10814c160dd21c968517a92b03e27c642a69cb175df613f50852f5
4
- data.tar.gz: e2b175c03fe6e9f9a9384bec6e91901158ac1112364b4a7f5e3736690a498d77
3
+ metadata.gz: 8289e548b60fa2f48d2fee14fb98e3ad55d27e6f12d57d7538fd8eea946068ef
4
+ data.tar.gz: cf0c289ea587c9b3653123111a20353bfac2f272beb3e956cc1a2a31942c85e6
5
5
  SHA512:
6
- metadata.gz: 4c7b2545e2831c9b93a058e4f82fa7ce19d40307c1eb71f6c6d1a064aa8f69aeef63ef6972fbfc695c30b5e3141799c6525a3559122a4379bef380faa64235a4
7
- data.tar.gz: 884d0c1214a1e3f3e540f95b47f954df19170db2c1852602c9fa46cfafff1339227a7360eb9571ca175150a59e3b203787153c8078ad8bc6ebabfbbb144d25d7
6
+ metadata.gz: 97022711415c5ac520fcbe70bcb6bd26e799f75fd4ec4a4519c1b4540249ec939d586fc8c512f7da3567208af66a9638a6fbd2341c70c6313427b3476fe8d690
7
+ data.tar.gz: 3fa1a34b68f0dc2165ddd3d202d45649212a6cae29323ab6a65b5fa8dfb26bca6a6e900c7935205e7f706cebdf3d458897fde374f50e636b38b83b8b0b630083
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-vmmigration_v1alpha1
2
2
 
3
+ ### v0.23.0 (2022-12-04)
4
+
5
+ * Regenerated from discovery document revision 20221126
6
+
3
7
  ### v0.22.0 (2022-11-10)
4
8
 
5
9
  * 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)
@@ -2536,6 +2573,31 @@ module Google
2536
2573
  end
2537
2574
  end
2538
2575
 
2576
+ # Tag is an AWS tag representation.
2577
+ class Tag
2578
+ include Google::Apis::Core::Hashable
2579
+
2580
+ # Key of tag.
2581
+ # Corresponds to the JSON property `key`
2582
+ # @return [String]
2583
+ attr_accessor :key
2584
+
2585
+ # Value of tag.
2586
+ # Corresponds to the JSON property `value`
2587
+ # @return [String]
2588
+ attr_accessor :value
2589
+
2590
+ def initialize(**args)
2591
+ update!(**args)
2592
+ end
2593
+
2594
+ # Update properties of this object
2595
+ def update!(**args)
2596
+ @key = args[:key] if args.key?(:key)
2597
+ @value = args[:value] if args.key?(:value)
2598
+ end
2599
+ end
2600
+
2539
2601
  # TargetProject message represents a target Compute Engine project for a
2540
2602
  # migration or a clone.
2541
2603
  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.22.0"
19
+ GEM_VERSION = "0.23.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 = "20221103"
25
+ REVISION = "20221126"
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.22.0
4
+ version: 0.23.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: 2022-11-14 00:00:00.000000000 Z
11
+ date: 2022-12-12 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.22.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1alpha1/v0.23.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: []