google-apis-datamigration_v1 0.91.0 → 0.92.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: 58697135e8f02c4d0f15577d3ecd864d771564fba3c565bc8d73036c16c51e20
|
|
4
|
+
data.tar.gz: e76458bfde1055dd1bb29152664b3517c32155ae087e96a829b091196648e3aa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ea4b374a9e88635aaac0329997ca58c3dbc666e0ecda69a168964797192efbc6657b5c7565c37b7ccd5d073c956fda9ca1cce1ea037f5ba0fc35b45e59e2b16e
|
|
7
|
+
data.tar.gz: 91faa33386bcbe74788debc32d530f06d5f0b356c262d7cd95ef184c0dd4cc3ac0b690a302406cd5de10ad37cc9330e038005caa0dc6b2090356e2f4bda9bddb
|
data/CHANGELOG.md
CHANGED
|
@@ -4761,6 +4761,11 @@ module Google
|
|
|
4761
4761
|
# @return [Google::Apis::DatamigrationV1::PscInterfaceConfig]
|
|
4762
4762
|
attr_accessor :psc_interface_config
|
|
4763
4763
|
|
|
4764
|
+
# Reserved Public IP configuration.
|
|
4765
|
+
# Corresponds to the JSON property `reservedPublicIpConfig`
|
|
4766
|
+
# @return [Google::Apis::DatamigrationV1::ReservedPublicIpConfig]
|
|
4767
|
+
attr_accessor :reserved_public_ip_config
|
|
4768
|
+
|
|
4764
4769
|
# Output only. Reserved for future use.
|
|
4765
4770
|
# Corresponds to the JSON property `satisfiesPzi`
|
|
4766
4771
|
# @return [Boolean]
|
|
@@ -4801,6 +4806,7 @@ module Google
|
|
|
4801
4806
|
@labels = args[:labels] if args.key?(:labels)
|
|
4802
4807
|
@name = args[:name] if args.key?(:name)
|
|
4803
4808
|
@psc_interface_config = args[:psc_interface_config] if args.key?(:psc_interface_config)
|
|
4809
|
+
@reserved_public_ip_config = args[:reserved_public_ip_config] if args.key?(:reserved_public_ip_config)
|
|
4804
4810
|
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
|
4805
4811
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
|
4806
4812
|
@state = args[:state] if args.key?(:state)
|
|
@@ -5040,6 +5046,31 @@ module Google
|
|
|
5040
5046
|
end
|
|
5041
5047
|
end
|
|
5042
5048
|
|
|
5049
|
+
# Reserved Public IP configuration.
|
|
5050
|
+
class ReservedPublicIpConfig
|
|
5051
|
+
include Google::Apis::Core::Hashable
|
|
5052
|
+
|
|
5053
|
+
# Output only. The reserved public IPs.
|
|
5054
|
+
# Corresponds to the JSON property `egressPublicIps`
|
|
5055
|
+
# @return [Array<String>]
|
|
5056
|
+
attr_accessor :egress_public_ips
|
|
5057
|
+
|
|
5058
|
+
# Optional. Number of static public IP addresses to reserve.
|
|
5059
|
+
# Corresponds to the JSON property `natIpsCount`
|
|
5060
|
+
# @return [Fixnum]
|
|
5061
|
+
attr_accessor :nat_ips_count
|
|
5062
|
+
|
|
5063
|
+
def initialize(**args)
|
|
5064
|
+
update!(**args)
|
|
5065
|
+
end
|
|
5066
|
+
|
|
5067
|
+
# Update properties of this object
|
|
5068
|
+
def update!(**args)
|
|
5069
|
+
@egress_public_ips = args[:egress_public_ips] if args.key?(:egress_public_ips)
|
|
5070
|
+
@nat_ips_count = args[:nat_ips_count] if args.key?(:nat_ips_count)
|
|
5071
|
+
end
|
|
5072
|
+
end
|
|
5073
|
+
|
|
5043
5074
|
# Describes the resource that is being accessed.
|
|
5044
5075
|
class ResourceInfo
|
|
5045
5076
|
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.92.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260802"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -706,6 +706,12 @@ module Google
|
|
|
706
706
|
include Google::Apis::Core::JsonObjectSupport
|
|
707
707
|
end
|
|
708
708
|
|
|
709
|
+
class ReservedPublicIpConfig
|
|
710
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
711
|
+
|
|
712
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
713
|
+
end
|
|
714
|
+
|
|
709
715
|
class ResourceInfo
|
|
710
716
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
711
717
|
|
|
@@ -2282,6 +2288,8 @@ module Google
|
|
|
2282
2288
|
property :name, as: 'name'
|
|
2283
2289
|
property :psc_interface_config, as: 'pscInterfaceConfig', class: Google::Apis::DatamigrationV1::PscInterfaceConfig, decorator: Google::Apis::DatamigrationV1::PscInterfaceConfig::Representation
|
|
2284
2290
|
|
|
2291
|
+
property :reserved_public_ip_config, as: 'reservedPublicIpConfig', class: Google::Apis::DatamigrationV1::ReservedPublicIpConfig, decorator: Google::Apis::DatamigrationV1::ReservedPublicIpConfig::Representation
|
|
2292
|
+
|
|
2285
2293
|
property :satisfies_pzi, as: 'satisfiesPzi'
|
|
2286
2294
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
|
2287
2295
|
property :state, as: 'state'
|
|
@@ -2350,6 +2358,14 @@ module Google
|
|
|
2350
2358
|
end
|
|
2351
2359
|
end
|
|
2352
2360
|
|
|
2361
|
+
class ReservedPublicIpConfig
|
|
2362
|
+
# @private
|
|
2363
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2364
|
+
collection :egress_public_ips, as: 'egressPublicIps'
|
|
2365
|
+
property :nat_ips_count, as: 'natIpsCount'
|
|
2366
|
+
end
|
|
2367
|
+
end
|
|
2368
|
+
|
|
2353
2369
|
class ResourceInfo
|
|
2354
2370
|
# @private
|
|
2355
2371
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -56,6 +56,10 @@ module Google
|
|
|
56
56
|
# @param [String] name
|
|
57
57
|
# Required. The resource name for the location for which static IPs should be
|
|
58
58
|
# returned. Must be in the format `projects/*/locations/*`.
|
|
59
|
+
# @param [Boolean] fetch_reserved_public_ips
|
|
60
|
+
# Optional. Indicates whether to fetch the reserved public IP addresses
|
|
61
|
+
# allocated for private connections in this location. If false or not set,
|
|
62
|
+
# fetches the shared external static IP addresses instead.
|
|
59
63
|
# @param [Fixnum] page_size
|
|
60
64
|
# Optional. Maximum number of IPs to return.
|
|
61
65
|
# @param [String] page_token
|
|
@@ -77,11 +81,12 @@ module Google
|
|
|
77
81
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
78
82
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
79
83
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
80
|
-
def fetch_project_location_static_ips(name, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
84
|
+
def fetch_project_location_static_ips(name, fetch_reserved_public_ips: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
81
85
|
command = make_simple_command(:get, 'v1/{+name}:fetchStaticIps', options)
|
|
82
86
|
command.response_representation = Google::Apis::DatamigrationV1::FetchStaticIpsResponse::Representation
|
|
83
87
|
command.response_class = Google::Apis::DatamigrationV1::FetchStaticIpsResponse
|
|
84
88
|
command.params['name'] = name unless name.nil?
|
|
89
|
+
command.query['fetchReservedPublicIps'] = fetch_reserved_public_ips unless fetch_reserved_public_ips.nil?
|
|
85
90
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
86
91
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
87
92
|
command.query['fields'] = fields unless fields.nil?
|
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.92.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.92.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:
|