google-apis-cloudasset_v1beta1 0.9.0 → 0.13.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 25b62ef31547dbca30d08673d16c1ca395680494dfceb1e5a8eb195f65b32258
4
- data.tar.gz: e5ad3c2fdd8802e568832f94025828a8bc6287828de6ace59bc79d61a6774e2a
3
+ metadata.gz: 955bd5dfa051d99cb0d2f8e1a380097336e5bb44eac945a07b7feb6173e5fda1
4
+ data.tar.gz: 1f91c72405d12e6ac89549915706c8769c3c9e2128927dc87c5632b8b23255e4
5
5
  SHA512:
6
- metadata.gz: 568635f98d9fdf88669c970be21068c5a851c35be004ffad066bff479e288290844ed413e3dd7c10b1ee9ed2b1e1a3f1768132bd5c15e4ebca7cccc1f127a4b5
7
- data.tar.gz: 9ae9da4a3b241c63a109763be695190ca262eadb217c5dc3a2f720c6a1e5d0c1f56abb5046ea19febe78a8087e6cca3ed0c7fb2400d9161ceb8c37aefbc34b02
6
+ metadata.gz: 4644be638b852b1e1a213158a7de5c5b96dc3869aa7f4613c35918ead0a7049dd65dd3b37002194e857a774a97a949674c2c1201a0dc9001c0425f46336c8fc5
7
+ data.tar.gz: 1227132c8ece60b86ed294ca2e34b91c69ebf122ae9bb7e1f955bd3b99906873484d09058f1c07a983c03a2e289fd24a9f69e382e3b54e06b82b5e3c353e1e84
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-cloudasset_v1beta1
2
2
 
3
+ ### v0.13.0 (2021-12-14)
4
+
5
+ * Unspecified changes
6
+
7
+ ### v0.12.0 (2021-12-02)
8
+
9
+ * Regenerated from discovery document revision 20211125
10
+
11
+ ### v0.11.0 (2021-10-20)
12
+
13
+ * Regenerated from discovery document revision 20211015
14
+
15
+ ### v0.10.0 (2021-09-01)
16
+
17
+ * Regenerated from discovery document revision 20210813
18
+
3
19
  ### v0.9.0 (2021-07-28)
4
20
 
5
21
  * Regenerated from discovery document revision 20210723
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/cloudasset_v1beta1"
51
51
  client = Google::Apis::CloudassetV1beta1::CloudAssetService.new
52
52
 
53
53
  # Authenticate calls
54
- client.authentication = # ... use the googleauth gem to create credentials
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/master/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/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
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 Cloudasset service in particular.)
67
67
 
@@ -22,6 +22,26 @@ module Google
22
22
  module Apis
23
23
  module CloudassetV1beta1
24
24
 
25
+ # Represents the metadata of the longrunning operation for the
26
+ # AnalyzeIamPolicyLongrunning rpc.
27
+ class AnalyzeIamPolicyLongrunningMetadata
28
+ include Google::Apis::Core::Hashable
29
+
30
+ # Output only. The time the operation was created.
31
+ # Corresponds to the JSON property `createTime`
32
+ # @return [String]
33
+ attr_accessor :create_time
34
+
35
+ def initialize(**args)
36
+ update!(**args)
37
+ end
38
+
39
+ # Update properties of this object
40
+ def update!(**args)
41
+ @create_time = args[:create_time] if args.key?(:create_time)
42
+ end
43
+ end
44
+
25
45
  # A response message for AssetService.AnalyzeIamPolicyLongrunning.
26
46
  class AnalyzeIamPolicyLongrunningResponse
27
47
  include Google::Apis::Core::Hashable
@@ -69,31 +89,31 @@ module Google
69
89
 
70
90
  # An Identity and Access Management (IAM) policy, which specifies access
