google-apis-networkconnectivity_v1 0.2.0 → 0.6.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 +18 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/networkconnectivity_v1/classes.rb +107 -71
- data/lib/google/apis/networkconnectivity_v1/gem_version.rb +3 -3
- data/lib/google/apis/networkconnectivity_v1/representations.rb +14 -0
- data/lib/google/apis/networkconnectivity_v1/service.rb +32 -23
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 265519baf5dc25a17ab017c60f77c7457f953c86f170a28435d1759a6440842f
|
4
|
+
data.tar.gz: 8dd9d6958dd5d673b0bcda469a5e0887cbcf2a141883e9cac743c8303be2f3a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 351e717b59ae7417ad8f67016b4cdd8aeb4ff0029df2c7da4d5d19bdfd0d4ee6924861e3b05ff3e6ab9cf7f0b4e78285f3bae9b42b623f37ed535a7c0dbd99af
|
7
|
+
data.tar.gz: ecd4d87cbe37c0aaff78e2a73c5ba5b86c4b94bcd79bf60de08c1f36ad93a707e161d6e3b51af612a655cb684a6ad1b2d0a7e0dbc86d2faa0c1e3ee836ce188d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,23 @@
|
|
1
1
|
# Release history for google-apis-networkconnectivity_v1
|
2
2
|
|
3
|
+
### v0.6.0 (2022-01-30)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220125
|
6
|
+
* Regenerated using generator version 0.4.1
|
7
|
+
|
8
|
+
### v0.5.0 (2021-12-16)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20211210
|
11
|
+
* Unspecified changes
|
12
|
+
|
13
|
+
### v0.4.0 (2021-11-18)
|
14
|
+
|
15
|
+
* Regenerated from discovery document revision 20211113
|
16
|
+
|
17
|
+
### v0.3.0 (2021-10-31)
|
18
|
+
|
19
|
+
* Regenerated from discovery document revision 20211026
|
20
|
+
|
3
21
|
### v0.2.0 (2021-10-21)
|
4
22
|
|
5
23
|
* Unspecified changes
|
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.
|
@@ -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
|
@@ -403,11 +403,9 @@ module Google
|
|
403
403
|
# @return [String]
|
404
404
|
attr_accessor :name
|
405
405
|
|
406
|
-
# The VPC
|
407
|
-
#
|
408
|
-
# spokes
|
409
|
-
# Connectivity Center automatically populates it based on the set of spokes
|
410
|
-
# attached to the hub.
|
406
|
+
# The VPC networks associated with this hub's spokes. This field is read-only.
|
407
|
+
# Network Connectivity Center automatically populates it based on the set of
|
408
|
+
# spokes attached to the hub.
|
411
409
|
# Corresponds to the JSON property `routingVpcs`
|
412
410
|
# @return [Array<Google::Apis::NetworkconnectivityV1::RoutingVpc>]
|
413
411
|
attr_accessor :routing_vpcs
|
@@ -454,8 +452,9 @@ module Google
|
|
454
452
|
include Google::Apis::Core::Hashable
|
455
453
|
|
456
454
|
# A value that controls whether site-to-site data transfer is enabled for these
|
457
|
-
# resources.
|
458
|
-
#
|
455
|
+
# resources. Data transfer is available only in [supported locations](https://
|
456
|
+
# cloud.google.com/network-connectivity/docs/network-connectivity-center/
|
457
|
+
# concepts/locations).
|
459
458
|
# Corresponds to the JSON property `siteToSiteDataTransfer`
|
460
459
|
# @return [Boolean]
|
461
460
|
attr_accessor :site_to_site_data_transfer
|
@@ -489,8 +488,9 @@ module Google
|
|
489
488
|
attr_accessor :instances
|
490
489
|
|
491
490
|
# A value that controls whether site-to-site data transfer is enabled for these
|
492
|
-
# resources.
|
493
|
-
#
|
491
|
+
# resources. Data transfer is available only in [supported locations](https://
|
492
|
+
# cloud.google.com/network-connectivity/docs/network-connectivity-center/
|
493
|
+
# concepts/locations).
|
494
494
|
# Corresponds to the JSON property `siteToSiteDataTransfer`
|
495
495
|
# @return [Boolean]
|
496
496
|
attr_accessor :site_to_site_data_transfer
|
@@ -515,8 +515,9 @@ module Google
|
|
515
515
|
include Google::Apis::Core::Hashable
|
516
516
|
|
517
517
|
# A value that controls whether site-to-site data transfer is enabled for these
|
518
|
-
# resources.
|
519
|
-
#
|
518
|
+
# resources. Data transfer is available only in [supported locations](https://
|
519
|
+
# cloud.google.com/network-connectivity/docs/network-connectivity-center/
|
520
|
+
# concepts/locations).
|
520
521
|
# Corresponds to the JSON property `siteToSiteDataTransfer`
|
521
522
|
# @return [Boolean]
|
522
523
|
attr_accessor :site_to_site_data_transfer
|
@@ -674,6 +675,25 @@ module Google
|
|
674
675
|
end
|
675
676
|
end
|
676
677
|
|
678
|
+
# Metadata about locations
|
679
|
+
class LocationMetadata
|
680
|
+
include Google::Apis::Core::Hashable
|
681
|
+
|
682
|
+
# List of supported features
|
683
|
+
# Corresponds to the JSON property `locationFeatures`
|
684
|
+
# @return [Array<String>]
|
685
|
+
attr_accessor :location_features
|
686
|
+
|
687
|
+
def initialize(**args)
|
688
|
+
update!(**args)
|
689
|
+
end
|
690
|
+
|
691
|
+
# Update properties of this object
|
692
|
+
def update!(**args)
|
693
|
+
@location_features = args[:location_features] if args.key?(:location_features)
|
694
|
+
end
|
695
|
+
end
|
696
|
+
|
677
697
|
# Represents the metadata of the long-running operation.
|
678
698
|
class OperationMetadata
|
679
699
|
include Google::Apis::Core::Hashable
|
@@ -735,31 +755,31 @@ module Google
|
|
735
755
|
|
736
756
|
# An Identity and Access Management (IAM) policy, which specifies access
|
737
757
|
# 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/).
|
758
|
+
# A `binding` binds one or more `members`, or principals, to a single `role`.
|
759
|
+
# Principals can be user accounts, service accounts, Google groups, and domains (
|
760
|
+
# such as G Suite). A `role` is a named list of permissions; each `role` can be
|
761
|
+
# an IAM predefined role or a user-created custom role. For some types of Google
|
762
|
+
# Cloud resources, a `binding` can also specify a `condition`, which is a
|
763
|
+
# logical expression that allows access to a resource only if the expression
|
764
|
+
# evaluates to `true`. A condition can add constraints based on attributes of
|
765
|
+
# the request, the resource, or both. To learn which resources support
|
766
|
+
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
767
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
768
|
+
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
769
|
+
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
770
|
+
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
771
|
+
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
772
|
+
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
773
|
+
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
774
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
|
775
|
+
# bindings: - members: - user:mike@example.com - group:admins@example.com -
|
776
|
+
# domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
|
777
|
+
# role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
|
778
|
+
# com role: roles/resourcemanager.organizationViewer condition: title: expirable
|
779
|
+
# access description: Does not grant access after Sep 2020 expression: request.
|
780
|
+
# time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
|
781
|
+
# a description of IAM and its features, see the [IAM documentation](https://
|
782
|
+
# cloud.google.com/iam/docs/).
|
763
783
|
class Policy
|
764
784
|
include Google::Apis::Core::Hashable
|
765
785
|
|
@@ -768,9 +788,14 @@ module Google
|
|
768
788
|
# @return [Array<Google::Apis::NetworkconnectivityV1::AuditConfig>]
|
769
789
|
attr_accessor :audit_configs
|
770
790
|
|
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
|
791
|
+
# Associates a list of `members`, or principals, with a `role`. Optionally, may
|
792
|
+
# specify a `condition` that determines how and when the `bindings` are applied.
|
793
|
+
# Each of the `bindings` must contain at least one principal. The `bindings` in
|
794
|
+
# a `Policy` can refer to up to 1,500 principals; up to 250 of these principals
|
795
|
+
# can be Google groups. Each occurrence of a principal counts towards these
|
796
|
+
# limits. For example, if the `bindings` grant 50 different roles to `user:alice@
|
797
|
+
# example.com`, and not to any other principal, then you can add another 1,450
|
798
|
+
# principals to the `bindings` in the `Policy`.
|
774
799
|
# Corresponds to the JSON property `bindings`
|
775
800
|
# @return [Array<Google::Apis::NetworkconnectivityV1::Binding>]
|
776
801
|
attr_accessor :bindings
|
@@ -851,11 +876,21 @@ module Google
|
|
851
876
|
end
|
852
877
|
end
|
853
878
|
|
854
|
-
# RoutingVPC contains information about the VPC
|
855
|
-
# a hub's spokes.
|
879
|
+
# RoutingVPC contains information about the VPC networks that are associated
|
880
|
+
# with a hub's spokes.
|
856
881
|
class RoutingVpc
|
857
882
|
include Google::Apis::Core::Hashable
|
858
883
|
|
884
|
+
# Output only. If true, indicates that this VPC network is currently associated
|
885
|
+
# with spokes that use the data transfer feature (spokes where the
|
886
|
+
# site_to_site_data_transfer field is set to true). If you create new spokes
|
887
|
+
# that use data transfer, they must be associated with this VPC network. At most,
|
888
|
+
# one VPC network will have this field set to true.
|
889
|
+
# Corresponds to the JSON property `requiredForNewSiteToSiteDataTransferSpokes`
|
890
|
+
# @return [Boolean]
|
891
|
+
attr_accessor :required_for_new_site_to_site_data_transfer_spokes
|
892
|
+
alias_method :required_for_new_site_to_site_data_transfer_spokes?, :required_for_new_site_to_site_data_transfer_spokes
|
893
|
+
|
859
894
|
# The URI of the VPC network.
|
860
895
|
# Corresponds to the JSON property `uri`
|
861
896
|
# @return [String]
|
@@ -867,6 +902,7 @@ module Google
|
|
867
902
|
|
868
903
|
# Update properties of this object
|
869
904
|
def update!(**args)
|
905
|
+
@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
906
|
@uri = args[:uri] if args.key?(:uri)
|
871
907
|
end
|
872
908
|
end
|
@@ -877,31 +913,31 @@ module Google
|
|
877
913
|
|
878
914
|
# An Identity and Access Management (IAM) policy, which specifies access
|
879
915
|
# 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/).
|
916
|
+
# A `binding` binds one or more `members`, or principals, to a single `role`.
|
917
|
+
# Principals can be user accounts, service accounts, Google groups, and domains (
|
918
|
+
# such as G Suite). A `role` is a named list of permissions; each `role` can be
|
919
|
+
# an IAM predefined role or a user-created custom role. For some types of Google
|
920
|
+
# Cloud resources, a `binding` can also specify a `condition`, which is a
|
921
|
+
# logical expression that allows access to a resource only if the expression
|
922
|
+
# evaluates to `true`. A condition can add constraints based on attributes of
|
923
|
+
# the request, the resource, or both. To learn which resources support
|
924
|
+
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
925
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
926
|
+
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
927
|
+
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
928
|
+
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
929
|
+
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
930
|
+
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
931
|
+
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
932
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
|
933
|
+
# bindings: - members: - user:mike@example.com - group:admins@example.com -
|
934
|
+
# domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
|
935
|
+
# role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
|
936
|
+
# com role: roles/resourcemanager.organizationViewer condition: title: expirable
|
937
|
+
# access description: Does not grant access after Sep 2020 expression: request.
|
938
|
+
# time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
|
939
|
+
# a description of IAM and its features, see the [IAM documentation](https://
|
940
|
+
# cloud.google.com/iam/docs/).
|
905
941
|
# Corresponds to the JSON property `policy`
|
906
942
|
# @return [Google::Apis::NetworkconnectivityV1::Policy]
|
907
943
|
attr_accessor :policy
|
@@ -942,7 +978,7 @@ module Google
|
|
942
978
|
# @return [String]
|
943
979
|
attr_accessor :description
|
944
980
|
|
945
|
-
# Immutable. The
|
981
|
+
# Immutable. The name of the hub that this spoke is attached to.
|
946
982
|
# Corresponds to the JSON property `hub`
|
947
983
|
# @return [String]
|
948
984
|
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.6.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.4.
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220125"
|
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.6.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-31 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-networkconnectivity_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkconnectivity_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkconnectivity_v1/v0.6.0
|
62
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: []
|
@@ -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.5
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Network Connectivity API V1
|