google-apis-datamigration_v1 0.76.0 → 0.78.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: efa8eb3318eeb0deabe9a9fbe614eb8a4171db192b83b5a4f69a60394bb5a215
|
4
|
+
data.tar.gz: 41e85b32b14fd0348e13ff57926d20f603987d092cb09a7b333201b00d2dc831
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9920653e682f8a77c1bcbc99c3f52d1da44a44054454ebb1c15d78f629397fecd7afe8c6ec2db38ab3717e3f938fcb606948246f08be0f1b1d8b024827779783
|
7
|
+
data.tar.gz: 2b51ff74b1bead72c39734f6e7fd861152ae28a7c1b994249610d0c164c33f12f6047a309bcafba0fe508740a77635bdb34337e6c96de28d74bab62fb0519651
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-datamigration_v1
|
2
2
|
|
3
|
+
### v0.78.0 (2025-07-06)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250625
|
6
|
+
|
7
|
+
### v0.77.0 (2025-06-01)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250521
|
10
|
+
|
3
11
|
### v0.76.0 (2025-05-25)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250519
|
@@ -2232,6 +2232,12 @@ module Google
|
|
2232
2232
|
# @return [String]
|
2233
2233
|
attr_accessor :end_time
|
2234
2234
|
|
2235
|
+
# Output only. Additional metadata that is returned by the backend for the
|
2236
|
+
# operation.
|
2237
|
+
# Corresponds to the JSON property `metadata`
|
2238
|
+
# @return [Hash<String,String>]
|
2239
|
+
attr_accessor :metadata
|
2240
|
+
|
2235
2241
|
# Output only. Identifies whether the user has requested cancellation of the
|
2236
2242
|
# operation. Operations that have successfully been cancelled have google.
|
2237
2243
|
# longrunning.Operation.error value with a google.rpc.Status.code of 1,
|
@@ -2265,6 +2271,7 @@ module Google
|
|
2265
2271
|
@api_version = args[:api_version] if args.key?(:api_version)
|
2266
2272
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2267
2273
|
@end_time = args[:end_time] if args.key?(:end_time)
|
2274
|
+
@metadata = args[:metadata] if args.key?(:metadata)
|
2268
2275
|
@requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
|
2269
2276
|
@status_message = args[:status_message] if args.key?(:status_message)
|
2270
2277
|
@target = args[:target] if args.key?(:target)
|
@@ -4283,6 +4290,12 @@ module Google
|
|
4283
4290
|
# @return [String]
|
4284
4291
|
attr_accessor :name
|
4285
4292
|
|
4293
|
+
# The PSC Interface configuration is used to create PSC Interface between DMS's
|
4294
|
+
# internal VPC and the consumer's PSC.
|
4295
|
+
# Corresponds to the JSON property `pscInterfaceConfig`
|
4296
|
+
# @return [Google::Apis::DatamigrationV1::PscInterfaceConfig]
|
4297
|
+
attr_accessor :psc_interface_config
|
4298
|
+
|
4286
4299
|
# Output only. Reserved for future use.
|
4287
4300
|
# Corresponds to the JSON property `satisfiesPzi`
|
4288
4301
|
# @return [Boolean]
|
@@ -4322,6 +4335,7 @@ module Google
|
|
4322
4335
|
@error = args[:error] if args.key?(:error)
|
4323
4336
|
@labels = args[:labels] if args.key?(:labels)
|
4324
4337
|
@name = args[:name] if args.key?(:name)
|
4338
|
+
@psc_interface_config = args[:psc_interface_config] if args.key?(:psc_interface_config)
|
4325
4339
|
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
4326
4340
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
4327
4341
|
@state = args[:state] if args.key?(:state)
|
@@ -4390,6 +4404,28 @@ module Google
|
|
4390
4404
|
end
|
4391
4405
|
end
|
4392
4406
|
|
4407
|
+
# The PSC Interface configuration is used to create PSC Interface between DMS's
|
4408
|
+
# internal VPC and the consumer's PSC.
|
4409
|
+
class PscInterfaceConfig
|
4410
|
+
include Google::Apis::Core::Hashable
|
4411
|
+
|
4412
|
+
# Required. Fully qualified name of the Network Attachment that DMS will connect
|
4413
|
+
# to. Format: `projects/``project``/regions/``region``/networkAttachments/``name`
|
4414
|
+
# ``
|
4415
|
+
# Corresponds to the JSON property `networkAttachment`
|
4416
|
+
# @return [String]
|
4417
|
+
attr_accessor :network_attachment
|
4418
|
+
|
4419
|
+
def initialize(**args)
|
4420
|
+
update!(**args)
|
4421
|
+
end
|
4422
|
+
|
4423
|
+
# Update properties of this object
|
4424
|
+
def update!(**args)
|
4425
|
+
@network_attachment = args[:network_attachment] if args.key?(:network_attachment)
|
4426
|
+
end
|
4427
|
+
end
|
4428
|
+
|
4393
4429
|
# Request message for 'RestartMigrationJob' request.
|
4394
4430
|
class RestartMigrationJobRequest
|
4395
4431
|
include Google::Apis::Core::Hashable
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.78.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250625"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -598,6 +598,12 @@ module Google
|
|
598
598
|
include Google::Apis::Core::JsonObjectSupport
|
599
599
|
end
|
600
600
|
|
601
|
+
class PscInterfaceConfig
|
602
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
603
|
+
|
604
|
+
include Google::Apis::Core::JsonObjectSupport
|
605
|
+
end
|
606
|
+
|
601
607
|
class RestartMigrationJobRequest
|
602
608
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
603
609
|
|
@@ -1495,6 +1501,7 @@ module Google
|
|
1495
1501
|
property :api_version, as: 'apiVersion'
|
1496
1502
|
property :create_time, as: 'createTime'
|
1497
1503
|
property :end_time, as: 'endTime'
|
1504
|
+
hash :metadata, as: 'metadata'
|
1498
1505
|
property :requested_cancellation, as: 'requestedCancellation'
|
1499
1506
|
property :status_message, as: 'statusMessage'
|
1500
1507
|
property :target, as: 'target'
|
@@ -2015,6 +2022,8 @@ module Google
|
|
2015
2022
|
|
2016
2023
|
hash :labels, as: 'labels'
|
2017
2024
|
property :name, as: 'name'
|
2025
|
+
property :psc_interface_config, as: 'pscInterfaceConfig', class: Google::Apis::DatamigrationV1::PscInterfaceConfig, decorator: Google::Apis::DatamigrationV1::PscInterfaceConfig::Representation
|
2026
|
+
|
2018
2027
|
property :satisfies_pzi, as: 'satisfiesPzi'
|
2019
2028
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
2020
2029
|
property :state, as: 'state'
|
@@ -2046,6 +2055,13 @@ module Google
|
|
2046
2055
|
end
|
2047
2056
|
end
|
2048
2057
|
|
2058
|
+
class PscInterfaceConfig
|
2059
|
+
# @private
|
2060
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2061
|
+
property :network_attachment, as: 'networkAttachment'
|
2062
|
+
end
|
2063
|
+
end
|
2064
|
+
|
2049
2065
|
class RestartMigrationJobRequest
|
2050
2066
|
# @private
|
2051
2067
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2411,6 +2411,9 @@ module Google
|
|
2411
2411
|
# maximum length is 40 characters.
|
2412
2412
|
# @param [Boolean] skip_validation
|
2413
2413
|
# Optional. If set to true, will skip validations.
|
2414
|
+
# @param [Boolean] validate_only
|
2415
|
+
# Optional. For PSC Interface only - get the tenant project before creating the
|
2416
|
+
# resource.
|
2414
2417
|
# @param [String] fields
|
2415
2418
|
# Selector specifying which fields to include in a partial response.
|
2416
2419
|
# @param [String] quota_user
|
@@ -2428,7 +2431,7 @@ module Google
|
|
2428
2431
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2429
2432
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2430
2433
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2431
|
-
def create_project_location_private_connection(parent, private_connection_object = nil, private_connection_id: nil, request_id: nil, skip_validation: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2434
|
+
def create_project_location_private_connection(parent, private_connection_object = nil, private_connection_id: nil, request_id: nil, skip_validation: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2432
2435
|
command = make_simple_command(:post, 'v1/{+parent}/privateConnections', options)
|
2433
2436
|
command.request_representation = Google::Apis::DatamigrationV1::PrivateConnection::Representation
|
2434
2437
|
command.request_object = private_connection_object
|
@@ -2438,6 +2441,7 @@ module Google
|
|
2438
2441
|
command.query['privateConnectionId'] = private_connection_id unless private_connection_id.nil?
|
2439
2442
|
command.query['requestId'] = request_id unless request_id.nil?
|
2440
2443
|
command.query['skipValidation'] = skip_validation unless skip_validation.nil?
|
2444
|
+
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
2441
2445
|
command.query['fields'] = fields unless fields.nil?
|
2442
2446
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2443
2447
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-datamigration_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.78.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datamigration_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.78.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datamigration_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|