google-apis-metastore_v1beta 0.16.0 → 0.17.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 +4 -0
- data/OVERVIEW.md +2 -2
- data/lib/google/apis/metastore_v1beta/classes.rb +32 -27
- data/lib/google/apis/metastore_v1beta/gem_version.rb +2 -2
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0be929a249c80eac90e648fd2bc23e5291b362797f2aedee8b24e5a599d164a9
|
4
|
+
data.tar.gz: f19559a54d9dfae9d66760f862a5b9cc2730694211938045b814d431a33682a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6bed079b208a04af659104c509bc53267235dba42b1eaba9f9f15aef33c841311ee515679f6ec06783484d38a378bbb29ae68562bbe8bec4964f8e600868b0ce
|
7
|
+
data.tar.gz: 7e1f9a5c3d8f63f56c45942a87d91523b8a56df2e00590e381e515b6a1664dd0bb925448daf69a4bc77742fcfe2d1dc376273fda8fe33ddee30d924db706e821
|
data/CHANGELOG.md
CHANGED
data/OVERVIEW.md
CHANGED
@@ -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 Metastore service in particular.)
|
67
67
|
|
@@ -150,7 +150,7 @@ module Google
|
|
150
150
|
end
|
151
151
|
end
|
152
152
|
|
153
|
-
# Associates members with a role.
|
153
|
+
# Associates members, or principals, with a role.
|
154
154
|
class Binding
|
155
155
|
include Google::Apis::Core::Hashable
|
156
156
|
|
@@ -173,7 +173,7 @@ module Google
|
|
173
173
|
# @return [Google::Apis::MetastoreV1beta::Expr]
|
174
174
|
attr_accessor :condition
|
175
175
|
|
176
|
-
# Specifies the
|
176
|
+
# Specifies the principals requesting access for a Cloud Platform resource.
|
177
177
|
# members can have the following values: allUsers: A special identifier that
|
178
178
|
# represents anyone who is on the internet; with or without a Google account.
|
179
179
|
# allAuthenticatedUsers: A special identifier that represents anyone who is
|
@@ -202,8 +202,8 @@ module Google
|
|
202
202
|
# @return [Array<String>]
|
203
203
|
attr_accessor :members
|
204
204
|
|
205
|
-
# Role that is assigned to members. For example,
|
206
|
-
# roles/owner.
|
205
|
+
# Role that is assigned to the list of members, or principals. For example,
|
206
|
+
# roles/viewer, roles/editor, or roles/owner.
|
207
207
|
# Corresponds to the JSON property `role`
|
208
208
|
# @return [String]
|
209
209
|
attr_accessor :role
|
@@ -1074,16 +1074,16 @@ module Google
|
|
1074
1074
|
|
1075
1075
|
# An Identity and Access Management (IAM) policy, which specifies access
|
1076
1076
|
# controls for Google Cloud resources.A Policy is a collection of bindings. A
|
1077
|
-
# binding binds one or more members to a single role.
|
1078
|
-
# accounts, service accounts, Google groups, and domains (such as G
|
1079
|
-
# role is a named list of permissions; each role can be an IAM
|
1080
|
-
# or a user-created custom role.For some types of Google Cloud
|
1081
|
-
# binding can also specify a condition, which is a logical
|
1082
|
-
# allows access to a resource only if the expression evaluates
|
1083
|
-
# condition can add constraints based on attributes of the request,
|
1084
|
-
# or both. To learn which resources support conditions in their
|
1085
|
-
# see the IAM documentation (https://cloud.google.com/iam/help/
|
1086
|
-
# resource-policies).JSON example: ` "bindings": [ ` "role": "roles/
|
1077
|
+
# binding binds one or more members, or principals, to a single role. Principals
|
1078
|
+
# can be user accounts, service accounts, Google groups, and domains (such as G
|
1079
|
+
# Suite). A role is a named list of permissions; each role can be an IAM
|
1080
|
+
# predefined role or a user-created custom role.For some types of Google Cloud
|
1081
|
+
# resources, a binding can also specify a condition, which is a logical
|
1082
|
+
# expression that allows access to a resource only if the expression evaluates
|
1083
|
+
# to true. A condition can add constraints based on attributes of the request,
|
1084
|
+
# the resource, or both. To learn which resources support conditions in their
|
1085
|
+
# IAM policies, see the IAM documentation (https://cloud.google.com/iam/help/
|
1086
|
+
# conditions/resource-policies).JSON example: ` "bindings": [ ` "role": "roles/
|
1087
1087
|
# resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "
|
1088
1088
|
# group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@
|
1089
1089
|
# appspot.gserviceaccount.com" ] `, ` "role": "roles/resourcemanager.
|
@@ -1107,9 +1107,14 @@ module Google
|
|
1107
1107
|
# @return [Array<Google::Apis::MetastoreV1beta::AuditConfig>]
|
1108
1108
|
attr_accessor :audit_configs
|
1109
1109
|
|
1110
|
-
# Associates a list of members
|
1111
|
-
# that determines how and when the bindings are applied.
|
1112
|
-
# must contain at least one
|
1110
|
+
# Associates a list of members, or principals, with a role. Optionally, may
|
1111
|
+
# specify a condition that determines how and when the bindings are applied.
|
1112
|
+
# Each of the bindings must contain at least one principal.The bindings in a
|
1113
|
+
# Policy can refer to up to 1,500 principals; up to 250 of these principals can
|
1114
|
+
# be Google groups. Each occurrence of a principal counts towards these limits.
|
1115
|
+
# For example, if the bindings grant 50 different roles to user:alice@example.
|
1116
|
+
# com, and not to any other principal, then you can add another 1,450 principals
|
1117
|
+
# to the bindings in the Policy.
|
1113
1118
|
# Corresponds to the JSON property `bindings`
|
1114
1119
|
# @return [Array<Google::Apis::MetastoreV1beta::Binding>]
|
1115
1120
|
attr_accessor :bindings
|
@@ -1408,16 +1413,16 @@ module Google
|
|
1408
1413
|
|
1409
1414
|
# An Identity and Access Management (IAM) policy, which specifies access
|
1410
1415
|
# controls for Google Cloud resources.A Policy is a collection of bindings. A
|
1411
|
-
# binding binds one or more members to a single role.
|
1412
|
-
# accounts, service accounts, Google groups, and domains (such as G
|
1413
|
-
# role is a named list of permissions; each role can be an IAM
|
1414
|
-
# or a user-created custom role.For some types of Google Cloud
|
1415
|
-
# binding can also specify a condition, which is a logical
|
1416
|
-
# allows access to a resource only if the expression evaluates
|
1417
|
-
# condition can add constraints based on attributes of the request,
|
1418
|
-
# or both. To learn which resources support conditions in their
|
1419
|
-
# see the IAM documentation (https://cloud.google.com/iam/help/
|
1420
|
-
# resource-policies).JSON example: ` "bindings": [ ` "role": "roles/
|
1416
|
+
# binding binds one or more members, or principals, to a single role. Principals
|
1417
|
+
# can be user accounts, service accounts, Google groups, and domains (such as G
|
1418
|
+
# Suite). A role is a named list of permissions; each role can be an IAM
|
1419
|
+
# predefined role or a user-created custom role.For some types of Google Cloud
|
1420
|
+
# resources, a binding can also specify a condition, which is a logical
|
1421
|
+
# expression that allows access to a resource only if the expression evaluates
|
1422
|
+
# to true. A condition can add constraints based on attributes of the request,
|
1423
|
+
# the resource, or both. To learn which resources support conditions in their
|
1424
|
+
# IAM policies, see the IAM documentation (https://cloud.google.com/iam/help/
|
1425
|
+
# conditions/resource-policies).JSON example: ` "bindings": [ ` "role": "roles/
|
1421
1426
|
# resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "
|
1422
1427
|
# group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@
|
1423
1428
|
# appspot.gserviceaccount.com" ] `, ` "role": "roles/resourcemanager.
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module MetastoreV1beta
|
18
18
|
# Version of the google-apis-metastore_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.17.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 = "20211018"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-metastore_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.17.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: 2021-
|
11
|
+
date: 2021-10-27 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-metastore_v1beta/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-metastore_v1beta/CHANGELOG.md
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1beta/v0.17.0
|
62
|
+
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-metastore_v1beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
65
65
|
require_paths:
|