google-apis-datamigration_v1 0.85.0 → 0.86.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: 5c32d698658ab7598d574ab9a4cf14fc9887ba923dadc7d5ec89f110c4433d05
|
|
4
|
+
data.tar.gz: cb847bcce995a6fc32ca596201bf32331ebf33cb128f1fce78cc3d25c2ba8d5d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7f0de422147dd44340161d188356c6aed5212ee9c339967694cd286b41a3b5641c5f173893bfb5778f2c302c2721d3e2562493672f54eeb160721323bd217b14
|
|
7
|
+
data.tar.gz: a4c34906dbc5493d4c99cd3ee9d256d4ad4e6db89aa2be9df0b3eedf68986fc1f09b4080f4fdb79930e7c23cbab932ca7ae3453c3da34b6e1dc24be6e23ed489
|
data/CHANGELOG.md
CHANGED
|
@@ -4372,6 +4372,13 @@ module Google
|
|
|
4372
4372
|
# @return [String]
|
|
4373
4373
|
attr_accessor :database
|
|
4374
4374
|
|
|
4375
|
+
# Optional. If true, Database Migration Service will use IAM database
|
|
4376
|
+
# authentication to connect to the database.
|
|
4377
|
+
# Corresponds to the JSON property `enableIamAuthentication`
|
|
4378
|
+
# @return [Boolean]
|
|
4379
|
+
attr_accessor :enable_iam_authentication
|
|
4380
|
+
alias_method :enable_iam_authentication?, :enable_iam_authentication
|
|
4381
|
+
|
|
4375
4382
|
# Forward SSH Tunnel connectivity.
|
|
4376
4383
|
# Corresponds to the JSON property `forwardSshConnectivity`
|
|
4377
4384
|
# @return [Google::Apis::DatamigrationV1::ForwardSshTunnelConnectivity]
|
|
@@ -4446,6 +4453,7 @@ module Google
|
|
|
4446
4453
|
@alloydb_cluster_id = args[:alloydb_cluster_id] if args.key?(:alloydb_cluster_id)
|
|
4447
4454
|
@cloud_sql_id = args[:cloud_sql_id] if args.key?(:cloud_sql_id)
|
|
4448
4455
|
@database = args[:database] if args.key?(:database)
|
|
4456
|
+
@enable_iam_authentication = args[:enable_iam_authentication] if args.key?(:enable_iam_authentication)
|
|
4449
4457
|
@forward_ssh_connectivity = args[:forward_ssh_connectivity] if args.key?(:forward_ssh_connectivity)
|
|
4450
4458
|
@host = args[:host] if args.key?(:host)
|
|
4451
4459
|
@network_architecture = args[:network_architecture] if args.key?(:network_architecture)
|
|
@@ -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.86.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 = "20260320"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -2163,6 +2163,7 @@ module Google
|
|
|
2163
2163
|
property :alloydb_cluster_id, as: 'alloydbClusterId'
|
|
2164
2164
|
property :cloud_sql_id, as: 'cloudSqlId'
|
|
2165
2165
|
property :database, as: 'database'
|
|
2166
|
+
property :enable_iam_authentication, as: 'enableIamAuthentication'
|
|
2166
2167
|
property :forward_ssh_connectivity, as: 'forwardSshConnectivity', class: Google::Apis::DatamigrationV1::ForwardSshTunnelConnectivity, decorator: Google::Apis::DatamigrationV1::ForwardSshTunnelConnectivity::Representation
|
|
2167
2168
|
|
|
2168
2169
|
property :host, as: 'host'
|
|
@@ -120,10 +120,15 @@ module Google
|
|
|
120
120
|
end
|
|
121
121
|
|
|
122
122
|
# Lists information about the supported locations for this service. This method
|
|
123
|
-
#
|
|
124
|
-
#
|
|
125
|
-
#
|
|
126
|
-
#
|
|
123
|
+
# lists locations based on the resource scope provided in the [
|
|
124
|
+
# ListLocationsRequest.name] field: * **Global locations**: If `name` is empty,
|
|
125
|
+
# the method lists the public locations available to all projects. * **Project-
|
|
126
|
+
# specific locations**: If `name` follows the format `projects/`project``, the
|
|
127
|
+
# method lists locations visible to that specific project. This includes public,
|
|
128
|
+
# private, or other project-specific locations enabled for the project. For gRPC
|
|
129
|
+
# and client library implementations, the resource name is passed as the `name`
|
|
130
|
+
# field. For direct service calls, the resource name is incorporated into the
|
|
131
|
+
# request path based on the specific service implementation and version.
|
|
127
132
|
# @param [String] name
|
|
128
133
|
# The resource that owns the locations collection, if applicable.
|
|
129
134
|
# @param [Array<String>, String] extra_location_types
|
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.86.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.86.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:
|