google-apis-datamigration_v1 0.40.0 → 0.42.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: deb33663f36ad46ddbf4e03a8dd94d4592023312f386df98fcf8a394bfda2ca5
4
- data.tar.gz: 9ca8bd68d67923ef22f50be15b618e9674632b073fcbda7fc59ce16f6eb89e6e
3
+ metadata.gz: eb3083465c25e19430fd4e794f6e162694dc52593a15f6b8527d15a4cda0ef27
4
+ data.tar.gz: 50461f2ba2de7de859156cacbfe315ac243ef3e777ccd15d642633a6ed3f7b6a
5
5
  SHA512:
6
- metadata.gz: a2a289b4ca74e73cb759b6f924ca44a37450d2f6e9ec785243e9bb526588b5a963b5ad29e1ba7da5d8c23852044b1a305bf4743d91654f039279b70bedd6d313
7
- data.tar.gz: ee2a1966ec92772fbf7f4899b91546b3998e3e3b3c73e0b51ddd2ba648cdcb74528d2908b9a87231383c9afdf3be00046268c3ab61c0baf823cc9663ee4b7e48
6
+ metadata.gz: 35be5cefee15733250b2e002b21998e337f0d6411af01c3012f5b179bfcd44210b9925c4406dfd89e1457414e6650e36468b3ca2c509b4dc0a2e3a44d08b76c8
7
+ data.tar.gz: ccd9447e4b79a6c7bcda6ba4d8469d7828ebe7397754b43fc6725b3e75accf2b9b3a02132ded59ef4fdc13593ba293e4e3a0c2913efadae3340824ec461f844f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-datamigration_v1
2
2
 
3
+ ### v0.42.0 (2023-08-13)
4
+
5
+ * Regenerated from discovery document revision 20230802
6
+
7
+ ### v0.41.0 (2023-08-06)
8
+
9
+ * Regenerated from discovery document revision 20230726
10
+
3
11
  ### v0.40.0 (2023-07-16)
4
12
 
5
13
  * Regenerated from discovery document revision 20230710
@@ -2817,6 +2817,11 @@ module Google
2817
2817
  # @return [String]
2818
2818
  attr_accessor :name
2819
2819
 
2820
+ # Performance configuration definition.
2821
+ # Corresponds to the JSON property `performanceConfig`
2822
+ # @return [Google::Apis::DatamigrationV1::PerformanceConfig]
2823
+ attr_accessor :performance_config
2824
+
2820
2825
  # Output only. The current migration job phase.
2821
2826
  # Corresponds to the JSON property `phase`
2822
2827
  # @return [String]
@@ -2894,6 +2899,7 @@ module Google
2894
2899
  @filter = args[:filter] if args.key?(:filter)
2895
2900
  @labels = args[:labels] if args.key?(:labels)
2896
2901
  @name = args[:name] if args.key?(:name)
2902
+ @performance_config = args[:performance_config] if args.key?(:performance_config)
2897
2903
  @phase = args[:phase] if args.key?(:phase)
2898
2904
  @reverse_ssh_connectivity = args[:reverse_ssh_connectivity] if args.key?(:reverse_ssh_connectivity)
2899
2905
  @source = args[:source] if args.key?(:source)
@@ -3149,13 +3155,13 @@ module Google
3149
3155
  # @return [String]
3150
3156
  attr_accessor :name
3151
3157
 
3152
- # The normal response of the operation in case of success. If the original
3153
- # method returns no data on success, such as `Delete`, the response is `google.
3154
- # protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`,
3155
- # the response should be the resource. For other methods, the response should
3156
- # have the type `XxxResponse`, where `Xxx` is the original method name. For
3157
- # example, if the original method name is `TakeSnapshot()`, the inferred
3158
- # response type is `TakeSnapshotResponse`.
3158
+ # The normal, successful response of the operation. If the original method
3159
+ # returns no data on success, such as `Delete`, the response is `google.protobuf.
3160
+ # Empty`. If the original method is standard `Get`/`Create`/`Update`, the
3161
+ # response should be the resource. For other methods, the response should have
3162
+ # the type `XxxResponse`, where `Xxx` is the original method name. For example,
3163
+ # if the original method name is `TakeSnapshot()`, the inferred response type is
3164
+ # `TakeSnapshotResponse`.
3159
3165
  # Corresponds to the JSON property `response`
