google-apis-datamigration_v1 0.39.0 → 0.41.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: 35ce4bd8459473096f102e2e59d56d725d45c5abcd67af78cd80174ae873ed56
4
- data.tar.gz: 6d05d7915f68b3c599f7fe2ea581e71ee372e4c8e4f924d23de4490055d34b78
3
+ metadata.gz: 454f102cd672a80c3cd185bfc995e465dc6b1115318279ede352225023ed0cc1
4
+ data.tar.gz: 94b9bc7bf9ccd66737b509cdb7b13f3185a04c6fe5478c4ac0a56bbeacde8af6
5
5
  SHA512:
6
- metadata.gz: 3cd98782b93273726288befa65eb764382634ce52bfc420b8d16921af8590df3998a66a1673e77c934a8325ae5d976478a8f9606e148c993c5719ab28db617cc
7
- data.tar.gz: 4f9fbb883b56a358d239d3d8a808607b380fa30b82678a0fe394c6fdf129fcd1c2e0fb3a7420b6760f43768b1050adc3ec2da654ec9b40fc8914832ccb2b47da
6
+ metadata.gz: 2689cf30ae4e7278d395f5e5f69118d4c34935475907f0c667ae1065a9f050198adf25700c0ce8580c1f2a611cf4893db2dc884e16f1f0841d221317fcfbc4a6
7
+ data.tar.gz: 183eb063570e42fd69cdf964ee066f5503cf866bee3193ee3bd40feec83f1205ffc52f42b55b11e5ae6bdd0d733ad825e1c95202c60d5da2bb81a652202904ed
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-datamigration_v1
2
2
 
3
+ ### v0.41.0 (2023-08-06)
4
+
5
+ * Regenerated from discovery document revision 20230726
6
+
7
+ ### v0.40.0 (2023-07-16)
8
+
9
+ * Regenerated from discovery document revision 20230710
10
+
3
11
  ### v0.39.0 (2023-07-09)
4
12
 
5
13
  * Regenerated from discovery document revision 20230703
@@ -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)
@@ -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`.
@@ -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
 
@@ -4458,12 +4491,20 @@ module Google
4458
4491
  class StartMigrationJobRequest
4459
4492
  include Google::Apis::Core::Hashable
4460
4493
 
4494
+ # Optional. Start the migration job without running prior configuration
4495
+ # verification. Defaults to `false`.
4496
+ # Corresponds to the JSON property `skipValidation`
4497
+ # @return [Boolean]
4498
+ attr_accessor :skip_validation
4499
+ alias_method :skip_validation?, :skip_validation
4500
+
4461
4501
  def initialize(**args)
4462
4502
  update!(**args)
4463
4503
  end
4464
4504
 
4465
4505
  # Update properties of this object
4466
4506
  def update!(**args)
4507
+ @skip_validation = args[:skip_validation] if args.key?(:skip_validation)
4467
4508
  end
4468
4509
  end
4469
4510
 
@@ -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.39.0"
19
+ GEM_VERSION = "0.41.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 = "20230703"
25
+ REVISION = "20230726"
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
 
@@ -1895,6 +1911,7 @@ module Google
1895
1911
  class StartMigrationJobRequest
1896
1912
  # @private
1897
1913
  class Representation < Google::Apis::Core::JsonRepresentation
1914
+ property :skip_validation, as: 'skipValidation'
1898
1915
  end
1899
1916
  end
1900
1917
 
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.39.0
4
+ version: 0.41.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-09 00:00:00.000000000 Z
11
+ date: 2023-08-06 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.39.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.41.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: []