google-apis-networkservices_v1 0.26.0 → 0.27.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: c534c4ae711a5026098aa7b8bf8a410801ca2cdaa7c132bf638ea697dc73eeeb
4
- data.tar.gz: 0f5b8b3dadda75259f4dceb63b7fdbb6d281984a87f09b0ce14acf59fb8f5d5a
3
+ metadata.gz: 421c13be5eb68184a213607adc7a8805c5dc8fde8c9d58e084362544f84baf4c
4
+ data.tar.gz: 4a82492ba366b794329e042a123c0687b6f062ffde31ec412fa9e82efdf6e75b
5
5
  SHA512:
6
- metadata.gz: afa0fa2c21418cadb162e6c220acc73703edd2c024444c9aaa4d9c3b8e976db23baf8947c1b4a5b079d56ac3a687b96cd8b2615b8500cb32b90331807c1dea66
7
- data.tar.gz: 24dc61f8ff0455f2882f5f27799810458b93b9aaf731c56ebfea7ce3bacc868ab51c4fc3a6b471a657d9b5d685f76776227536245dab7995b3465797fd772453
6
+ metadata.gz: a84843fbb2450cf06ddbd7fba3580aa1fe40002180c37a70b4ebe3e7508a200d65ca0843eb64c3c6f5269bdcde5d1f7223c7f848aba28765e3adc32146fa2945
7
+ data.tar.gz: cd5fafdb8ccef51e56267cd529421031b4740a1f1842c8142ed2f84475f54c72f4fc14891f18a627a2117a670e8c4a8ab476dec690959efdb6279e848b25a4f8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-networkservices_v1
2
2
 
3
+ ### v0.27.0 (2023-06-25)
4
+
5
+ * Regenerated from discovery document revision 20230619
6
+
3
7
  ### v0.26.0 (2023-05-28)
4
8
 
5
9
  * Regenerated from discovery document revision 20230510
@@ -441,10 +441,10 @@ module Google
441
441
  class Gateway
442
442
  include Google::Apis::Core::Hashable
443
443
 
444
- # Optional. Zero or one IPv4-address on which the Gateway will receive the
445
- # traffic. When no address is provided, an IP from the subnetwork is allocated
446
- # This field only applies to gateways of type 'SECURE_WEB_GATEWAY'. Gateways of
447
- # type 'OPEN_MESH' listen on 0.0.0.0.
444
+ # Optional. Zero or one IPv4 or IPv6 address on which the Gateway will receive
445
+ # the traffic. When no address is provided, an IP from the subnetwork is
446
+ # allocated This field only applies to gateways of type 'SECURE_WEB_GATEWAY'.
447
+ # Gateways of type 'OPEN_MESH' listen on 0.0.0.0 for IPv4 and :: for IPv6.
448
448
  # Corresponds to the JSON property `addresses`
449
449
  # @return [Array<String>]
450
450
  attr_accessor :addresses
@@ -495,7 +495,7 @@ module Google
495
495
  # Required. One or more port numbers (1-65535), on which the Gateway will
496
496
  # receive traffic. The proxy binds to the specified ports. Gateways of type '
497
497
  # SECURE_WEB_GATEWAY' are limited to 1 port. Gateways of type 'OPEN_MESH' listen
498
- # on 0.0.0.0 and support multiple ports.
498
+ # on 0.0.0.0 for IPv4 and :: for IPv6 and support multiple ports.
499
499
  # Corresponds to the JSON property `ports`
500
500
  # @return [Array<Fixnum>]
501
501
  attr_accessor :ports
@@ -2418,6 +2418,14 @@ module Google
2418
2418
  # @return [String]
2419
2419
  attr_accessor :service
2420
2420
 
2421
+ # Output only. The unique identifier of the Service Directory Service against
2422
+ # which the Service Binding resource is validated. This is populated when the
2423
+ # Service Binding resource is used in another resource (like Backend Service).
2424
+ # This is of the UUID4 format.
2425
+ # Corresponds to the JSON property `serviceId`
2426
+ # @return [String]
2427
+ attr_accessor :service_id
2428
+
2421
2429
  # Output only. The timestamp when the resource was updated.
2422
2430
  # Corresponds to the JSON property `updateTime`
2423
2431
  # @return [String]
@@ -2434,6 +2442,7 @@ module Google
2434
2442
  @labels = args[:labels] if args.key?(:labels)
2435
2443
  @name = args[:name] if args.key?(:name)
2436
2444
  @service = args[:service] if args.key?(:service)
2445
+ @service_id = args[:service_id] if args.key?(:service_id)
2437
2446
  @update_time = args[:update_time] if args.key?(:update_time)
2438
2447
  end
2439
2448
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module NetworkservicesV1
18
18
  # Version of the google-apis-networkservices_v1 gem
19
- GEM_VERSION = "0.26.0"
19
+ GEM_VERSION = "0.27.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 = "20230510"
25
+ REVISION = "20230619"
26
26
  end
27
27
  end
28
28
  end
@@ -1021,6 +1021,7 @@ module Google
1021
1021
  hash :labels, as: 'labels'
1022
1022
  property :name, as: 'name'
1023
1023
  property :service, as: 'service'
1024
+ property :service_id, as: 'serviceId'
1024
1025
  property :update_time, as: 'updateTime'
1025
1026
  end
1026
1027
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-networkservices_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.26.0
4
+ version: 0.27.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-05-28 00:00:00.000000000 Z
11
+ date: 2023-06-25 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-networkservices_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1/v0.26.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1/v0.27.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkservices_v1
63
63
  post_install_message:
64
64
  rdoc_options: []