71
91
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
72
- # A `binding` binds one or more `members` to a single `role`. Members can be
73
- # user accounts, service accounts, Google groups, and domains (such as G Suite).
74
- # A `role` is a named list of permissions; each `role` can be an IAM predefined
75
- # role or a user-created custom role. For some types of Google Cloud resources,
76
- # a `binding` can also specify a `condition`, which is a logical expression that
77
- # allows access to a resource only if the expression evaluates to `true`. A
78
- # condition can add constraints based on attributes of the request, the resource,
79
- # or both. To learn which resources support conditions in their IAM policies,
80
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
81
- # resource-policies). **JSON example:** ` "bindings": [ ` "role": "roles/
82
- # resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "
83
- # group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@
84
- # appspot.gserviceaccount.com" ] `, ` "role": "roles/resourcemanager.
85
- # organizationViewer", "members": [ "user:eve@example.com" ], "condition": ` "
86
- # title": "expirable access", "description": "Does not grant access after Sep
87
- # 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", `
88
- # ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:** bindings: -
89
- # members: - user:mike@example.com - group:admins@example.com - domain:google.
90
- # com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/
91
- # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
92
- # roles/resourcemanager.organizationViewer condition: title: expirable access
93
- # description: Does not grant access after Sep 2020 expression: request.time <
94
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
95
- # description of IAM and its features, see the [IAM documentation](https://cloud.
96
- # google.com/iam/docs/).
92
+ # A `binding` binds one or more `members`, or principals, to a single `role`.
93
+ # Principals can be user accounts, service accounts, Google groups, and domains (
94
+ # such as G Suite). A `role` is a named list of permissions; each `role` can be
95
+ # an IAM predefined role or a user-created custom role. For some types of Google
96
+ # Cloud resources, a `binding` can also specify a `condition`, which is a
97
+ # logical expression that allows access to a resource only if the expression
98
+ # evaluates to `true`. A condition can add constraints based on attributes of
99
+ # the request, the resource, or both. To learn which resources support
100
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
101
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
102
+ # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
103
+ # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
104
+ # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
105
+ # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
106
+ # ], "condition": ` "title": "expirable access", "description": "Does not grant
107
+ # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
108
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
109
+ # bindings: - members: - user:mike@example.com - group:admins@example.com -
110
+ # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
111
+ # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
112
+ # com role: roles/resourcemanager.organizationViewer condition: title: expirable
113
+ # access description: Does not grant access after Sep 2020 expression: request.
114
+ # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
115
+ # a description of IAM and its features, see the [IAM documentation](https://
116
+ # cloud.google.com/iam/docs/).
97
117
  # Corresponds to the JSON property `iamPolicy`
98
118
  # @return [Google::Apis::CloudassetV1beta1::Policy]
99
119
  attr_accessor :iam_policy
@@ -239,7 +259,7 @@ module Google
239
259
  end
240
260
  end
241
261
 
242
- # Associates `members` with a `role`.
262
+ # Associates `members`, or principals, with a `role`.
243
263
  class Binding
244
264
  include Google::Apis::Core::Hashable
245
265
 
@@ -262,7 +282,7 @@ module Google
262
282
  # @return [Google::Apis::CloudassetV1beta1::Expr]
263
283
  attr_accessor :condition
264
284
 
265
- # Specifies the identities requesting access for a Cloud Platform resource. `
285
+ # Specifies the principals requesting access for a Cloud Platform resource. `
266
286
  # members` can have the following values: * `allUsers`: A special identifier
267
287
  # that represents anyone who is on the internet; with or without a Google
268
288
  # account. * `allAuthenticatedUsers`: A special identifier that represents
@@ -292,8 +312,8 @@ module Google
292
312
  # @return [Array<String>]
293
313
  attr_accessor :members
294
314
 
295
- # Role that is assigned to `members`. For example, `roles/viewer`, `roles/editor`
296
- # , or `roles/owner`.
315
+ # Role that is assigned to the list of `members`, or principals. For example, `
316
+ # roles/viewer`, `roles/editor`, or `roles/owner`.
297
317
  # Corresponds to the JSON property `role`
298
318
  # @return [String]
299
319
  attr_accessor :role
@@ -487,31 +507,31 @@ module Google
487
507
 
488
508
  # An Identity and Access Management (IAM) policy, which specifies access
489
509
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
490
- # A `binding` binds one or more `members` to a single `role`. Members can be
491
- # user accounts, service accounts, Google groups, and domains (such as G Suite).
492
- # A `role` is a named list of permissions; each `role` can be an IAM predefined
493
- # role or a user-created custom role. For some types of Google Cloud resources,
494
- # a `binding` can also specify a `condition`, which is a logical expression that
495
- # allows access to a resource only if the expression evaluates to `true`. A
496
- # condition can add constraints based on attributes of the request, the resource,
497
- # or both. To learn which resources support conditions in their IAM policies,
498
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
499
- # resource-policies). **JSON example:** ` "bindings": [ ` "role": "roles/
500
- # resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "
501
- # group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@
502
- # appspot.gserviceaccount.com" ] `, ` "role": "roles/resourcemanager.
503
- # organizationViewer", "members": [ "user:eve@example.com" ], "condition": ` "
504
- # title": "expirable access", "description": "Does not grant access after Sep
505
- # 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", `
506
- # ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:** bindings: -
507
- # members: - user:mike@example.com - group:admins@example.com - domain:google.
508
- # com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/
509
- # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
510
- # roles/resourcemanager.organizationViewer condition: title: expirable access
511
- # description: Does not grant access after Sep 2020 expression: request.time <
512
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
513
- # description of IAM and its features, see the [IAM documentation](https://cloud.
514
- # google.com/iam/docs/).
510
+ # A `binding` binds one or more `members`, or principals, to a single `role`.
511
+ # Principals can be user accounts, service accounts, Google groups, and domains (
512
+ # such as G Suite). A `role` is a named list of permissions; each `role` can be
513
+ # an IAM predefined role or a user-created custom role. For some types of Google
514
+ # Cloud resources, a `binding` can also specify a `condition`, which is a
515
+ # logical expression that allows access to a resource only if the expression
516
+ # evaluates to `true`. A condition can add constraints based on attributes of
517
+ # the request, the resource, or both. To learn which resources support
518
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
519
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
520
+ # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
521
+ # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
522
+ # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
523
+ # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
524
+ # ], "condition": ` "title": "expirable access", "description": "Does not grant
525
+ # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
526
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
527
+ # bindings: - members: - user:mike@example.com - group:admins@example.com -
528
+ # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
529
+ # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
530
+ # com role: roles/resourcemanager.organizationViewer condition: title: expirable
531
+ # access description: Does not grant access after Sep 2020 expression: request.
532
+ # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
533
+ # a description of IAM and its features, see the [IAM documentation](https://
534
+ # cloud.google.com/iam/docs/).
515
535
  # Corresponds to the JSON property `iamPolicy`
