google-apis-networkservices_v1 0.26.0 → 0.28.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 +8 -0
- data/lib/google/apis/networkservices_v1/classes.rb +47 -37
- data/lib/google/apis/networkservices_v1/gem_version.rb +2 -2
- data/lib/google/apis/networkservices_v1/representations.rb +1 -0
- data/lib/google/apis/networkservices_v1/service.rb +2 -4
- 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: 7816272ba7eb954c02a0e5910d677560851376bc53b87bc58db616855088535b
|
4
|
+
data.tar.gz: 3565256c87a67121dcdb98cbd3c66adf74b91ba22da87ed74b3edaf608c4398d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 30dae4c70950bfc9117256f58306146f3d585b43da5a7544a40a74ec1cb0966e92cbda9633bec9937b25015ffd1711e4bd156067822b5a7878058e6abdc0ba33
|
7
|
+
data.tar.gz: e8550627a4655eb6af7c74ed7bc177eae434f70fee2c447a66df74881776c8c5906ba4a2fbb9459eeda91a0718f0338585937343db20d0189ad75a2886844c3d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-networkservices_v1
|
2
2
|
|
3
|
+
### v0.28.0 (2023-08-13)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230807
|
6
|
+
|
7
|
+
### v0.27.0 (2023-06-25)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230619
|
10
|
+
|
3
11
|
### v0.26.0 (2023-05-28)
|
4
12
|
|
5
13
|
* 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
|
445
|
-
# traffic. When no address is provided, an IP from the subnetwork is
|
446
|
-
# This field only applies to gateways of type 'SECURE_WEB_GATEWAY'.
|
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
|
@@ -674,7 +674,7 @@ module Google
|
|
674
674
|
attr_accessor :service_name
|
675
675
|
|
676
676
|
# Optional. Specifies the proportion of requests forwarded to the backend
|
677
|
-
# referenced by the serviceName field. This is computed as: weight/Sum(weights
|
677
|
+
# referenced by the serviceName field. This is computed as: - weight/Sum(weights
|
678
678
|
# in this destination list). For non-zero values, there may be some epsilon from
|
679
679
|
# the exact proportion defined here depending on the precision an implementation
|
680
680
|
# supports. If only one serviceName is specified and it has a weight greater
|
@@ -1172,7 +1172,7 @@ module Google
|
|
1172
1172
|
attr_accessor :service_name
|
1173
1173
|
|
1174
1174
|
# Specifies the proportion of requests forwarded to the backend referenced by
|
1175
|
-
# the serviceName field. This is computed as: weight/Sum(weights in this
|
1175
|
+
# the serviceName field. This is computed as: - weight/Sum(weights in this
|
1176
1176
|
# destination list). For non-zero values, there may be some epsilon from the
|
1177
1177
|
# exact proportion defined here depending on the precision an implementation
|
1178
1178
|
# supports. If only one serviceName is specified and it has a weight greater
|
@@ -2207,13 +2207,13 @@ module Google
|
|
2207
2207
|
# @return [String]
|
2208
2208
|
attr_accessor :name
|
2209
2209
|
|
2210
|
-
# The normal response of the operation
|
2211
|
-
#
|
2212
|
-
#
|
2213
|
-
#
|
2214
|
-
#
|
2215
|
-
#
|
2216
|
-
#
|
2210
|
+
# The normal, successful response of the operation. If the original method
|
2211
|
+
# returns no data on success, such as `Delete`, the response is `google.protobuf.
|
2212
|
+
# Empty`. If the original method is standard `Get`/`Create`/`Update`, the
|
2213
|
+
# response should be the resource. For other methods, the response should have
|
2214
|
+
# the type `XxxResponse`, where `Xxx` is the original method name. For example,
|
2215
|
+
# if the original method name is `TakeSnapshot()`, the inferred response type is
|
2216
|
+
# `TakeSnapshotResponse`.
|
2217
2217
|
# Corresponds to the JSON property `response`
|
2218
2218
|
# @return [Hash<String,Object>]
|
2219
2219
|
attr_accessor :response
|
@@ -2302,22 +2302,22 @@ module Google
|
|
2302
2302
|
# evaluates to `true`. A condition can add constraints based on attributes of
|
2303
2303
|
# the request, the resource, or both. To learn which resources support
|
2304
2304
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
2305
|
-
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
2305
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
|
2306
2306
|
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
2307
2307
|
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
2308
2308
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
2309
2309
|
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
2310
2310
|
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
2311
2311
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
2312
|
-
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML
|
2313
|
-
# bindings: - members: - user:mike@example.com - group:admins@
|
2314
|
-
# domain:google.com - serviceAccount:my-project-id@appspot.
|
2315
|
-
# role: roles/resourcemanager.organizationAdmin - members: -
|
2316
|
-
# com role: roles/resourcemanager.organizationViewer condition:
|
2317
|
-
# access description: Does not grant access after Sep 2020
|
2318
|
-
# time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
2319
|
-
# a description of IAM and its features, see the
|
2320
|
-
# cloud.google.com/iam/docs/).
|
2312
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
|
2313
|
+
# example:** ``` bindings: - members: - user:mike@example.com - group:admins@
|
2314
|
+
# example.com - domain:google.com - serviceAccount:my-project-id@appspot.
|
2315
|
+
# gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
|
2316
|
+
# user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
|
2317
|
+
# title: expirable access description: Does not grant access after Sep 2020
|
2318
|
+
# expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
2319
|
+
# BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
|
2320
|
+
# [IAM documentation](https://cloud.google.com/iam/docs/).
|
2321
2321
|
class Policy
|
2322
2322
|
include Google::Apis::Core::Hashable
|
2323
2323
|
|
@@ -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
|
@@ -2453,22 +2462,22 @@ module Google
|
|
2453
2462
|
# evaluates to `true`. A condition can add constraints based on attributes of
|
2454
2463
|
# the request, the resource, or both. To learn which resources support
|
2455
2464
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
2456
|
-
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
2465
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
|
2457
2466
|
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
2458
2467
|
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
2459
2468
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
2460
2469
|
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
2461
2470
|
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
2462
2471
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
2463
|
-
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML
|
2464
|
-
# bindings: - members: - user:mike@example.com - group:admins@
|
2465
|
-
# domain:google.com - serviceAccount:my-project-id@appspot.
|
2466
|
-
# role: roles/resourcemanager.organizationAdmin - members: -
|
2467
|
-
# com role: roles/resourcemanager.organizationViewer condition:
|
2468
|
-
# access description: Does not grant access after Sep 2020
|
2469
|
-
# time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
2470
|
-
# a description of IAM and its features, see the
|
2471
|
-
# cloud.google.com/iam/docs/).
|
2472
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
|
2473
|
+
# example:** ``` bindings: - members: - user:mike@example.com - group:admins@
|
2474
|
+
# example.com - domain:google.com - serviceAccount:my-project-id@appspot.
|
2475
|
+
# gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
|
2476
|
+
# user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
|
2477
|
+
# title: expirable access description: Does not grant access after Sep 2020
|
2478
|
+
# expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
2479
|
+
# BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
|
2480
|
+
# [IAM documentation](https://cloud.google.com/iam/docs/).
|
2472
2481
|
# Corresponds to the JSON property `policy`
|
2473
2482
|
# @return [Google::Apis::NetworkservicesV1::Policy]
|
2474
2483
|
attr_accessor :policy
|
@@ -2647,7 +2656,7 @@ module Google
|
|
2647
2656
|
attr_accessor :service_name
|
2648
2657
|
|
2649
2658
|
# Optional. Specifies the proportion of requests forwarded to the backend
|
2650
|
-
# referenced by the serviceName field. This is computed as: weight/Sum(weights
|
2659
|
+
# referenced by the serviceName field. This is computed as: - weight/Sum(weights
|
2651
2660
|
# in this destination list). For non-zero values, there may be some epsilon from
|
2652
2661
|
# the exact proportion defined here depending on the precision an implementation
|
2653
2662
|
# supports. If only one serviceName is specified and it has a weight greater
|
@@ -2871,8 +2880,9 @@ module Google
|
|
2871
2880
|
attr_accessor :service_name
|
2872
2881
|
|
2873
2882
|
# Optional. Specifies the proportion of requests forwareded to the backend
|
2874
|
-
# referenced by the service_name field. This is computed as: weight/Sum(
|
2875
|
-
# in destinations) Weights in all destinations does not need to sum up
|
2883
|
+
# referenced by the service_name field. This is computed as: - weight/Sum(
|
2884
|
+
# weights in destinations) Weights in all destinations does not need to sum up
|
2885
|
+
# to 100.
|
2876
2886
|
# Corresponds to the JSON property `weight`
|
2877
2887
|
# @return [Fixnum]
|
2878
2888
|
attr_accessor :weight
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.28.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 = "
|
25
|
+
REVISION = "20230807"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2153,8 +2153,7 @@ module Google
|
|
2153
2153
|
# */locations/global`.
|
2154
2154
|
# @param [Google::Apis::NetworkservicesV1::TcpRoute] tcp_route_object
|
2155
2155
|
# @param [String] tcp_route_id
|
2156
|
-
# Required. Short name of the TcpRoute resource to be created.
|
2157
|
-
# example).
|
2156
|
+
# Required. Short name of the TcpRoute resource to be created.
|
2158
2157
|
# @param [String] fields
|
2159
2158
|
# Selector specifying which fields to include in a partial response.
|
2160
2159
|
# @param [String] quota_user
|
@@ -2333,8 +2332,7 @@ module Google
|
|
2333
2332
|
# */locations/global`.
|
2334
2333
|
# @param [Google::Apis::NetworkservicesV1::TlsRoute] tls_route_object
|
2335
2334
|
# @param [String] tls_route_id
|
2336
|
-
# Required. Short name of the TlsRoute resource to be created.
|
2337
|
-
# example).
|
2335
|
+
# Required. Short name of the TlsRoute resource to be created.
|
2338
2336
|
# @param [String] fields
|
2339
2337
|
# Selector specifying which fields to include in a partial response.
|
2340
2338
|
# @param [String] quota_user
|
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.
|
4
|
+
version: 0.28.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-
|
11
|
+
date: 2023-08-20 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1/v0.28.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: []
|