google-apis-servicenetworking_v1 0.14.0 → 0.15.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 92cb0cdcc086c268330dc21b54a939fb2e47332b44c69cde610e5dea2581913f
|
4
|
+
data.tar.gz: 74f59a92f09d4f18972ddce325a3713941b30802fa5ca6740678f277c2bf7b83
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b59b4e2dccee984d63f9490fbcc82bb9f1c8c9ca3160755fe0225037f69d63f7afe53da18471670121e77f2d7d1fc4df6c2097d536ae72415e53a3c5ec5d53b8
|
7
|
+
data.tar.gz: 45c232d37b720fc4326c5833f6b3f37e9e76d4d68eabe662e0d2f2fa4abfad32fe240cfd3aa5368ac389006f0968d507d21c8b46078a7806f0d2c4452f8d39e6
|
data/CHANGELOG.md
CHANGED
@@ -246,6 +246,13 @@ module Google
|
|
246
246
|
# @return [Fixnum]
|
247
247
|
attr_accessor :ip_prefix_length
|
248
248
|
|
249
|
+
# Optional. Enable outside allocation using public IP addresses. Any public IP
|
250
|
+
# range may be specified. If this field is provided, we will not use customer
|
251
|
+
# reserved ranges for this primary IP range.
|
252
|
+
# Corresponds to the JSON property `outsideAllocationPublicIpRange`
|
253
|
+
# @return [String]
|
254
|
+
attr_accessor :outside_allocation_public_ip_range
|
255
|
+
|
249
256
|
# Optional. The private IPv6 google access type for the VMs in this subnet. For
|
250
257
|
# information about the access types that can be set using this field, see [
|
251
258
|
# subnetwork](https://cloud.google.com/compute/docs/reference/rest/v1/
|
@@ -307,6 +314,7 @@ module Google
|
|
307
314
|
@consumer_network = args[:consumer_network] if args.key?(:consumer_network)
|
308
315
|
@description = args[:description] if args.key?(:description)
|
309
316
|
@ip_prefix_length = args[:ip_prefix_length] if args.key?(:ip_prefix_length)
|
317
|
+
@outside_allocation_public_ip_range = args[:outside_allocation_public_ip_range] if args.key?(:outside_allocation_public_ip_range)
|
310
318
|
@private_ipv6_google_access = args[:private_ipv6_google_access] if args.key?(:private_ipv6_google_access)
|
311
319
|
@region = args[:region] if args.key?(:region)
|
312
320
|
@requested_address = args[:requested_address] if args.key?(:requested_address)
|
@@ -3430,6 +3438,13 @@ module Google
|
|
3430
3438
|
# @return [Fixnum]
|
3431
3439
|
attr_accessor :ip_prefix_length
|
3432
3440
|
|
3441
|
+
# Optional. Enable outside allocation using public IP addresses. Any public IP
|
3442
|
+
# range may be specified. If this field is provided, we will not use customer
|
3443
|
+
# reserved ranges for this secondary IP range.
|
3444
|
+
# Corresponds to the JSON property `outsideAllocationPublicIpRange`
|
3445
|
+
# @return [String]
|
3446
|
+
attr_accessor :outside_allocation_public_ip_range
|
3447
|
+
|
3433
3448
|
# Required. A name for the secondary IP range. The name must be 1-63 characters
|
3434
3449
|
# long, and comply with RFC1035. The name must be unique within the subnetwork.
|
3435
3450
|
# Corresponds to the JSON property `rangeName`
|
@@ -3452,6 +3467,7 @@ module Google
|
|
3452
3467
|
# Update properties of this object
|
3453
3468
|
def update!(**args)
|
3454
3469
|
@ip_prefix_length = args[:ip_prefix_length] if args.key?(:ip_prefix_length)
|
3470
|
+
@outside_allocation_public_ip_range = args[:outside_allocation_public_ip_range] if args.key?(:outside_allocation_public_ip_range)
|
3455
3471
|
@range_name = args[:range_name] if args.key?(:range_name)
|
3456
3472
|
@requested_address = args[:requested_address] if args.key?(:requested_address)
|
3457
3473
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ServicenetworkingV1
|
18
18
|
# Version of the google-apis-servicenetworking_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.15.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210924"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -705,6 +705,7 @@ module Google
|
|
705
705
|
property :consumer_network, as: 'consumerNetwork'
|
706
706
|
property :description, as: 'description'
|
707
707
|
property :ip_prefix_length, as: 'ipPrefixLength'
|
708
|
+
property :outside_allocation_public_ip_range, as: 'outsideAllocationPublicIpRange'
|
708
709
|
property :private_ipv6_google_access, as: 'privateIpv6GoogleAccess'
|
709
710
|
property :region, as: 'region'
|
710
711
|
property :requested_address, as: 'requestedAddress'
|
@@ -1441,6 +1442,7 @@ module Google
|
|
1441
1442
|
# @private
|
1442
1443
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1443
1444
|
property :ip_prefix_length, as: 'ipPrefixLength'
|
1445
|
+
property :outside_allocation_public_ip_range, as: 'outsideAllocationPublicIpRange'
|
1444
1446
|
property :range_name, as: 'rangeName'
|
1445
1447
|
property :requested_address, as: 'requestedAddress'
|
1446
1448
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-servicenetworking_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.15.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: 2021-
|
11
|
+
date: 2021-10-04 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/master/generated/google-apis-servicenetworking_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.15.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-servicenetworking_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|