3160
3166
  # @return [Hash<String,Object>]
3161
3167
  attr_accessor :response
@@ -3284,6 +3290,25 @@ module Google
3284
3290
  end
3285
3291
  end
3286
3292
 
3293
+ # Performance configuration definition.
3294
+ class PerformanceConfig
3295
+ include Google::Apis::Core::Hashable
3296
+
3297
+ # Initial dump parallelism level.
3298
+ # Corresponds to the JSON property `dumpParallelLevel`
3299
+ # @return [String]
3300
+ attr_accessor :dump_parallel_level
3301
+
3302
+ def initialize(**args)
3303
+ update!(**args)
3304
+ end
3305
+
3306
+ # Update properties of this object
3307
+ def update!(**args)
3308
+ @dump_parallel_level = args[:dump_parallel_level] if args.key?(:dump_parallel_level)
3309
+ end
3310
+ end
3311
+
3287
3312
  # An Identity and Access Management (IAM) policy, which specifies access
3288
3313
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
3289
3314
  # A `binding` binds one or more `members`, or principals, to a single `role`.
@@ -3295,22 +3320,22 @@ module Google
3295
3320
  # evaluates to `true`. A condition can add constraints based on attributes of
3296
3321
  # the request, the resource, or both. To learn which resources support
3297
3322
  # conditions in their IAM policies, see the [IAM documentation](https://cloud.
3298
- # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
3323
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
3299
3324
  # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
3300
3325
  # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
3301
3326
  # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
3302
3327
  # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
3303
3328
  # ], "condition": ` "title": "expirable access", "description": "Does not grant
3304
3329
  # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
3305
- # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
3306
- # bindings: - members: - user:mike@example.com - group:admins@example.com -
3307
- # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
3308
- # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
3309
- # com role: roles/resourcemanager.organizationViewer condition: title: expirable
3310
- # access description: Does not grant access after Sep 2020 expression: request.
3311
- # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
3312
- # a description of IAM and its features, see the [IAM documentation](https://
3313
- # cloud.google.com/iam/docs/).
3330
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
3331
+ # example:** ``` bindings: - members: - user:mike@example.com - group:admins@
3332
+ # example.com - domain:google.com - serviceAccount:my-project-id@appspot.
3333
+ # gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
3334
+ # user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
3335
+ # title: expirable access description: Does not grant access after Sep 2020
3336
+ # expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
3337
+ # BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
3338
+ # [IAM documentation](https://cloud.google.com/iam/docs/).
3314
3339
  class Policy
3315
3340
  include Google::Apis::Core::Hashable
3316
3341
 
@@ -3456,7 +3481,7 @@ module Google
3456
3481
  # @return [Fixnum]
3457
3482
  attr_accessor :port
3458
3483
 
3459
- # Private Service Connect connectivity (https://cloud.google.com/vpc/docs/
3484
+ # [Private Service Connect connectivity](https://cloud.google.com/vpc/docs/
3460
3485
  # private-service-connect#service-attachments)
3461
3486
  # Corresponds to the JSON property `privateServiceConnectConnectivity`
3462
3487
  # @return [Google::Apis::DatamigrationV1::PrivateServiceConnectConnectivity]
@@ -3637,7 +3662,7 @@ module Google
3637
3662
  end
3638
3663
  end
3639
3664
 
3640
- # Private Service Connect connectivity (https://cloud.google.com/vpc/docs/
3665
+ # [Private Service Connect connectivity](https://cloud.google.com/vpc/docs/
3641
3666
  # private-service-connect#service-attachments)
3642
3667
  class PrivateServiceConnectConnectivity
3643
3668
  include Google::Apis::Core::Hashable
@@ -3676,12 +3701,20 @@ module Google
3676
3701
  class RestartMigrationJobRequest
3677
3702
  include Google::Apis::Core::Hashable
3678
3703
 
3704
+ # Optional. Restart the migration job without running prior configuration
3705
+ # verification. Defaults to `false`.
3706
+ # Corresponds to the JSON property `skipValidation`
3707
+ # @return [Boolean]
3708
+ attr_accessor :skip_validation
3709
+ alias_method :skip_validation?, :skip_validation
3710
+
3679
3711
  def initialize(**args)
3680
3712
  update!(**args)
3681
3713
  end
3682
3714
 
3683
3715
  # Update properties of this object
