google-apis-networkservices_v1beta1 0.11.0 → 0.12.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 +5 -0
- data/lib/google/apis/networkservices_v1beta1/classes.rb +12 -3
- data/lib/google/apis/networkservices_v1beta1/gem_version.rb +3 -3
- data/lib/google/apis/networkservices_v1beta1/representations.rb +1 -0
- data/lib/google/apis/networkservices_v1beta1/service.rb +41 -29
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bd980751ac46ad5713dafcef31486f80710548f4d26cb1b1a9ac92ea58a48068
|
4
|
+
data.tar.gz: 878fb74f308d46873f3ee7865f4fa76c1de3ac0fd9c377f62031246988afdb6f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6589f06ce4ed5abeff87c8469eb49f54efc84f34b4cba87f5c6b0f2b97fa06959b2905d4fead11cd643e9fd667ec503aefc86df93713192f41593356b47c9146
|
7
|
+
data.tar.gz: e87de70fd08948c800a2c674b0e5d38372a076b128c376a63e2b18a4c3e41690a192fccf082e39b78561e65eb8bfc4a6ba15df4e58bf6fc387e94a8983fff777
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-networkservices_v1beta1
|
2
2
|
|
3
|
+
### v0.12.0 (2022-06-07)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220511
|
6
|
+
* Regenerated using generator version 0.5.0
|
7
|
+
|
3
8
|
### v0.11.0 (2022-04-30)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20220422
|
@@ -35,8 +35,8 @@ module Google
|
|
35
35
|
# "audit_log_configs": [ ` "log_type": "DATA_READ" `, ` "log_type": "DATA_WRITE"
|
36
36
|
# , "exempted_members": [ "user:aliya@example.com" ] ` ] ` ] ` For sampleservice,
|
37
37
|
# this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also
|
38
|
-
# exempts jose@example.com from DATA_READ logging, and aliya@example.com
|
39
|
-
# DATA_WRITE logging.
|
38
|
+
# exempts `jose@example.com` from DATA_READ logging, and `aliya@example.com`
|
39
|
+
# from DATA_WRITE logging.
|
40
40
|
class AuditConfig
|
41
41
|
include Google::Apis::Core::Hashable
|
42
42
|
|
@@ -387,7 +387,7 @@ module Google
|
|
387
387
|
attr_accessor :labels
|
388
388
|
|
389
389
|
# Required. Name of the Gateway resource. It matches pattern `projects/*/
|
390
|
-
# locations
|
390
|
+
# locations/*/gateways/`.
|
391
391
|
# Corresponds to the JSON property `name`
|
392
392
|
# @return [String]
|
393
393
|
attr_accessor :name
|
@@ -2489,6 +2489,14 @@ module Google
|
|
2489
2489
|
# @return [String]
|
2490
2490
|
attr_accessor :description
|
2491
2491
|
|
2492
|
+
# Optional. Gateways defines a list of gateways this TcpRoute is attached to, as
|
2493
|
+
# one of the routing rules to route the requests served by the gateway. Each
|
2494
|
+
# gateway reference should match the pattern: `projects/*/locations/global/
|
2495
|
+
# gateways/`
|
2496
|
+
# Corresponds to the JSON property `gateways`
|
2497
|
+
# @return [Array<String>]
|
2498
|
+
attr_accessor :gateways
|
2499
|
+
|
2492
2500
|
# Optional. Set of label tags associated with the TcpRoute resource.
|
2493
2501
|
# Corresponds to the JSON property `labels`
|
2494
2502
|
# @return [Hash<String,String>]
|
@@ -2533,6 +2541,7 @@ module Google
|
|
2533
2541
|
def update!(**args)
|
2534
2542
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2535
2543
|
@description = args[:description] if args.key?(:description)
|
2544
|
+
@gateways = args[:gateways] if args.key?(:gateways)
|
2536
2545
|
@labels = args[:labels] if args.key?(:labels)
|
2537
2546
|
@meshes = args[:meshes] if args.key?(:meshes)
|
2538
2547
|
@name = args[:name] if args.key?(:name)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module NetworkservicesV1beta1
|
18
18
|
# Version of the google-apis-networkservices_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.12.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.5.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220511"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1042,6 +1042,7 @@ module Google
|
|
1042
1042
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1043
1043
|
property :create_time, as: 'createTime'
|
1044
1044
|
property :description, as: 'description'
|
1045
|
+
collection :gateways, as: 'gateways'
|
1045
1046
|
hash :labels, as: 'labels'
|
1046
1047
|
collection :meshes, as: 'meshes'
|
1047
1048
|
property :name, as: 'name'
|
@@ -225,8 +225,9 @@ module Google
|
|
225
225
|
# Gets the access control policy for a resource. Returns an empty policy if the
|
226
226
|
# resource exists and does not have a policy set.
|
227
227
|
# @param [String] resource
|
228
|
-
# REQUIRED: The resource for which the policy is being requested. See
|
229
|
-
#
|
228
|
+
# REQUIRED: The resource for which the policy is being requested. See [Resource
|
229
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
230
|
+
# appropriate value for this field.
|
230
231
|
# @param [Fixnum] options_requested_policy_version
|
231
232
|
# Optional. The maximum policy version that will be used to format the policy.
|
232
233
|
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
@@ -350,8 +351,9 @@ module Google
|
|
350
351
|
# existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
|
351
352
|
# PERMISSION_DENIED` errors.
|
352
353
|
# @param [String] resource
|
353
|
-
# REQUIRED: The resource for which the policy is being specified. See
|
354
|
-
#
|
354
|
+
# REQUIRED: The resource for which the policy is being specified. See [Resource
|
355
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
356
|
+
# appropriate value for this field.
|
355
357
|
# @param [Google::Apis::NetworkservicesV1beta1::SetIamPolicyRequest] set_iam_policy_request_object
|
356
358
|
# @param [String] fields
|
357
359
|
# Selector specifying which fields to include in a partial response.
|
@@ -388,8 +390,9 @@ module Google
|
|
388
390
|
# permission-aware UIs and command-line tools, not for authorization checking.
|
389
391
|
# This operation may "fail open" without warning.
|
390
392
|
# @param [String] resource
|
391
|
-
# REQUIRED: The resource for which the policy detail is being requested. See
|
392
|
-
#
|
393
|
+
# REQUIRED: The resource for which the policy detail is being requested. See [
|
394
|
+
# Resource names](https://cloud.google.com/apis/design/resource_names) for the
|
395
|
+
# appropriate value for this field.
|
393
396
|
# @param [Google::Apis::NetworkservicesV1beta1::TestIamPermissionsRequest] test_iam_permissions_request_object
|
394
397
|
# @param [String] fields
|
395
398
|
# Selector specifying which fields to include in a partial response.
|
@@ -423,7 +426,7 @@ module Google
|
|
423
426
|
# Creates a new Gateway in a given project and location.
|
424
427
|
# @param [String] parent
|
425
428
|
# Required. The parent resource of the Gateway. Must be in the format `projects/*
|
426
|
-
# /locations
|
429
|
+
# /locations/*`.
|
427
430
|
# @param [Google::Apis::NetworkservicesV1beta1::Gateway] gateway_object
|
428
431
|
# @param [String] gateway_id
|
429
432
|
# Required. Short name of the Gateway resource to be created.
|
@@ -460,7 +463,7 @@ module Google
|
|
460
463
|
# Deletes a single Gateway.
|
461
464
|
# @param [String] name
|
462
465
|
# Required. A name of the Gateway to delete. Must be in the format `projects/*/
|
463
|
-
# locations
|
466
|
+
# locations/*/gateways/*`.
|
464
467
|
# @param [String] fields
|
465
468
|
# Selector specifying which fields to include in a partial response.
|
466
469
|
# @param [String] quota_user
|
@@ -491,7 +494,7 @@ module Google
|
|
491
494
|
# Gets details of a single Gateway.
|
492
495
|
# @param [String] name
|
493
496
|
# Required. A name of the Gateway to get. Must be in the format `projects/*/
|
494
|
-
# locations
|
497
|
+
# locations/*/gateways/*`.
|
495
498
|
# @param [String] fields
|
496
499
|
# Selector specifying which fields to include in a partial response.
|
497
500
|
# @param [String] quota_user
|
@@ -522,8 +525,9 @@ module Google
|
|
522
525
|
# Gets the access control policy for a resource. Returns an empty policy if the
|
523
526
|
# resource exists and does not have a policy set.
|
524
527
|
# @param [String] resource
|
525
|
-
# REQUIRED: The resource for which the policy is being requested. See
|
526
|
-
#
|
528
|
+
# REQUIRED: The resource for which the policy is being requested. See [Resource
|
529
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
530
|
+
# appropriate value for this field.
|
527
531
|
# @param [Fixnum] options_requested_policy_version
|
528
532
|
# Optional. The maximum policy version that will be used to format the policy.
|
529
533
|
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
@@ -566,7 +570,7 @@ module Google
|
|
566
570
|
# Lists Gateways in a given project and location.
|
567
571
|
# @param [String] parent
|
568
572
|
# Required. The project and location from which the Gateways should be listed,
|
569
|
-
# specified in the format `projects/*/locations
|
573
|
+
# specified in the format `projects/*/locations/*`.
|
570
574
|
# @param [Fixnum] page_size
|
571
575
|
# Maximum number of Gateways to return per call.
|
572
576
|
# @param [String] page_token
|
@@ -605,7 +609,7 @@ module Google
|
|
605
609
|
# Updates the parameters of a single Gateway.
|
606
610
|
# @param [String] name
|
607
611
|
# Required. Name of the Gateway resource. It matches pattern `projects/*/
|
608
|
-
# locations
|
612
|
+
# locations/*/gateways/`.
|
609
613
|
# @param [Google::Apis::NetworkservicesV1beta1::Gateway] gateway_object
|
610
614
|
# @param [String] update_mask
|
611
615
|
# Optional. Field mask is used to specify the fields to be overwritten in the
|
@@ -647,8 +651,9 @@ module Google
|
|
647
651
|
# existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
|
648
652
|
# PERMISSION_DENIED` errors.
|
649
653
|
# @param [String] resource
|
650
|
-
# REQUIRED: The resource for which the policy is being specified. See
|
651
|
-
#
|
654
|
+
# REQUIRED: The resource for which the policy is being specified. See [Resource
|
655
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
656
|
+
# appropriate value for this field.
|
652
657
|
# @param [Google::Apis::NetworkservicesV1beta1::SetIamPolicyRequest] set_iam_policy_request_object
|
653
658
|
# @param [String] fields
|
654
659
|
# Selector specifying which fields to include in a partial response.
|
@@ -685,8 +690,9 @@ module Google
|
|
685
690
|
# permission-aware UIs and command-line tools, not for authorization checking.
|
686
691
|
# This operation may "fail open" without warning.
|
687
692
|
# @param [String] resource
|
688
|
-
# REQUIRED: The resource for which the policy detail is being requested. See
|
689
|
-
#
|
693
|
+
# REQUIRED: The resource for which the policy detail is being requested. See [
|
694
|
+
# Resource names](https://cloud.google.com/apis/design/resource_names) for the
|
695
|
+
# appropriate value for this field.
|
690
696
|
# @param [Google::Apis::NetworkservicesV1beta1::TestIamPermissionsRequest] test_iam_permissions_request_object
|
691
697
|
# @param [String] fields
|
692
698
|
# Selector specifying which fields to include in a partial response.
|
@@ -1177,8 +1183,9 @@ module Google
|
|
1177
1183
|
# Gets the access control policy for a resource. Returns an empty policy if the
|
1178
1184
|
# resource exists and does not have a policy set.
|
1179
1185
|
# @param [String] resource
|
1180
|
-
# REQUIRED: The resource for which the policy is being requested. See
|
1181
|
-
#
|
1186
|
+
# REQUIRED: The resource for which the policy is being requested. See [Resource
|
1187
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
1188
|
+
# appropriate value for this field.
|
1182
1189
|
# @param [Fixnum] options_requested_policy_version
|
1183
1190
|
# Optional. The maximum policy version that will be used to format the policy.
|
1184
1191
|
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
@@ -1302,8 +1309,9 @@ module Google
|
|
1302
1309
|
# existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
|
1303
1310
|
# PERMISSION_DENIED` errors.
|
1304
1311
|
# @param [String] resource
|
1305
|
-
# REQUIRED: The resource for which the policy is being specified. See
|
1306
|
-
#
|
1312
|
+
# REQUIRED: The resource for which the policy is being specified. See [Resource
|
1313
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
1314
|
+
# appropriate value for this field.
|
1307
1315
|
# @param [Google::Apis::NetworkservicesV1beta1::SetIamPolicyRequest] set_iam_policy_request_object
|
1308
1316
|
# @param [String] fields
|
1309
1317
|
# Selector specifying which fields to include in a partial response.
|
@@ -1340,8 +1348,9 @@ module Google
|
|
1340
1348
|
# permission-aware UIs and command-line tools, not for authorization checking.
|
1341
1349
|
# This operation may "fail open" without warning.
|
1342
1350
|
# @param [String] resource
|
1343
|
-
# REQUIRED: The resource for which the policy detail is being requested. See
|
1344
|
-
#
|
1351
|
+
# REQUIRED: The resource for which the policy detail is being requested. See [
|
1352
|
+
# Resource names](https://cloud.google.com/apis/design/resource_names) for the
|
1353
|
+
# appropriate value for this field.
|
1345
1354
|
# @param [Google::Apis::NetworkservicesV1beta1::TestIamPermissionsRequest] test_iam_permissions_request_object
|
1346
1355
|
# @param [String] fields
|
1347
1356
|
# Selector specifying which fields to include in a partial response.
|
@@ -1624,8 +1633,9 @@ module Google
|
|
1624
1633
|
# Gets the access control policy for a resource. Returns an empty policy if the
|
1625
1634
|
# resource exists and does not have a policy set.
|
1626
1635
|
# @param [String] resource
|
1627
|
-
# REQUIRED: The resource for which the policy is being requested. See
|
1628
|
-
#
|
1636
|
+
# REQUIRED: The resource for which the policy is being requested. See [Resource
|
1637
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
1638
|
+
# appropriate value for this field.
|
1629
1639
|
# @param [Fixnum] options_requested_policy_version
|
1630
1640
|
# Optional. The maximum policy version that will be used to format the policy.
|
1631
1641
|
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
@@ -1708,8 +1718,9 @@ module Google
|
|
1708
1718
|
# existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
|
1709
1719
|
# PERMISSION_DENIED` errors.
|
1710
1720
|
# @param [String] resource
|
1711
|
-
# REQUIRED: The resource for which the policy is being specified. See
|
1712
|
-
#
|
1721
|
+
# REQUIRED: The resource for which the policy is being specified. See [Resource
|
1722
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
1723
|
+
# appropriate value for this field.
|
1713
1724
|
# @param [Google::Apis::NetworkservicesV1beta1::SetIamPolicyRequest] set_iam_policy_request_object
|
1714
1725
|
# @param [String] fields
|
1715
1726
|
# Selector specifying which fields to include in a partial response.
|
@@ -1746,8 +1757,9 @@ module Google
|
|
1746
1757
|
# permission-aware UIs and command-line tools, not for authorization checking.
|
1747
1758
|
# This operation may "fail open" without warning.
|
1748
1759
|
# @param [String] resource
|
1749
|
-
# REQUIRED: The resource for which the policy detail is being requested. See
|
1750
|
-
#
|
1760
|
+
# REQUIRED: The resource for which the policy detail is being requested. See [
|
1761
|
+
# Resource names](https://cloud.google.com/apis/design/resource_names) for the
|
1762
|
+
# appropriate value for this field.
|
1751
1763
|
# @param [Google::Apis::NetworkservicesV1beta1::TestIamPermissionsRequest] test_iam_permissions_request_object
|
1752
1764
|
# @param [String] fields
|
1753
1765
|
# Selector specifying which fields to include in a partial response.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-networkservices_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.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: 2022-
|
11
|
+
date: 2022-06-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.5'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
29
|
+
version: '0.5'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1beta1/v0.12.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkservices_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.3.
|
78
|
+
rubygems_version: 3.3.14
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Network Services API V1beta1
|