516
536
  # @return [Google::Apis::CloudassetV1beta1::Policy]
517
537
  attr_accessor :iam_policy
@@ -1119,6 +1139,21 @@ module Google
1119
1139
  # @return [String]
1120
1140
  attr_accessor :parent
1121
1141
 
1142
+ # The scopes of a policy define which resources an ACM policy can restrict, and
1143
+ # where ACM resources can be referenced. For example, a policy with scopes=["
1144
+ # folders/123"] has the following behavior: - vpcsc perimeters can only restrict
1145
+ # projects within folders/123 - access levels can only be referenced by
1146
+ # resources within folders/123. If empty, there are no limitations on which
1147
+ # resources can be restricted by an ACM policy, and there are no limitations on
1148
+ # where ACM resources can be referenced. Only one policy can include a given
1149
+ # scope (attempting to create a second policy which includes "folders/123" will
1150
+ # result in an error). Currently, scopes cannot be modified after a policy is
1151
+ # created. Currently, policies can only have a single scope. Format: list of `
1152
+ # folders/`folder_number`` or `projects/`project_number``
1153
+ # Corresponds to the JSON property `scopes`
1154
+ # @return [Array<String>]
1155
+ attr_accessor :scopes
1156
+
1122
1157
  # Required. Human readable title. Does not affect behavior.
1123
1158
  # Corresponds to the JSON property `title`
1124
1159
  # @return [String]
@@ -1133,6 +1168,7 @@ module Google
1133
1168
  @etag = args[:etag] if args.key?(:etag)
1134
1169
  @name = args[:name] if args.key?(:name)
1135
1170
  @parent = args[:parent] if args.key?(:parent)
1171
+ @scopes = args[:scopes] if args.key?(:scopes)
1136
1172
  @title = args[:title] if args.key?(:title)
1137
1173
  end
1138
1174
  end
@@ -1950,31 +1986,31 @@ module Google
1950
1986
 
1951
1987
  # An Identity and Access Management (IAM) policy, which specifies access
1952
1988
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
1953
- # A `binding` binds one or more `members` to a single `role`. Members can be
1954
- # user accounts, service accounts, Google groups, and domains (such as G Suite).
1955
- # A `role` is a named list of permissions; each `role` can be an IAM predefined
1956
- # role or a user-created custom role. For some types of Google Cloud resources,
1957
- # a `binding` can also specify a `condition`, which is a logical expression that
1958
- # allows access to a resource only if the expression evaluates to `true`. A
1959
- # condition can add constraints based on attributes of the request, the resource,
1960
- # or both. To learn which resources support conditions in their IAM policies,
1961
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
1962
- # resource-policies). **JSON example:** ` "bindings": [ ` "role": "roles/
1963
- # resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "
1964
- # group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@
1965
- # appspot.gserviceaccount.com" ] `, ` "role": "roles/resourcemanager.
1966
- # organizationViewer", "members": [ "user:eve@example.com" ], "condition": ` "
1967
- # title": "expirable access", "description": "Does not grant access after Sep
1968
- # 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", `
1969
- # ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:** bindings: -
1970
- # members: - user:mike@example.com - group:admins@example.com - domain:google.
1971
- # com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/
1972
- # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
1973
- # roles/resourcemanager.organizationViewer condition: title: expirable access
1974
- # description: Does not grant access after Sep 2020 expression: request.time <
1975
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
1976
- # description of IAM and its features, see the [IAM documentation](https://cloud.
1977
- # google.com/iam/docs/).
1989
+ # A `binding` binds one or more `members`, or principals, to a single `role`.
1990
+ # Principals can be user accounts, service accounts, Google groups, and domains (
1991
+ # such as G Suite). A `role` is a named list of permissions; each `role` can be
1992
+ # an IAM predefined role or a user-created custom role. For some types of Google
1993
+ # Cloud resources, a `binding` can also specify a `condition`, which is a
1994
+ # logical expression that allows access to a resource only if the expression
1995
+ # evaluates to `true`. A condition can add constraints based on attributes of
1996
+ # the request, the resource, or both. To learn which resources support
1997
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
1998
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
1999
+ # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
2000
+ # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
2001
+ # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
2002
+ # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
2003
+ # ], "condition": ` "title": "expirable access", "description": "Does not grant
2004
+ # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
2005
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
2006
+ # bindings: - members: - user:mike@example.com - group:admins@example.com -
2007
+ # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
2008
+ # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
2009
+ # com role: roles/resourcemanager.organizationViewer condition: title: expirable
2010
+ # access description: Does not grant access after Sep 2020 expression: request.
2011
+ # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
2012
+ # a description of IAM and its features, see the [IAM documentation](https://
2013
+ # cloud.google.com/iam/docs/).
1978
2014
  class Policy
