google-identity-access_context_manager-v1 0.1.2 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (24) hide show
  1. checksums.yaml +4 -4
  2. data/AUTHENTICATION.md +1 -1
  3. data/README.md +11 -6
  4. data/lib/google/identity/access_context_manager/v1/access_context_manager/client.rb +437 -114
  5. data/lib/google/identity/access_context_manager/v1/access_context_manager/operations.rb +3 -0
  6. data/lib/google/identity/access_context_manager/v1/access_context_manager.rb +8 -8
  7. data/lib/google/identity/access_context_manager/v1/version.rb +1 -1
  8. data/lib/google/identity/access_context_manager/v1.rb +2 -0
  9. data/lib/google/identity/accesscontextmanager/type/device_resources_pb.rb +0 -1
  10. data/lib/google/identity/accesscontextmanager/v1/access_context_manager_pb.rb +4 -1
  11. data/lib/google/identity/accesscontextmanager/v1/access_context_manager_services_pb.rb +128 -112
  12. data/lib/google/identity/accesscontextmanager/v1/access_level_pb.rb +2 -2
  13. data/lib/google/identity/accesscontextmanager/v1/access_policy_pb.rb +3 -2
  14. data/lib/google/identity/accesscontextmanager/v1/gcp_user_access_binding_pb.rb +2 -2
  15. data/lib/google/identity/accesscontextmanager/v1/service_perimeter_pb.rb +13 -12
  16. data/proto_docs/google/iam/v1/iam_policy.rb +87 -0
  17. data/proto_docs/google/iam/v1/options.rb +50 -0
  18. data/proto_docs/google/iam/v1/policy.rb +418 -0
  19. data/proto_docs/google/identity/accesscontextmanager/v1/access_context_manager.rb +1 -1
  20. data/proto_docs/google/identity/accesscontextmanager/v1/access_policy.rb +16 -0
  21. data/proto_docs/google/identity/accesscontextmanager/v1/service_perimeter.rb +72 -64
  22. data/proto_docs/google/protobuf/any.rb +3 -3
  23. data/proto_docs/google/protobuf/empty.rb +0 -2
  24. metadata +29 -12
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ffc4f374aaa8e8965d1c11f149b7262162090ba20718d1a069834a2c0c0f7eac
4
- data.tar.gz: 7e5e62c782968c6f628e01e24f046b45fd2a2357c45c3ef3649580b50700f9e4
3
+ metadata.gz: 4cd39714c988eb018b3766d4cba3021786997a95bb57785b4fc4eb7e420d0f97
4
+ data.tar.gz: 2716d6a822bddc048fb0072dce17316690fdacd3650ae7a546bbbb2f0f28a459
5
5
  SHA512:
6
- metadata.gz: b857cd867db4e61097d7dd7686bbf93a9c617b308046925d8025bdca426dfb1f9e592c881296c2fd341734ab70c0843fc4b76285107afd26aa68cee180241c26
7
- data.tar.gz: 9e995f6aeefbf9415a2698caad31ed7043bb40c7c2380078ee3f4713476c0fdc23959cdf2a6c70053e4e1498bd0d7cda9e3db9b72fe0a1238aee50adad4a76ba
6
+ metadata.gz: f3dd5d90b72d2796609789dfc76130393349627e86a8605a61d3dc9bb7e189f56fce307480669dd3bb1cd7aa5fdbba1c4d78c762b9e8eaf00ff63502a332636a
7
+ data.tar.gz: 5157943941bfa549d3df5942c8f4a491fa7a54defaa08ae32f6cef79d71ad6ffb8f3fa4da115ec00ce42d8086cc4a9d7eb2117d658970d5509cee49d1c72834d
data/AUTHENTICATION.md CHANGED
@@ -112,7 +112,7 @@ credentials are discovered.
112
112
  To configure your system for this, simply:
113
113
 
114
114
  1. [Download and install the Cloud SDK](https://cloud.google.com/sdk)
115
- 2. Authenticate using OAuth 2.0 `$ gcloud auth login`
115
+ 2. Authenticate using OAuth 2.0 `$ gcloud auth application-default login`
116
116
  3. Write code as if already authenticated.
117
117
 
118
118
  **NOTE:** This is _not_ recommended for running in production. The Cloud SDK
data/README.md CHANGED
@@ -37,7 +37,7 @@ request = ::Google::Identity::AccessContextManager::V1::ListAccessPoliciesReques
37
37
  response = client.list_access_policies request
38
38
  ```
39
39
 
40
- View the [Client Library Documentation](https://googleapis.dev/ruby/google-identity-access_context_manager-v1/latest)
40
+ View the [Client Library Documentation](https://cloud.google.com/ruby/docs/reference/google-identity-access_context_manager-v1/latest)
41
41
  for class and method documentation.
42
42
 
43
43
  See also the [Product Documentation](https://cloud.google.com/access-context-manager/)
@@ -69,16 +69,21 @@ module GRPC
69
69
  end
70
70
  ```
71
71
 
72
+
73
+ ## Google Cloud Samples
74
+
75
+ To browse ready to use code samples check [Google Cloud Samples](https://cloud.google.com/docs/samples).
76
+
72
77
  ## Supported Ruby Versions
73
78
 
74
- This library is supported on Ruby 2.5+.
79
+ This library is supported on Ruby 2.6+.
75
80
 
76
81
  Google provides official support for Ruby versions that are actively supported
77
82
  by Ruby Core—that is, Ruby versions that are either in normal maintenance or
78
- in security maintenance, and not end of life. Currently, this means Ruby 2.5
79
- and later. Older versions of Ruby _may_ still work, but are unsupported and not
80
- recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details
81
- about the Ruby support schedule.
83
+ in security maintenance, and not end of life. Older versions of Ruby _may_
84
+ still work, but are unsupported and not recommended. See
85
+ https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby
86
+ support schedule.
82
87
 
83
88
  ## Which client should I use?
84
89