google-apis-networkconnectivity_v1 0.1.0 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +17 -0
- data/OVERVIEW.md +3 -3
- data/lib/google/apis/networkconnectivity_v1/classes.rb +92 -58
- data/lib/google/apis/networkconnectivity_v1/gem_version.rb +2 -2
- data/lib/google/apis/networkconnectivity_v1/representations.rb +14 -0
- data/lib/google/apis/networkconnectivity_v1/service.rb +32 -23
- 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: 71b51a02c0ddabfce9c77f121d740c2c4df1a8a9b294ae0801f88fbf68ec5015
|
4
|
+
data.tar.gz: 9c483584a3df16aa2e5ed027151bcce43292921946371600d3022ac7037420c5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cf13a09ee43406af16b338b9428742810f31610e3283a68e26c9986017d5d698c0085766d29898a31c2386bab41a4a789746cb2e1724ff1753af21d0c7c30529
|
7
|
+
data.tar.gz: '068926ef2fa6ec71f01924e5705fbe122434258c2719a0e8af358f13a78dbc9aa7cf5a1f280cc544077c5e8b0695be3b1a61e32d274734492e6a6f7317be91c0'
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,22 @@
|
|
1
1
|
# Release history for google-apis-networkconnectivity_v1
|
2
2
|
|
3
|
+
### v0.5.0 (2021-12-16)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20211210
|
6
|
+
* Unspecified changes
|
7
|
+
|
8
|
+
### v0.4.0 (2021-11-18)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20211113
|
11
|
+
|
12
|
+
### v0.3.0 (2021-10-31)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20211026
|
15
|
+
|
16
|
+
### v0.2.0 (2021-10-21)
|
17
|
+
|
18
|
+
* Unspecified changes
|
19
|
+
|
3
20
|
### v0.1.0 (2021-09-29)
|
4
21
|
|
5
22
|
* Regenerated from discovery document revision 20210913
|
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/networkconnectivity_v1"
|
|
51
51
|
client = Google::Apis::NetworkconnectivityV1::NetworkconnectivityService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
54
|
+
client.authorization = # ... use the googleauth gem to create credentials
|
55
55
|
```
|
56
56
|
|
57
57
|
See the class reference docs for information on the methods you can call from a client.
|
@@ -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/
|
64
|
-
* The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/
|
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 Networkconnectivity service in particular.)
|
67
67
|
|
@@ -93,7 +93,7 @@ module Google
|
|
93
93
|
end
|
94
94
|
end
|
95
95
|
|
96
|
-
# Associates `members
|
96
|
+
# Associates `members`, or principals, with a `role`.
|
97
97
|
class Binding
|
98
98
|
include Google::Apis::Core::Hashable
|
99
99
|
|
@@ -116,7 +116,7 @@ module Google
|
|
116
116
|
# @return [Google::Apis::NetworkconnectivityV1::Expr]
|
117
117
|
attr_accessor :condition
|
118
118
|
|
119
|
-
# Specifies the
|
119
|
+
# Specifies the principals requesting access for a Cloud Platform resource. `
|
120
120
|
# members` can have the following values: * `allUsers`: A special identifier
|
121
121
|
# that represents anyone who is on the internet; with or without a Google
|
122
122
|
# account. * `allAuthenticatedUsers`: A special identifier that represents
|
@@ -146,8 +146,8 @@ module Google
|
|
146
146
|
# @return [Array<String>]
|
147
147
|
attr_accessor :members
|
148
148
|
|
149
|
-
# Role that is assigned to `members
|
150
|
-
#
|
149
|
+
# Role that is assigned to the list of `members`, or principals. For example, `
|
150
|
+
# roles/viewer`, `roles/editor`, or `roles/owner`.
|
151
151
|
# Corresponds to the JSON property `role`
|
152
152
|
# @return [String]
|
153
153
|
attr_accessor :role
|
@@ -674,6 +674,25 @@ module Google
|
|
674
674
|
end
|
675
675
|
end
|
676
676
|
|
677
|
+
# Metadata about locations
|
678
|
+
class LocationMetadata
|
679
|
+
include Google::Apis::Core::Hashable
|
680
|
+
|
681
|
+
# List of supported features
|
682
|
+
# Corresponds to the JSON property `locationFeatures`
|
683
|
+
# @return [Array<String>]
|
684
|
+
attr_accessor :location_features
|
685
|
+
|
686
|
+
def initialize(**args)
|
687
|
+
update!(**args)
|
688
|
+
end
|
689
|
+
|
690
|
+
# Update properties of this object
|
691
|
+
def update!(**args)
|
692
|
+
@location_features = args[:location_features] if args.key?(:location_features)
|
693
|
+
end
|
694
|
+
end
|
695
|
+
|
677
696
|
# Represents the metadata of the long-running operation.
|
678
697
|
class OperationMetadata
|
679
698
|
include Google::Apis::Core::Hashable
|
@@ -735,31 +754,31 @@ module Google
|
|
735
754
|
|
736
755
|
# An Identity and Access Management (IAM) policy, which specifies access
|
737
756
|
# controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
|
738
|
-
# A `binding` binds one or more `members
|
739
|
-
# user accounts, service accounts, Google groups, and domains (
|
740
|
-
# A `role` is a named list of permissions; each `role` can be
|
741
|
-
# role or a user-created custom role. For some types of Google
|
742
|
-
# a `binding` can also specify a `condition`, which is a
|
743
|
-
# allows access to a resource only if the expression
|
744
|
-
# condition can add constraints based on attributes of
|
745
|
-
# or both. To learn which resources support
|
746
|
-
# see the [IAM documentation](https://cloud.
|
747
|
-
# resource-policies). **JSON example:** ` "
|
748
|
-
# resourcemanager.organizationAdmin", "members": [
|
749
|
-
# group:admins@example.com", "domain:google.com", "
|
750
|
-
# appspot.gserviceaccount.com" ] `, ` "role": "
|
751
|
-
# organizationViewer", "members": [ "user:eve@example.com"
|
752
|
-
# title": "expirable access", "description": "Does not grant
|
753
|
-
# 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
754
|
-
# ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
|
755
|
-
# members: - user:mike@example.com - group:admins@example.com -
|
756
|
-
# com - serviceAccount:my-project-id@appspot.gserviceaccount.com
|
757
|
-
# resourcemanager.organizationAdmin - members: - user:eve@example.
|
758
|
-
# roles/resourcemanager.organizationViewer condition: title: expirable
|
759
|
-
# description: Does not grant access after Sep 2020 expression: request.
|
760
|
-
# timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
|
761
|
-
# description of IAM and its features, see the [IAM documentation](https://
|
762
|
-
# google.com/iam/docs/).
|
757
|
+
# A `binding` binds one or more `members`, or principals, to a single `role`.
|
758
|
+
# Principals can be user accounts, service accounts, Google groups, and domains (
|
759
|
+
# such as G Suite). A `role` is a named list of permissions; each `role` can be
|
760
|
+
# an IAM predefined role or a user-created custom role. For some types of Google
|
761
|
+
# Cloud resources, a `binding` can also specify a `condition`, which is a
|
762
|
+
# logical expression that allows access to a resource only if the expression
|
763
|
+
# evaluates to `true`. A condition can add constraints based on attributes of
|
764
|
+
# the request, the resource, or both. To learn which resources support
|
765
|
+
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
766
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
767
|
+
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
768
|
+
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
769
|
+
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
770
|
+
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
771
|
+
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
772
|
+
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
773
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
|
774
|
+
# bindings: - members: - user:mike@example.com - group:admins@example.com -
|
775
|
+
# domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
|
776
|
+
# role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
|
777
|
+
# com role: roles/resourcemanager.organizationViewer condition: title: expirable
|
778
|
+
# access description: Does not grant access after Sep 2020 expression: request.
|
779
|
+
# time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
|
780
|
+
# a description of IAM and its features, see the [IAM documentation](https://
|
781
|
+
# cloud.google.com/iam/docs/).
|
763
782
|
class Policy
|
764
783
|
include Google::Apis::Core::Hashable
|
765
784
|
|
@@ -768,9 +787,14 @@ module Google
|
|
768
787
|
# @return [Array<Google::Apis::NetworkconnectivityV1::AuditConfig>]
|
769
788
|
attr_accessor :audit_configs
|
770
789
|
|
771
|
-
# Associates a list of `members
|
772
|
-
# condition` that determines how and when the `bindings` are applied.
|
773
|
-
# the `bindings` must contain at least one
|
790
|
+
# Associates a list of `members`, or principals, with a `role`. Optionally, may
|
791
|
+
# specify a `condition` that determines how and when the `bindings` are applied.
|
792
|
+
# Each of the `bindings` must contain at least one principal. The `bindings` in
|
793
|
+
# a `Policy` can refer to up to 1,500 principals; up to 250 of these principals
|
794
|
+
# can be Google groups. Each occurrence of a principal counts towards these
|
795
|
+
# limits. For example, if the `bindings` grant 50 different roles to `user:alice@
|
796
|
+
# example.com`, and not to any other principal, then you can add another 1,450
|
797
|
+
# principals to the `bindings` in the `Policy`.
|
774
798
|
# Corresponds to the JSON property `bindings`
|
775
799
|
# @return [Array<Google::Apis::NetworkconnectivityV1::Binding>]
|
776
800
|
attr_accessor :bindings
|
@@ -856,6 +880,15 @@ module Google
|
|
856
880
|
class RoutingVpc
|
857
881
|
include Google::Apis::Core::Hashable
|
858
882
|
|
883
|
+
# Output only. If true, indicates that this VPC network is currently associated
|
884
|
+
# with spokes that use the data transfer feature (spokes where the
|
885
|
+
# site_to_site_data_transfer field is set to true). If you create new spokes
|
886
|
+
# that use data transfer, they must be associated with this VPC network.
|
887
|
+
# Corresponds to the JSON property `requiredForNewSiteToSiteDataTransferSpokes`
|
888
|
+
# @return [Boolean]
|
889
|
+
attr_accessor :required_for_new_site_to_site_data_transfer_spokes
|
890
|
+
alias_method :required_for_new_site_to_site_data_transfer_spokes?, :required_for_new_site_to_site_data_transfer_spokes
|
891
|
+
|
859
892
|
# The URI of the VPC network.
|
860
893
|
# Corresponds to the JSON property `uri`
|
861
894
|
# @return [String]
|
@@ -867,6 +900,7 @@ module Google
|
|
867
900
|
|
868
901
|
# Update properties of this object
|
869
902
|
def update!(**args)
|
903
|
+
@required_for_new_site_to_site_data_transfer_spokes = args[:required_for_new_site_to_site_data_transfer_spokes] if args.key?(:required_for_new_site_to_site_data_transfer_spokes)
|
870
904
|
@uri = args[:uri] if args.key?(:uri)
|
871
905
|
end
|
872
906
|
end
|
@@ -877,31 +911,31 @@ module Google
|
|
877
911
|
|
878
912
|
# An Identity and Access Management (IAM) policy, which specifies access
|
879
913
|
# controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
|
880
|
-
# A `binding` binds one or more `members
|
881
|
-
# user accounts, service accounts, Google groups, and domains (
|
882
|
-
# A `role` is a named list of permissions; each `role` can be
|
883
|
-
# role or a user-created custom role. For some types of Google
|
884
|
-
# a `binding` can also specify a `condition`, which is a
|
885
|
-
# allows access to a resource only if the expression
|
886
|
-
# condition can add constraints based on attributes of
|
887
|
-
# or both. To learn which resources support
|
888
|
-
# see the [IAM documentation](https://cloud.
|
889
|
-
# resource-policies). **JSON example:** ` "
|
890
|
-
# resourcemanager.organizationAdmin", "members": [
|
891
|
-
# group:admins@example.com", "domain:google.com", "
|
892
|
-
# appspot.gserviceaccount.com" ] `, ` "role": "
|
893
|
-
# organizationViewer", "members": [ "user:eve@example.com"
|
894
|
-
# title": "expirable access", "description": "Does not grant
|
895
|
-
# 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
896
|
-
# ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
|
897
|
-
# members: - user:mike@example.com - group:admins@example.com -
|
898
|
-
# com - serviceAccount:my-project-id@appspot.gserviceaccount.com
|
899
|
-
# resourcemanager.organizationAdmin - members: - user:eve@example.
|
900
|
-
# roles/resourcemanager.organizationViewer condition: title: expirable
|
901
|
-
# description: Does not grant access after Sep 2020 expression: request.
|
902
|
-
# timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
|
903
|
-
# description of IAM and its features, see the [IAM documentation](https://
|
904
|
-
# google.com/iam/docs/).
|
914
|
+
# A `binding` binds one or more `members`, or principals, to a single `role`.
|
915
|
+
# Principals can be user accounts, service accounts, Google groups, and domains (
|
916
|
+
# such as G Suite). A `role` is a named list of permissions; each `role` can be
|
917
|
+
# an IAM predefined role or a user-created custom role. For some types of Google
|
918
|
+
# Cloud resources, a `binding` can also specify a `condition`, which is a
|
919
|
+
# logical expression that allows access to a resource only if the expression
|
920
|
+
# evaluates to `true`. A condition can add constraints based on attributes of
|
921
|
+
# the request, the resource, or both. To learn which resources support
|
922
|
+
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
923
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
924
|
+
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
925
|
+
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
926
|
+
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
927
|
+
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
928
|
+
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
929
|
+
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
930
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
|
931
|
+
# bindings: - members: - user:mike@example.com - group:admins@example.com -
|
932
|
+
# domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
|
933
|
+
# role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
|
934
|
+
# com role: roles/resourcemanager.organizationViewer condition: title: expirable
|
935
|
+
# access description: Does not grant access after Sep 2020 expression: request.
|
936
|
+
# time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
|
937
|
+
# a description of IAM and its features, see the [IAM documentation](https://
|
938
|
+
# cloud.google.com/iam/docs/).
|
905
939
|
# Corresponds to the JSON property `policy`
|
906
940
|
# @return [Google::Apis::NetworkconnectivityV1::Policy]
|
907
941
|
attr_accessor :policy
|
@@ -942,7 +976,7 @@ module Google
|
|
942
976
|
# @return [String]
|
943
977
|
attr_accessor :description
|
944
978
|
|
945
|
-
# Immutable. The
|
979
|
+
# Immutable. The name of the hub that this spoke is attached to.
|
946
980
|
# Corresponds to the JSON property `hub`
|
947
981
|
# @return [String]
|
948
982
|
attr_accessor :hub
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module NetworkconnectivityV1
|
18
18
|
# Version of the google-apis-networkconnectivity_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.5.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 = "20211210"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -124,6 +124,12 @@ module Google
|
|
124
124
|
include Google::Apis::Core::JsonObjectSupport
|
125
125
|
end
|
126
126
|
|
127
|
+
class LocationMetadata
|
128
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
|
+
|
130
|
+
include Google::Apis::Core::JsonObjectSupport
|
131
|
+
end
|
132
|
+
|
127
133
|
class OperationMetadata
|
128
134
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
135
|
|
@@ -331,6 +337,13 @@ module Google
|
|
331
337
|
end
|
332
338
|
end
|
333
339
|
|
340
|
+
class LocationMetadata
|
341
|
+
# @private
|
342
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
343
|
+
collection :location_features, as: 'locationFeatures'
|
344
|
+
end
|
345
|
+
end
|
346
|
+
|
334
347
|
class OperationMetadata
|
335
348
|
# @private
|
336
349
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -367,6 +380,7 @@ module Google
|
|
367
380
|
class RoutingVpc
|
368
381
|
# @private
|
369
382
|
class Representation < Google::Apis::Core::JsonRepresentation
|
383
|
+
property :required_for_new_site_to_site_data_transfer_spokes, as: 'requiredForNewSiteToSiteDataTransferSpokes'
|
370
384
|
property :uri, as: 'uri'
|
371
385
|
end
|
372
386
|
end
|
@@ -127,7 +127,7 @@ module Google
|
|
127
127
|
# Required. The parent resource.
|
128
128
|
# @param [Google::Apis::NetworkconnectivityV1::Hub] hub_object
|
129
129
|
# @param [String] hub_id
|
130
|
-
#
|
130
|
+
# Required. A unique identifier for the hub.
|
131
131
|
# @param [String] request_id
|
132
132
|
# Optional. A unique request ID (optional). If you specify this ID, you can use
|
133
133
|
# it in cases when you need to retry your request. When you need to retry, this
|
@@ -250,13 +250,16 @@ module Google
|
|
250
250
|
# REQUIRED: The resource for which the policy is being requested. See the
|
251
251
|
# operation documentation for the appropriate value for this field.
|
252
252
|
# @param [Fixnum] options_requested_policy_version
|
253
|
-
# Optional. The policy
|
254
|
-
# 3. Requests specifying an invalid value will be
|
255
|
-
# policies with any conditional bindings must
|
256
|
-
#
|
257
|
-
# field unset.
|
258
|
-
#
|
259
|
-
#
|
253
|
+
# Optional. The maximum policy version that will be used to format the policy.
|
254
|
+
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
255
|
+
# rejected. Requests for policies with any conditional role bindings must
|
256
|
+
# specify version 3. Policies with no conditional role bindings may specify any
|
257
|
+
# valid value or leave the field unset. The policy in the response might use the
|
258
|
+
# policy version that you specified, or it might use a lower policy version. For
|
259
|
+
# example, if you specify version 3, but the policy has no conditional role
|
260
|
+
# bindings, the response uses version 1. To learn which resources support
|
261
|
+
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
262
|
+
# google.com/iam/help/conditions/resource-policies).
|
260
263
|
# @param [String] fields
|
261
264
|
# Selector specifying which fields to include in a partial response.
|
262
265
|
# @param [String] quota_user
|
@@ -461,13 +464,16 @@ module Google
|
|
461
464
|
# REQUIRED: The resource for which the policy is being requested. See the
|
462
465
|
# operation documentation for the appropriate value for this field.
|
463
466
|
# @param [Fixnum] options_requested_policy_version
|
464
|
-
# Optional. The policy
|
465
|
-
# 3. Requests specifying an invalid value will be
|
466
|
-
# policies with any conditional bindings must
|
467
|
-
#
|
468
|
-
# field unset.
|
469
|
-
#
|
470
|
-
#
|
467
|
+
# Optional. The maximum policy version that will be used to format the policy.
|
468
|
+
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
469
|
+
# rejected. Requests for policies with any conditional role bindings must
|
470
|
+
# specify version 3. Policies with no conditional role bindings may specify any
|
471
|
+
# valid value or leave the field unset. The policy in the response might use the
|
472
|
+
# policy version that you specified, or it might use a lower policy version. For
|
473
|
+
# example, if you specify version 3, but the policy has no conditional role
|
474
|
+
# bindings, the response uses version 1. To learn which resources support
|
475
|
+
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
476
|
+
# google.com/iam/help/conditions/resource-policies).
|
471
477
|
# @param [String] fields
|
472
478
|
# Selector specifying which fields to include in a partial response.
|
473
479
|
# @param [String] quota_user
|
@@ -737,7 +743,7 @@ module Google
|
|
737
743
|
# a valid UUID, with the exception that zero UUID is not supported (00000000-
|
738
744
|
# 0000-0000-0000-000000000000).
|
739
745
|
# @param [String] spoke_id
|
740
|
-
#
|
746
|
+
# Required. Unique id for the spoke to create.
|
741
747
|
# @param [String] fields
|
742
748
|
# Selector specifying which fields to include in a partial response.
|
743
749
|
# @param [String] quota_user
|
@@ -848,13 +854,16 @@ module Google
|
|
848
854
|
# REQUIRED: The resource for which the policy is being requested. See the
|
849
855
|
# operation documentation for the appropriate value for this field.
|
850
856
|
# @param [Fixnum] options_requested_policy_version
|
851
|
-
# Optional. The policy
|
852
|
-
# 3. Requests specifying an invalid value will be
|
853
|
-
# policies with any conditional bindings must
|
854
|
-
#
|
855
|
-
# field unset.
|
856
|
-
#
|
857
|
-
#
|
857
|
+
# Optional. The maximum policy version that will be used to format the policy.
|
858
|
+
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
859
|
+
# rejected. Requests for policies with any conditional role bindings must
|
860
|
+
# specify version 3. Policies with no conditional role bindings may specify any
|
861
|
+
# valid value or leave the field unset. The policy in the response might use the
|
862
|
+
# policy version that you specified, or it might use a lower policy version. For
|
863
|
+
# example, if you specify version 3, but the policy has no conditional role
|
864
|
+
# bindings, the response uses version 1. To learn which resources support
|
865
|
+
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
866
|
+
# google.com/iam/help/conditions/resource-policies).
|
858
867
|
# @param [String] fields
|
859
868
|
# Selector specifying which fields to include in a partial response.
|
860
869
|
# @param [String] quota_user
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-networkconnectivity_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.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:
|
11
|
+
date: 2022-01-10 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/
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkconnectivity_v1/v0.
|
62
|
-
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/
|
60
|
+
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkconnectivity_v1/CHANGELOG.md
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkconnectivity_v1/v0.5.0
|
62
|
+
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkconnectivity_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
65
65
|
require_paths:
|
@@ -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.
|
78
|
+
rubygems_version: 3.3.4
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Network Connectivity API V1
|