google-apis-datamigration_v1 0.34.0 → 0.35.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: 4e0016d0474e874ede9d0c20859668bfea3e66069b6a4ae5b540dd4d9fd54767
|
|
4
|
+
data.tar.gz: c20dcebd4e0515317befc2ff30d1f44c1f6ed23de0bc16c16ed9154f1817905b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: edecc1fb13ceae61cdd59cc5c950acd25e1c8729f01f65e73369a5d9574079b067cc6ef7aa5a86f629e6669ab1457e7ca75f6ebb2c8d4ebc6edaf34cc725b0fc
|
|
7
|
+
data.tar.gz: be419e2e419f699e8198fa49d8603b53374fce895a59e0d4c64f492adedeb919f864bf1c2ea4b67c7e8934522bbff0154037db651313b7b5b7e48bd980a5cdea
|
data/CHANGELOG.md
CHANGED
|
@@ -1940,7 +1940,7 @@ module Google
|
|
|
1940
1940
|
end
|
|
1941
1941
|
end
|
|
1942
1942
|
|
|
1943
|
-
# A resource that represents Google Cloud
|
|
1943
|
+
# A resource that represents a Google Cloud location.
|
|
1944
1944
|
class Location
|
|
1945
1945
|
include Google::Apis::Core::Hashable
|
|
1946
1946
|
|
|
@@ -3152,6 +3152,16 @@ module Google
|
|
|
3152
3152
|
class SqlIpConfig
|
|
3153
3153
|
include Google::Apis::Core::Hashable
|
|
3154
3154
|
|
|
3155
|
+
# Optional. The name of the allocated IP address range for the private IP Cloud
|
|
3156
|
+
# SQL instance. This name refers to an already allocated IP range address. If
|
|
3157
|
+
# set, the instance IP address will be created in the allocated range. Note that
|
|
3158
|
+
# this IP address range can't be modified after the instance is created. If you
|
|
3159
|
+
# change the VPC when configuring connectivity settings for the migration job,
|
|
3160
|
+
# this field is not relevant.
|
|
3161
|
+
# Corresponds to the JSON property `allocatedIpRange`
|
|
3162
|
+
# @return [String]
|
|
3163
|
+
attr_accessor :allocated_ip_range
|
|
3164
|
+
|
|
3155
3165
|
# The list of external networks that are allowed to connect to the instance
|
|
3156
3166
|
# using the IP. See https://en.wikipedia.org/wiki/CIDR_notation#CIDR_notation,
|
|
3157
3167
|
# also known as 'slash' notation (e.g. `192.168.100.0/24`).
|
|
@@ -3185,6 +3195,7 @@ module Google
|
|
|
3185
3195
|
|
|
3186
3196
|
# Update properties of this object
|
|
3187
3197
|
def update!(**args)
|
|
3198
|
+
@allocated_ip_range = args[:allocated_ip_range] if args.key?(:allocated_ip_range)
|
|
3188
3199
|
@authorized_networks = args[:authorized_networks] if args.key?(:authorized_networks)
|
|
3189
3200
|
@enable_ipv4 = args[:enable_ipv4] if args.key?(:enable_ipv4)
|
|
3190
3201
|
@private_network = args[:private_network] if args.key?(:private_network)
|
|
@@ -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.35.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 = "
|
|
25
|
+
REVISION = "20230420"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1377,6 +1377,7 @@ module Google
|
|
|
1377
1377
|
class SqlIpConfig
|
|
1378
1378
|
# @private
|
|
1379
1379
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1380
|
+
property :allocated_ip_range, as: 'allocatedIpRange'
|
|
1380
1381
|
collection :authorized_networks, as: 'authorizedNetworks', class: Google::Apis::DatamigrationV1::SqlAclEntry, decorator: Google::Apis::DatamigrationV1::SqlAclEntry::Representation
|
|
1381
1382
|
|
|
1382
1383
|
property :enable_ipv4, as: 'enableIpv4'
|
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.35.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-04-
|
|
11
|
+
date: 2023-04-30 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.35.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: []
|