3684
3716
  def update!(**args)
3717
+ @skip_validation = args[:skip_validation] if args.key?(:skip_validation)
3685
3718
  end
3686
3719
  end
3687
3720
 
@@ -3975,22 +4008,22 @@ module Google
3975
4008
  # evaluates to `true`. A condition can add constraints based on attributes of
3976
4009
  # the request, the resource, or both. To learn which resources support
3977
4010
  # conditions in their IAM policies, see the [IAM documentation](https://cloud.
3978
- # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
4011
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
3979
4012
  # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
3980
4013
  # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
3981
4014
  # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
3982
4015
  # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
3983
4016
  # ], "condition": ` "title": "expirable access", "description": "Does not grant
3984
4017
  # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
3985
- # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
3986
- # bindings: - members: - user:mike@example.com - group:admins@example.com -
3987
- # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
3988
- # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
3989
- # com role: roles/resourcemanager.organizationViewer condition: title: expirable
3990
- # access description: Does not grant access after Sep 2020 expression: request.
3991
- # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
3992
- # a description of IAM and its features, see the [IAM documentation](https://
3993
- # cloud.google.com/iam/docs/).
4018
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
4019
+ # example:** ``` bindings: - members: - user:mike@example.com - group:admins@
4020
+ # example.com - domain:google.com - serviceAccount:my-project-id@appspot.
4021
+ # gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
4022
+ # user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
4023
+ # title: expirable access description: Does not grant access after Sep 2020
4024
+ # expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
4025
+ # BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
4026
+ # [IAM documentation](https://cloud.google.com/iam/docs/).
3994
4027
  # Corresponds to the JSON property `policy`
3995
4028
  # @return [Google::Apis::DatamigrationV1::Policy]
3996
4029
  attr_accessor :policy
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatamigrationV1
18
18
  # Version of the google-apis-datamigration_v1 gem
19
- GEM_VERSION = "0.40.0"
19
+ GEM_VERSION = "0.42.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 = "20230710"
25
+ REVISION = "20230802"
26
26
  end
27
27
  end
28
28
  end
@@ -448,6 +448,12 @@ module Google
448
448
  include Google::Apis::Core::JsonObjectSupport
449
449
  end
450
450
 
451
+ class PerformanceConfig
452
+ class Representation < Google::Apis::Core::JsonRepresentation; end
453
+
454
+ include Google::Apis::Core::JsonObjectSupport
455
+ end
456
+
451
457
  class Policy
452
458
  class Representation < Google::Apis::Core::JsonRepresentation; end
453
459
 
@@ -1493,6 +1499,8 @@ module Google
1493
1499
  property :filter, as: 'filter'
1494
1500
  hash :labels, as: 'labels'
1495
1501
  property :name, as: 'name'
1502
+ property :performance_config, as: 'performanceConfig', class: Google::Apis::DatamigrationV1::PerformanceConfig, decorator: Google::Apis::DatamigrationV1::PerformanceConfig::Representation
1503
+
1496
1504
  property :phase, as: 'phase'
1497
1505
  property :reverse_ssh_connectivity, as: 'reverseSshConnectivity', class: Google::Apis::DatamigrationV1::ReverseSshConnectivity, decorator: Google::Apis::DatamigrationV1::ReverseSshConnectivity::Representation
1498
1506
 
@@ -1598,6 +1606,13 @@ module Google
1598
1606
  end
1599
1607
  end
1600
1608
 
1609
+ class PerformanceConfig
1610
+ # @private
1611
+ class Representation < Google::Apis::Core::JsonRepresentation
1612
+ property :dump_parallel_level, as: 'dumpParallelLevel'
1613
+ end
1614
+ end
1615
+
1601
1616
  class Policy
1602
1617
  # @private
1603
1618
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1690,6 +1705,7 @@ module Google
1690
1705
  class RestartMigrationJobRequest
1691
1706
  # @private
1692
1707
  class Representation < Google::Apis::Core::JsonRepresentation
1708
+ property :skip_validation, as: 'skipValidation'
1693
1709
  end
1694
1710
  end
1695
1711
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datamigration_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.40.0
4
+ version: 0.42.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-07-16 00:00:00.000000000 Z
11
+ date: 2023-08-13 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-datamigration_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.40.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.42.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datamigration_v1
63
63
  post_install_message:
64
64
  rdoc_options: []