google-apis-datamigration_v1 0.60.0 → 0.61.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: 5d4ad13fc85946bd168e0a6858df48c4773d2aa22b56b814f03556be76e1ebad
|
4
|
+
data.tar.gz: 17d25f55e733d94386167454cc577282b7324c7507a38e902ff99d2e9f25300e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f8cec0974ef69b35a5d3ae2b6739a94097b2a0cb08d924dbfa95ddfb71cd131a20c781fceb3d9ad4738ef5c42f029a2a613518078aa6dfdaaf8e278341ac16f0
|
7
|
+
data.tar.gz: dc8c0a2b60260578a64482db487a550388c9955db638df8dd21788edb530d4d0493db7dae4674527b97667ce1d92168e9eac880a3701e3351defef13a9a81151
|
data/CHANGELOG.md
CHANGED
@@ -286,6 +286,25 @@ module Google
|
|
286
286
|
end
|
287
287
|
end
|
288
288
|
|
289
|
+
# AuthorizedNetwork contains metadata for an authorized network.
|
290
|
+
class AuthorizedNetwork
|
291
|
+
include Google::Apis::Core::Hashable
|
292
|
+
|
293
|
+
# Optional. CIDR range for one authorzied network of the instance.
|
294
|
+
# Corresponds to the JSON property `cidrRange`
|
295
|
+
# @return [String]
|
296
|
+
attr_accessor :cidr_range
|
297
|
+
|
298
|
+
def initialize(**args)
|
299
|
+
update!(**args)
|
300
|
+
end
|
301
|
+
|
302
|
+
# Update properties of this object
|
303
|
+
def update!(**args)
|
304
|
+
@cidr_range = args[:cidr_range] if args.key?(:cidr_range)
|
305
|
+
end
|
306
|
+
end
|
307
|
+
|
289
308
|
# Execution log of a background job.
|
290
309
|
class BackgroundJobLogEntry
|
291
310
|
include Google::Apis::Core::Hashable
|
@@ -597,11 +616,17 @@ module Google
|
|
597
616
|
# @return [Hash<String,String>]
|
598
617
|
attr_accessor :database_flags
|
599
618
|
|
600
|
-
# The database engine type and version.
|
619
|
+
# The database engine type and version. Deprecated. Use database_version_name
|
620
|
+
# instead.
|
601
621
|
# Corresponds to the JSON property `databaseVersion`
|
602
622
|
# @return [String]
|
603
623
|
attr_accessor :database_version
|
604
624
|
|
625
|
+
# Optional. The database engine type and version name.
|
626
|
+
# Corresponds to the JSON property `databaseVersionName`
|
627
|
+
# @return [String]
|
628
|
+
attr_accessor :database_version_name
|
629
|
+
|
605
630
|
# Optional. The edition of the given Cloud SQL instance.
|
606
631
|
# Corresponds to the JSON property `edition`
|
607
632
|
# @return [String]
|
@@ -681,6 +706,7 @@ module Google
|
|
681
706
|
@data_disk_type = args[:data_disk_type] if args.key?(:data_disk_type)
|
682
707
|
@database_flags = args[:database_flags] if args.key?(:database_flags)
|
683
708
|
@database_version = args[:database_version] if args.key?(:database_version)
|
709
|
+
@database_version_name = args[:database_version_name] if args.key?(:database_version_name)
|
684
710
|
@edition = args[:edition] if args.key?(:edition)
|
685
711
|
@ip_config = args[:ip_config] if args.key?(:ip_config)
|
686
712
|
@root_password = args[:root_password] if args.key?(:root_password)
|
@@ -2268,6 +2294,40 @@ module Google
|
|
2268
2294
|
end
|
2269
2295
|
end
|
2270
2296
|
|
2297
|
+
# Metadata related to instance level network configuration.
|
2298
|
+
class InstanceNetworkConfig
|
2299
|
+
include Google::Apis::Core::Hashable
|
2300
|
+
|
2301
|
+
# Optional. A list of external network authorized to access this instance.
|
2302
|
+
# Corresponds to the JSON property `authorizedExternalNetworks`
|
2303
|
+
# @return [Array<Google::Apis::DatamigrationV1::AuthorizedNetwork>]
|
2304
|
+
attr_accessor :authorized_external_networks
|
2305
|
+
|
2306
|
+
# Optional. Enabling an outbound public IP address to support a database server
|
2307
|
+
# sending requests out into the internet.
|
2308
|
+
# Corresponds to the JSON property `enableOutboundPublicIp`
|
2309
|
+
# @return [Boolean]
|
2310
|
+
attr_accessor :enable_outbound_public_ip
|
2311
|
+
alias_method :enable_outbound_public_ip?, :enable_outbound_public_ip
|
2312
|
+
|
2313
|
+
# Optional. Enabling public ip for the instance.
|
2314
|
+
# Corresponds to the JSON property `enablePublicIp`
|
2315
|
+
# @return [Boolean]
|
2316
|
+
attr_accessor :enable_public_ip
|
2317
|
+
alias_method :enable_public_ip?, :enable_public_ip
|
2318
|
+
|
2319
|
+
def initialize(**args)
|
2320
|
+
update!(**args)
|
2321
|
+
end
|
2322
|
+
|
2323
|
+
# Update properties of this object
|
2324
|
+
def update!(**args)
|
2325
|
+
@authorized_external_networks = args[:authorized_external_networks] if args.key?(:authorized_external_networks)
|
2326
|
+
@enable_outbound_public_ip = args[:enable_outbound_public_ip] if args.key?(:enable_outbound_public_ip)
|
2327
|
+
@enable_public_ip = args[:enable_public_ip] if args.key?(:enable_public_ip)
|
2328
|
+
end
|
2329
|
+
end
|
2330
|
+
|
2271
2331
|
# Filter based on relation between source value and compare value of type
|
2272
2332
|
# integer in ConditionalColumnSetValue
|
2273
2333
|
class IntComparisonFilter
|
@@ -3717,6 +3777,11 @@ module Google
|
|
3717
3777
|
# @return [String]
|
3718
3778
|
attr_accessor :id
|
3719
3779
|
|
3780
|
+
# Metadata related to instance level network configuration.
|
3781
|
+
# Corresponds to the JSON property `instanceNetworkConfig`
|
3782
|
+
# @return [Google::Apis::DatamigrationV1::InstanceNetworkConfig]
|
3783
|
+
attr_accessor :instance_network_config
|
3784
|
+
|
3720
3785
|
# Labels for the AlloyDB primary instance created by DMS. An object containing a
|
3721
3786
|
# list of 'key', 'value' pairs.
|
3722
3787
|
# Corresponds to the JSON property `labels`
|
@@ -3728,6 +3793,11 @@ module Google
|
|
3728
3793
|
# @return [Google::Apis::DatamigrationV1::MachineConfig]
|
3729
3794
|
attr_accessor :machine_config
|
3730
3795
|
|
3796
|
+
# Output only. All outbound public IP addresses configured for the instance.
|
3797
|
+
# Corresponds to the JSON property `outboundPublicIpAddresses`
|
3798
|
+
# @return [Array<String>]
|
3799
|
+
attr_accessor :outbound_public_ip_addresses
|
3800
|
+
|
3731
3801
|
# Output only. The private IP address for the Instance. This is the connection
|
3732
3802
|
# endpoint for an end-user application.
|
3733
3803
|
# Corresponds to the JSON property `privateIp`
|
@@ -3742,8 +3812,10 @@ module Google
|
|
3742
3812
|
def update!(**args)
|
3743
3813
|
@database_flags = args[:database_flags] if args.key?(:database_flags)
|
3744
3814
|
@id = args[:id] if args.key?(:id)
|
3815
|
+
@instance_network_config = args[:instance_network_config] if args.key?(:instance_network_config)
|
3745
3816
|
@labels = args[:labels] if args.key?(:labels)
|
3746
3817
|
@machine_config = args[:machine_config] if args.key?(:machine_config)
|
3818
|
+
@outbound_public_ip_addresses = args[:outbound_public_ip_addresses] if args.key?(:outbound_public_ip_addresses)
|
3747
3819
|
@private_ip = args[:private_ip] if args.key?(:private_ip)
|
3748
3820
|
end
|
3749
3821
|
end
|
@@ -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.61.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240914"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -70,6 +70,12 @@ module Google
|
|
70
70
|
include Google::Apis::Core::JsonObjectSupport
|
71
71
|
end
|
72
72
|
|
73
|
+
class AuthorizedNetwork
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
|
+
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
77
|
+
end
|
78
|
+
|
73
79
|
class BackgroundJobLogEntry
|
74
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
81
|
|
@@ -334,6 +340,12 @@ module Google
|
|
334
340
|
include Google::Apis::Core::JsonObjectSupport
|
335
341
|
end
|
336
342
|
|
343
|
+
class InstanceNetworkConfig
|
344
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
345
|
+
|
346
|
+
include Google::Apis::Core::JsonObjectSupport
|
347
|
+
end
|
348
|
+
|
337
349
|
class IntComparisonFilter
|
338
350
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
351
|
|
@@ -894,6 +906,13 @@ module Google
|
|
894
906
|
end
|
895
907
|
end
|
896
908
|
|
909
|
+
class AuthorizedNetwork
|
910
|
+
# @private
|
911
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
912
|
+
property :cidr_range, as: 'cidrRange'
|
913
|
+
end
|
914
|
+
end
|
915
|
+
|
897
916
|
class BackgroundJobLogEntry
|
898
917
|
# @private
|
899
918
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -957,6 +976,7 @@ module Google
|
|
957
976
|
property :data_disk_type, as: 'dataDiskType'
|
958
977
|
hash :database_flags, as: 'databaseFlags'
|
959
978
|
property :database_version, as: 'databaseVersion'
|
979
|
+
property :database_version_name, as: 'databaseVersionName'
|
960
980
|
property :edition, as: 'edition'
|
961
981
|
property :ip_config, as: 'ipConfig', class: Google::Apis::DatamigrationV1::SqlIpConfig, decorator: Google::Apis::DatamigrationV1::SqlIpConfig::Representation
|
962
982
|
|
@@ -1396,6 +1416,16 @@ module Google
|
|
1396
1416
|
end
|
1397
1417
|
end
|
1398
1418
|
|
1419
|
+
class InstanceNetworkConfig
|
1420
|
+
# @private
|
1421
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1422
|
+
collection :authorized_external_networks, as: 'authorizedExternalNetworks', class: Google::Apis::DatamigrationV1::AuthorizedNetwork, decorator: Google::Apis::DatamigrationV1::AuthorizedNetwork::Representation
|
1423
|
+
|
1424
|
+
property :enable_outbound_public_ip, as: 'enableOutboundPublicIp'
|
1425
|
+
property :enable_public_ip, as: 'enablePublicIp'
|
1426
|
+
end
|
1427
|
+
end
|
1428
|
+
|
1399
1429
|
class IntComparisonFilter
|
1400
1430
|
# @private
|
1401
1431
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1746,9 +1776,12 @@ module Google
|
|
1746
1776
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1747
1777
|
hash :database_flags, as: 'databaseFlags'
|
1748
1778
|
property :id, as: 'id'
|
1779
|
+
property :instance_network_config, as: 'instanceNetworkConfig', class: Google::Apis::DatamigrationV1::InstanceNetworkConfig, decorator: Google::Apis::DatamigrationV1::InstanceNetworkConfig::Representation
|
1780
|
+
|
1749
1781
|
hash :labels, as: 'labels'
|
1750
1782
|
property :machine_config, as: 'machineConfig', class: Google::Apis::DatamigrationV1::MachineConfig, decorator: Google::Apis::DatamigrationV1::MachineConfig::Representation
|
1751
1783
|
|
1784
|
+
collection :outbound_public_ip_addresses, as: 'outboundPublicIpAddresses'
|
1752
1785
|
property :private_ip, as: 'privateIp'
|
1753
1786
|
end
|
1754
1787
|
end
|
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.
|
4
|
+
version: 0.61.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: 2024-
|
11
|
+
date: 2024-09-22 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.61.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: []
|