google-apis-servicenetworking_v1 0.12.0 → 0.16.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 +4 -4
- data/CHANGELOG.md +16 -0
- data/lib/google/apis/servicenetworking_v1/classes.rb +43 -4
- data/lib/google/apis/servicenetworking_v1/gem_version.rb +2 -2
- data/lib/google/apis/servicenetworking_v1/representations.rb +4 -0
- data/lib/google/apis/servicenetworking_v1.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a58e4660fa843a8fd5db870cd9152a3f57ba6073aa484b10914d626675d4bdd
|
4
|
+
data.tar.gz: 55ba8144572c924eb8d55468e4df908e1fe8b5a307982ab826285d5fe589065c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d3b3c26e1bbd6c6931c3a502d272d88f26654367170b898d9b58a1f6669f705f9b869d14faee7a154cf3217523feacfff095bb8abb798f33e38d7369a359b64d
|
7
|
+
data.tar.gz: 623b45401d4b62bab611823bf16a753cf1eba8e9b27f33c6396b1594986f2ed2cb2bddad08bad1d37285241e082e8551fb213d812a8bd67c0abb4b05c88865ac
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Release history for google-apis-servicenetworking_v1
|
2
2
|
|
3
|
+
### v0.16.0 (2021-10-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20211008
|
6
|
+
|
7
|
+
### v0.15.0 (2021-09-28)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210924
|
10
|
+
|
11
|
+
### v0.14.0 (2021-09-01)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210813
|
14
|
+
|
15
|
+
### v0.13.0 (2021-08-05)
|
16
|
+
|
17
|
+
* Regenerated from discovery document revision 20210803
|
18
|
+
|
3
19
|
### v0.12.0 (2021-07-08)
|
4
20
|
|
5
21
|
* Regenerated from discovery document revision 20210706
|
@@ -246,6 +246,29 @@ 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
|
+
|
256
|
+
# Optional. The private IPv6 google access type for the VMs in this subnet. For
|
257
|
+
# information about the access types that can be set using this field, see [
|
258
|
+
# subnetwork](https://cloud.google.com/compute/docs/reference/rest/v1/
|
259
|
+
# subnetworks) in the Compute API documentation.
|
260
|
+
# Corresponds to the JSON property `privateIpv6GoogleAccess`
|
261
|
+
# @return [String]
|
262
|
+
attr_accessor :private_ipv6_google_access
|
263
|
+
|
264
|
+
# Optional. Defines the purpose field of the subnet, e.g. '
|
265
|
+
# PRIVATE_SERVICE_CONNECT'. For information about the purposes that can be set
|
266
|
+
# using this field, see [subnetwork](https://cloud.google.com/compute/docs/
|
267
|
+
# reference/rest/v1/subnetworks) in the Compute API documentation.
|
268
|
+
# Corresponds to the JSON property `purpose`
|
269
|
+
# @return [String]
|
270
|
+
attr_accessor :purpose
|
271
|
+
|
249
272
|
# Required. The name of a [region](/compute/docs/regions-zones) for the subnet,
|
250
273
|
# such `europe-west1`.
|
251
274
|
# Corresponds to the JSON property `region`
|
@@ -299,6 +322,9 @@ module Google
|
|
299
322
|
@consumer_network = args[:consumer_network] if args.key?(:consumer_network)
|
300
323
|
@description = args[:description] if args.key?(:description)
|
301
324
|
@ip_prefix_length = args[:ip_prefix_length] if args.key?(:ip_prefix_length)
|
325
|
+
@outside_allocation_public_ip_range = args[:outside_allocation_public_ip_range] if args.key?(:outside_allocation_public_ip_range)
|
326
|
+
@private_ipv6_google_access = args[:private_ipv6_google_access] if args.key?(:private_ipv6_google_access)
|
327
|
+
@purpose = args[:purpose] if args.key?(:purpose)
|
302
328
|
@region = args[:region] if args.key?(:region)
|
303
329
|
@requested_address = args[:requested_address] if args.key?(:requested_address)
|
304
330
|
@requested_ranges = args[:requested_ranges] if args.key?(:requested_ranges)
|
@@ -1358,8 +1384,9 @@ module Google
|
|
1358
1384
|
# @return [String]
|
1359
1385
|
attr_accessor :deprecation_description
|
1360
1386
|
|
1361
|
-
#
|
1362
|
-
#
|
1387
|
+
# Description of the selected proto element (e.g. a message, a method, a '
|
1388
|
+
# service' definition, or a field). Defaults to leading & trailing comments
|
1389
|
+
# taken from the proto source definition of the proto element.
|
1363
1390
|
# Corresponds to the JSON property `description`
|
1364
1391
|
# @return [String]
|
1365
1392
|
attr_accessor :description
|
@@ -2600,7 +2627,10 @@ module Google
|
|
2600
2627
|
attr_accessor :name
|
2601
2628
|
|
2602
2629
|
# Required. The monitored resource type. For example, the type `"
|
2603
|
-
# cloudsql_database"` represents databases in Google Cloud SQL.
|
2630
|
+
# cloudsql_database"` represents databases in Google Cloud SQL. For a list of
|
2631
|
+
# types, see [Monitoring resource types](https://cloud.google.com/monitoring/api/
|
2632
|
+
# resources) and [Logging resource types](https://cloud.google.com/logging/docs/
|
2633
|
+
# api/v2/resource-list).
|
2604
2634
|
# Corresponds to the JSON property `type`
|
2605
2635
|
# @return [String]
|
2606
2636
|
attr_accessor :type
|
@@ -2892,7 +2922,8 @@ module Google
|
|
2892
2922
|
class PeeredDnsDomain
|
2893
2923
|
include Google::Apis::Core::Hashable
|
2894
2924
|
|
2895
|
-
# The DNS domain name suffix e.g. `example.com.`.
|
2925
|
+
# The DNS domain name suffix e.g. `example.com.`. Cloud DNS requires that a DNS
|
2926
|
+
# suffix ends with a trailing dot.
|
2896
2927
|
# Corresponds to the JSON property `dnsSuffix`
|
2897
2928
|
# @return [String]
|
2898
2929
|
attr_accessor :dns_suffix
|
@@ -3416,6 +3447,13 @@ module Google
|
|
3416
3447
|
# @return [Fixnum]
|
3417
3448
|
attr_accessor :ip_prefix_length
|
3418
3449
|
|
3450
|
+
# Optional. Enable outside allocation using public IP addresses. Any public IP
|
3451
|
+
# range may be specified. If this field is provided, we will not use customer
|
3452
|
+
# reserved ranges for this secondary IP range.
|
3453
|
+
# Corresponds to the JSON property `outsideAllocationPublicIpRange`
|
3454
|
+
# @return [String]
|
3455
|
+
attr_accessor :outside_allocation_public_ip_range
|
3456
|
+
|
3419
3457
|
# Required. A name for the secondary IP range. The name must be 1-63 characters
|
3420
3458
|
# long, and comply with RFC1035. The name must be unique within the subnetwork.
|
3421
3459
|
# Corresponds to the JSON property `rangeName`
|
@@ -3438,6 +3476,7 @@ module Google
|
|
3438
3476
|
# Update properties of this object
|
3439
3477
|
def update!(**args)
|
3440
3478
|
@ip_prefix_length = args[:ip_prefix_length] if args.key?(:ip_prefix_length)
|
3479
|
+
@outside_allocation_public_ip_range = args[:outside_allocation_public_ip_range] if args.key?(:outside_allocation_public_ip_range)
|
3441
3480
|
@range_name = args[:range_name] if args.key?(:range_name)
|
3442
3481
|
@requested_address = args[:requested_address] if args.key?(:requested_address)
|
3443
3482
|
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.16.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 = "20211008"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -705,6 +705,9 @@ 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'
|
709
|
+
property :private_ipv6_google_access, as: 'privateIpv6GoogleAccess'
|
710
|
+
property :purpose, as: 'purpose'
|
708
711
|
property :region, as: 'region'
|
709
712
|
property :requested_address, as: 'requestedAddress'
|
710
713
|
collection :requested_ranges, as: 'requestedRanges'
|
@@ -1440,6 +1443,7 @@ module Google
|
|
1440
1443
|
# @private
|
1441
1444
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1442
1445
|
property :ip_prefix_length, as: 'ipPrefixLength'
|
1446
|
+
property :outside_allocation_public_ip_range, as: 'outsideAllocationPublicIpRange'
|
1443
1447
|
property :range_name, as: 'rangeName'
|
1444
1448
|
property :requested_address, as: 'requestedAddress'
|
1445
1449
|
end
|
@@ -30,7 +30,7 @@ module Google
|
|
30
30
|
# This is NOT the gem version.
|
31
31
|
VERSION = 'V1'
|
32
32
|
|
33
|
-
# See, edit, configure, and delete your Google Cloud
|
33
|
+
# See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
|
34
34
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
35
35
|
|
36
36
|
# Manage your Google API service configuration
|
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.16.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-18 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.16.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: []
|