1979
2015
  include Google::Apis::Core::Hashable
1980
2016
 
@@ -1983,9 +2019,14 @@ module Google
1983
2019
  # @return [Array<Google::Apis::CloudassetV1beta1::AuditConfig>]
1984
2020
  attr_accessor :audit_configs
1985
2021
 
1986
- # Associates a list of `members` to a `role`. Optionally, may specify a `
1987
- # condition` that determines how and when the `bindings` are applied. Each of
1988
- # the `bindings` must contain at least one member.
2022
+ # Associates a list of `members`, or principals, with a `role`. Optionally, may
2023
+ # specify a `condition` that determines how and when the `bindings` are applied.
2024
+ # Each of the `bindings` must contain at least one principal. The `bindings` in
2025
+ # a `Policy` can refer to up to 1,500 principals; up to 250 of these principals
2026
+ # can be Google groups. Each occurrence of a principal counts towards these
2027
+ # limits. For example, if the `bindings` grant 50 different roles to `user:alice@
2028
+ # example.com`, and not to any other principal, then you can add another 1,450
2029
+ # principals to the `bindings` in the `Policy`.
1989
2030
  # Corresponds to the JSON property `bindings`
1990
2031
  # @return [Array<Google::Apis::CloudassetV1beta1::Binding>]
1991
2032
  attr_accessor :bindings
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudassetV1beta1
18
18
  # Version of the google-apis-cloudasset_v1beta1 gem
19
- GEM_VERSION = "0.9.0"
19
+ GEM_VERSION = "0.13.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 = "20210723"
25
+ REVISION = "20211125"
26
26
  end
27
27
  end
28
28
  end
@@ -22,6 +22,12 @@ module Google
22
22
  module Apis
23
23
  module CloudassetV1beta1
24
24
 
25
+ class AnalyzeIamPolicyLongrunningMetadata
26
+ class Representation < Google::Apis::Core::JsonRepresentation; end
27
+
28
+ include Google::Apis::Core::JsonObjectSupport
29
+ end
30
+
25
31
  class AnalyzeIamPolicyLongrunningResponse
26
32
  class Representation < Google::Apis::Core::JsonRepresentation; end
27
33
 
@@ -286,6 +292,13 @@ module Google
286
292
  include Google::Apis::Core::JsonObjectSupport
287
293
  end
288
294
 
295
+ class AnalyzeIamPolicyLongrunningMetadata
296
+ # @private
297
+ class Representation < Google::Apis::Core::JsonRepresentation
298
+ property :create_time, as: 'createTime'
299
+ end
300
+ end
301
+
289
302
  class AnalyzeIamPolicyLongrunningResponse
290
303
  # @private
291
304
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -501,6 +514,7 @@ module Google
501
514
  property :etag, as: 'etag'
502
515
  property :name, as: 'name'
503
516
  property :parent, as: 'parent'
517
+ collection :scopes, as: 'scopes'
504
518
  property :title, as: 'title'
505
519
  end
506
520
  end
@@ -29,7 +29,7 @@ module Google
29
29
  # This is NOT the gem version.
30
30
  VERSION = 'V1beta1'
31
31
 
32
- # See, edit, configure, and delete your Google Cloud Platform data
32
+ # See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
33
33
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
34
34
  end
35
35
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudasset_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.13.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-08-02 00:00:00.000000000 Z
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/master/generated/google-apis-cloudasset_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1beta1/v0.9.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudasset_v1beta1
60
+ changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudasset_v1beta1/CHANGELOG.md
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1beta1/v0.13.0
62
+ source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudasset_v1beta1
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.2.17
78
+ rubygems_version: 3.3.4
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Asset API V1beta1