google-apis-datamigration_v1 0.79.0 → 0.80.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: 7ae26866670dff350151269b9eb7e9bf18e8e7e8dd8bd0ca54aa414e905029b7
|
4
|
+
data.tar.gz: 89ea5096efeda03dc37131d52ea38312609c1b919a4a701b0961d73638268059
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f08b8228eb2908aa2d1dba13a944a9c3186cad31d827a3db4f69678b56984cd40f2d0cb28288d82c33e4edd9da894a28a84644bc5ea5080a0506a6daaf0beef
|
7
|
+
data.tar.gz: cecc84f4c108f209fbd805d543cd4a9cd65d1d0f1e6f6efa3527d320ae844141372bd629a98e1907a8b304741a56b968c7cc294662efd15e612445e5afb3c0ac
|
data/CHANGELOG.md
CHANGED
@@ -5326,11 +5326,22 @@ module Google
|
|
5326
5326
|
# @return [String]
|
5327
5327
|
attr_accessor :cloud_sql_id
|
5328
5328
|
|
5329
|
+
# Optional. The project id of the Cloud SQL instance. If not provided, the
|
5330
|
+
# project id of the connection profile will be used.
|
5331
|
+
# Corresponds to the JSON property `cloudSqlProjectId`
|
5332
|
+
# @return [String]
|
5333
|
+
attr_accessor :cloud_sql_project_id
|
5334
|
+
|
5329
5335
|
# Required. The name of the specific database within the host.
|
5330
5336
|
# Corresponds to the JSON property `database`
|
5331
5337
|
# @return [String]
|
5332
5338
|
attr_accessor :database
|
5333
5339
|
|
5340
|
+
# Optional. The Database Mirroring (DBM) port of the source SQL Server instance.
|
5341
|
+
# Corresponds to the JSON property `dbmPort`
|
5342
|
+
# @return [Fixnum]
|
5343
|
+
attr_accessor :dbm_port
|
5344
|
+
|
5334
5345
|
# Forward SSH Tunnel connectivity.
|
5335
5346
|
# Corresponds to the JSON property `forwardSshConnectivity`
|
5336
5347
|
# @return [Google::Apis::DatamigrationV1::ForwardSshTunnelConnectivity]
|
@@ -5398,7 +5409,9 @@ module Google
|
|
5398
5409
|
def update!(**args)
|
5399
5410
|
@backups = args[:backups] if args.key?(:backups)
|
5400
5411
|
@cloud_sql_id = args[:cloud_sql_id] if args.key?(:cloud_sql_id)
|
5412
|
+
@cloud_sql_project_id = args[:cloud_sql_project_id] if args.key?(:cloud_sql_project_id)
|
5401
5413
|
@database = args[:database] if args.key?(:database)
|
5414
|
+
@dbm_port = args[:dbm_port] if args.key?(:dbm_port)
|
5402
5415
|
@forward_ssh_connectivity = args[:forward_ssh_connectivity] if args.key?(:forward_ssh_connectivity)
|
5403
5416
|
@host = args[:host] if args.key?(:host)
|
5404
5417
|
@password = args[:password] if args.key?(:password)
|
@@ -5412,6 +5425,34 @@ module Google
|
|
5412
5425
|
end
|
5413
5426
|
end
|
5414
5427
|
|
5428
|
+
# Configuration for distributed availability group (DAG) for the SQL Server
|
5429
|
+
# homogeneous migration.
|
5430
|
+
class SqlServerDagConfig
|
5431
|
+
include Google::Apis::Core::Hashable
|
5432
|
+
|
5433
|
+
# Required. The name of the linked server that points to the source SQL Server
|
5434
|
+
# instance. Only used by DAG migrations.
|
5435
|
+
# Corresponds to the JSON property `linkedServer`
|
5436
|
+
# @return [String]
|
5437
|
+
attr_accessor :linked_server
|
5438
|
+
|
5439
|
+
# Required. The name of the source availability group. Only used by DAG
|
5440
|
+
# migrations.
|
5441
|
+
# Corresponds to the JSON property `sourceAg`
|
5442
|
+
# @return [String]
|
5443
|
+
attr_accessor :source_ag
|
5444
|
+
|
5445
|
+
def initialize(**args)
|
5446
|
+
update!(**args)
|
5447
|
+
end
|
5448
|
+
|
5449
|
+
# Update properties of this object
|
5450
|
+
def update!(**args)
|
5451
|
+
@linked_server = args[:linked_server] if args.key?(:linked_server)
|
5452
|
+
@source_ag = args[:source_ag] if args.key?(:source_ag)
|
5453
|
+
end
|
5454
|
+
end
|
5455
|
+
|
5415
5456
|
# Specifies the backup details for a single database in Cloud Storage for
|
5416
5457
|
# homogeneous migration to Cloud SQL for SQL Server.
|
5417
5458
|
class SqlServerDatabaseBackup
|
@@ -5491,6 +5532,12 @@ module Google
|
|
5491
5532
|
# @return [String]
|
5492
5533
|
attr_accessor :backup_file_pattern
|
5493
5534
|
|
5535
|
+
# Configuration for distributed availability group (DAG) for the SQL Server
|
5536
|
+
# homogeneous migration.
|
5537
|
+
# Corresponds to the JSON property `dagConfig`
|
5538
|
+
# @return [Google::Apis::DatamigrationV1::SqlServerDagConfig]
|
5539
|
+
attr_accessor :dag_config
|
5540
|
+
|
5494
5541
|
# Required. Backup details per database in Cloud Storage.
|
5495
5542
|
# Corresponds to the JSON property `databaseBackups`
|
5496
5543
|
# @return [Array<Google::Apis::DatamigrationV1::SqlServerDatabaseBackup>]
|
@@ -5515,6 +5562,7 @@ module Google
|
|
5515
5562
|
# Update properties of this object
|
5516
5563
|
def update!(**args)
|
5517
5564
|
@backup_file_pattern = args[:backup_file_pattern] if args.key?(:backup_file_pattern)
|
5565
|
+
@dag_config = args[:dag_config] if args.key?(:dag_config)
|
5518
5566
|
@database_backups = args[:database_backups] if args.key?(:database_backups)
|
5519
5567
|
@promote_when_ready = args[:promote_when_ready] if args.key?(:promote_when_ready)
|
5520
5568
|
@use_diff_backup = args[:use_diff_backup] if args.key?(:use_diff_backup)
|
@@ -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.80.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 = "20250826"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -766,6 +766,12 @@ module Google
|
|
766
766
|
include Google::Apis::Core::JsonObjectSupport
|
767
767
|
end
|
768
768
|
|
769
|
+
class SqlServerDagConfig
|
770
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
771
|
+
|
772
|
+
include Google::Apis::Core::JsonObjectSupport
|
773
|
+
end
|
774
|
+
|
769
775
|
class SqlServerDatabaseBackup
|
770
776
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
771
777
|
|
@@ -2311,7 +2317,9 @@ module Google
|
|
2311
2317
|
property :backups, as: 'backups', class: Google::Apis::DatamigrationV1::SqlServerBackups, decorator: Google::Apis::DatamigrationV1::SqlServerBackups::Representation
|
2312
2318
|
|
2313
2319
|
property :cloud_sql_id, as: 'cloudSqlId'
|
2320
|
+
property :cloud_sql_project_id, as: 'cloudSqlProjectId'
|
2314
2321
|
property :database, as: 'database'
|
2322
|
+
property :dbm_port, as: 'dbmPort'
|
2315
2323
|
property :forward_ssh_connectivity, as: 'forwardSshConnectivity', class: Google::Apis::DatamigrationV1::ForwardSshTunnelConnectivity, decorator: Google::Apis::DatamigrationV1::ForwardSshTunnelConnectivity::Representation
|
2316
2324
|
|
2317
2325
|
property :host, as: 'host'
|
@@ -2330,6 +2338,14 @@ module Google
|
|
2330
2338
|
end
|
2331
2339
|
end
|
2332
2340
|
|
2341
|
+
class SqlServerDagConfig
|
2342
|
+
# @private
|
2343
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2344
|
+
property :linked_server, as: 'linkedServer'
|
2345
|
+
property :source_ag, as: 'sourceAg'
|
2346
|
+
end
|
2347
|
+
end
|
2348
|
+
|
2333
2349
|
class SqlServerDatabaseBackup
|
2334
2350
|
# @private
|
2335
2351
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2352,6 +2368,8 @@ module Google
|
|
2352
2368
|
# @private
|
2353
2369
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2354
2370
|
property :backup_file_pattern, as: 'backupFilePattern'
|
2371
|
+
property :dag_config, as: 'dagConfig', class: Google::Apis::DatamigrationV1::SqlServerDagConfig, decorator: Google::Apis::DatamigrationV1::SqlServerDagConfig::Representation
|
2372
|
+
|
2355
2373
|
collection :database_backups, as: 'databaseBackups', class: Google::Apis::DatamigrationV1::SqlServerDatabaseBackup, decorator: Google::Apis::DatamigrationV1::SqlServerDatabaseBackup::Representation
|
2356
2374
|
|
2357
2375
|
property :promote_when_ready, as: 'promoteWhenReady'
|
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.80.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.80.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:
|