google-apis-servicenetworking_v1 0.13.0 → 0.17.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: 18aebaf97f33e9df8cafa92ec987999169275a1d6044536654fafef0066e9107
4
- data.tar.gz: 71f9310915563d668969a9011e895acf6c7030ece17ecc6c16790c4f559698de
3
+ metadata.gz: 4e3f7be32644c2ef9c6a370259533ad8984b153c9b1f690e4023b3a6e6f1ff91
4
+ data.tar.gz: a2b0cc5168b13d906c3c72f01e2440dca9b7398aaa979c2395927cb07e31d5cf
5
5
  SHA512:
6
- metadata.gz: f36587cdf033b7384a7551bb981637ee185a07ab15d0598da01f6eaa9ad2297275917ced11da9f359b17956d7c8ac0029a7253fecfc28fbbebfb17a481f1a568
7
- data.tar.gz: 36f92bcf8aaff039d226076daf9499f6499bc2083558ddf9acb66fad19b14e100447a093921866c22209d4ff0e444eb909a44b873aaf7dafbb4413fd47ede599
6
+ metadata.gz: 0f61f47154521917d3bbf6d1e9acbe61311d8bd6a131ab09fef00fe416cb9c47082f837ea38c0147f6ab20163708ec07483249f62978b8efa3b6ab27a1a07a4a
7
+ data.tar.gz: 0454b09cf2d9359a882f813cd6445822ddc3d23b5fcbf895d66c5c72a95d59f50516e7e47af74e420c2290447e6ce92d480758adadfa3878e9670bd95a1515b8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-servicenetworking_v1
2
2
 
3
+ ### v0.17.0 (2021-10-20)
4
+
5
+ * Unspecified changes
6
+
7
+ ### v0.16.0 (2021-10-12)
8
+
9
+ * Regenerated from discovery document revision 20211008
10
+
11
+ ### v0.15.0 (2021-09-28)
12
+
13
+ * Regenerated from discovery document revision 20210924
14
+
15
+ ### v0.14.0 (2021-09-01)
16
+
17
+ * Regenerated from discovery document revision 20210813
18
+
3
19
  ### v0.13.0 (2021-08-05)
4
20
 
5
21
  * Regenerated from discovery document revision 20210803
data/OVERVIEW.md CHANGED
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
60
60
 
61
61
  More detailed descriptions of the Google simple REST clients are available in two documents.
62
62
 
63
- * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
- * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
63
+ * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
+ * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Servicenetworking service in particular.)
67
67
 
@@ -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)
@@ -2896,7 +2922,8 @@ module Google
2896
2922
  class PeeredDnsDomain
2897
2923
  include Google::Apis::Core::Hashable
2898
2924
 
2899
- # 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.
2900
2927
  # Corresponds to the JSON property `dnsSuffix`
2901
2928
  # @return [String]
2902
2929
  attr_accessor :dns_suffix
@@ -3420,6 +3447,13 @@ module Google
3420
3447
  # @return [Fixnum]
3421
3448
  attr_accessor :ip_prefix_length
3422
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
+
3423
3457
  # Required. A name for the secondary IP range. The name must be 1-63 characters
3424
3458
  # long, and comply with RFC1035. The name must be unique within the subnetwork.
3425
3459
  # Corresponds to the JSON property `rangeName`
@@ -3442,6 +3476,7 @@ module Google
3442
3476
  # Update properties of this object
3443
3477
  def update!(**args)
3444
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)
3445
3480
  @range_name = args[:range_name] if args.key?(:range_name)
3446
3481
  @requested_address = args[:requested_address] if args.key?(:requested_address)
3447
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.13.0"
19
+ GEM_VERSION = "0.17.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 = "20210803"
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 Platform data
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.13.0
4
+ version: 0.17.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-08-09 00:00:00.000000000 Z
11
+ date: 2021-10-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -57,9 +57,9 @@ licenses:
57
57
  - Apache-2.0
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
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.13.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-servicenetworking_v1
60
+ changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicenetworking_v1/CHANGELOG.md
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.17.0
62
+ source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicenetworking_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
65
65
  require_paths: