google-apis-cloudasset_v1p5beta1 0.8.0 → 0.12.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: aad54ab2df905d24a19433f320e6b9b9854bb47e372f6e4abab1005c5aa822c1
4
- data.tar.gz: 100b01e0c703aeb7950dc37f87648b945bccbac0842dcc827215a7f2bbe59abc
3
+ metadata.gz: 0dfa8ecb98492c0a4c95ec7184332751c1e13d99c7f3a65d17067aa482f39691
4
+ data.tar.gz: 8775a597a0b49c58117fe97e41773616058cd91f92cbb0c6b6e91d395547d811
5
5
  SHA512:
6
- metadata.gz: 6ffd2a49ed82b14785fdbb34c5723fddf8856e8864c1b0d6dc781f886f3bbc103fbe729d6641401595a1ff56222e87c1d7b50ce38dfdcc13290ec1c342440a64
7
- data.tar.gz: 7291aba7f8927d6690f9d59c2fa80db7829322e77fe0d872b3915e6a9eedeff106a552089b91dcd8ef4c6dacaa36761013f3c0533aa79927d7d3a19a68f1d909
6
+ metadata.gz: 608eb575df1d1360c8db47620f03d03c5ce8020b3aee457a3637f214422313f9698887cbdfdf00c3c7845010f758cdc61c1ec767f21c586bec1098cec42b67a8
7
+ data.tar.gz: a2152335c3a72cbeb0722b420f7021efad7bb8ae709b6ac8410a6a51a6e0a2fcb5c6863a281818fee0272af2453066537ec482a9726513e957145c16ada76b6c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-cloudasset_v1p5beta1
2
2
 
3
+ ### v0.12.0 (2021-10-20)
4
+
5
+ * Regenerated from discovery document revision 20211015
6
+
7
+ ### v0.11.0 (2021-09-01)
8
+
9
+ * Regenerated from discovery document revision 20210813
10
+
11
+ ### v0.10.0 (2021-07-28)
12
+
13
+ * Regenerated from discovery document revision 20210723
14
+
15
+ ### v0.9.0 (2021-06-29)
16
+
17
+ * Regenerated using generator version 0.4.0
18
+
3
19
  ### v0.8.0 (2021-06-24)
4
20
 
5
21
  * Regenerated using generator version 0.3.0
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/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 CloudassetV1p5beta1
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
@@ -79,31 +99,31 @@ module Google
79
99
 
80
100
  # An Identity and Access Management (IAM) policy, which specifies access
81
101
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
82
- # A `binding` binds one or more `members` to a single `role`. Members can be
83
- # user accounts, service accounts, Google groups, and domains (such as G Suite).
84
- # A `role` is a named list of permissions; each `role` can be an IAM predefined
85
- # role or a user-created custom role. For some types of Google Cloud resources,
86
- # a `binding` can also specify a `condition`, which is a logical expression that
87
- # allows access to a resource only if the expression evaluates to `true`. A
88
- # condition can add constraints based on attributes of the request, the resource,
89
- # or both. To learn which resources support conditions in their IAM policies,
90
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
91
- # resource-policies). **JSON example:** ` "bindings": [ ` "role": "roles/
92
- # resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "
93
- # group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@
94
- # appspot.gserviceaccount.com" ] `, ` "role": "roles/resourcemanager.
95
- # organizationViewer", "members": [ "user:eve@example.com" ], "condition": ` "
96
- # title": "expirable access", "description": "Does not grant access after Sep
97
- # 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", `
98
- # ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:** bindings: -
99
- # members: - user:mike@example.com - group:admins@example.com - domain:google.
100
- # com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/
101
- # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
102
- # roles/resourcemanager.organizationViewer condition: title: expirable access
103
- # description: Does not grant access after Sep 2020 expression: request.time <
104
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
105
- # description of IAM and its features, see the [IAM documentation](https://cloud.
106
- # google.com/iam/docs/).
102
+ # A `binding` binds one or more `members`, or principals, to a single `role`.
103
+ # Principals can be user accounts, service accounts, Google groups, and domains (
104
+ # such as G Suite). A `role` is a named list of permissions; each `role` can be
105
+ # an IAM predefined role or a user-created custom role. For some types of Google
106
+ # Cloud resources, a `binding` can also specify a `condition`, which is a
107
+ # logical expression that allows access to a resource only if the expression
108
+ # evaluates to `true`. A condition can add constraints based on attributes of
109
+ # the request, the resource, or both. To learn which resources support
110
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
111
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
112
+ # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
113
+ # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
114
+ # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
115
+ # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
116
+ # ], "condition": ` "title": "expirable access", "description": "Does not grant
117
+ # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
118
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
119
+ # bindings: - members: - user:mike@example.com - group:admins@example.com -
120
+ # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
121
+ # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
122
+ # com role: roles/resourcemanager.organizationViewer condition: title: expirable
123
+ # access description: Does not grant access after Sep 2020 expression: request.
124
+ # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
125
+ # a description of IAM and its features, see the [IAM documentation](https://
126
+ # cloud.google.com/iam/docs/).
107
127
  # Corresponds to the JSON property `iamPolicy`
108
128
  # @return [Google::Apis::CloudassetV1p5beta1::Policy]
109
129
  attr_accessor :iam_policy
@@ -231,7 +251,7 @@ module Google
231
251
  end
232
252
  end
233
253
 
234
- # Associates `members` with a `role`.
254
+ # Associates `members`, or principals, with a `role`.
235
255
  class Binding
236
256
  include Google::Apis::Core::Hashable
237
257
 
@@ -254,7 +274,7 @@ module Google
254
274
  # @return [Google::Apis::CloudassetV1p5beta1::Expr]
255
275
  attr_accessor :condition
256
276
 
257
- # Specifies the identities requesting access for a Cloud Platform resource. `
277
+ # Specifies the principals requesting access for a Cloud Platform resource. `
258
278
  # members` can have the following values: * `allUsers`: A special identifier
259
279
  # that represents anyone who is on the internet; with or without a Google
260
280
  # account. * `allAuthenticatedUsers`: A special identifier that represents
@@ -284,8 +304,8 @@ module Google
284
304
  # @return [Array<String>]
285
305
  attr_accessor :members
286
306
 
287
- # Role that is assigned to `members`. For example, `roles/viewer`, `roles/editor`
288
- # , or `roles/owner`.
307
+ # Role that is assigned to the list of `members`, or principals. For example, `
308
+ # roles/viewer`, `roles/editor`, or `roles/owner`.
289
309
  # Corresponds to the JSON property `role`
290
310
  # @return [String]
291
311
  attr_accessor :role
@@ -400,31 +420,31 @@ module Google
400
420
 
401
421
  # An Identity and Access Management (IAM) policy, which specifies access
402
422
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
403
- # A `binding` binds one or more `members` to a single `role`. Members can be
404
- # user accounts, service accounts, Google groups, and domains (such as G Suite).
405
- # A `role` is a named list of permissions; each `role` can be an IAM predefined
406
- # role or a user-created custom role. For some types of Google Cloud resources,
407
- # a `binding` can also specify a `condition`, which is a logical expression that
408
- # allows access to a resource only if the expression evaluates to `true`. A
409
- # condition can add constraints based on attributes of the request, the resource,
410
- # or both. To learn which resources support conditions in their IAM policies,
411
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
412
- # resource-policies). **JSON example:** ` "bindings": [ ` "role": "roles/
413
- # resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "
414
- # group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@
415
- # appspot.gserviceaccount.com" ] `, ` "role": "roles/resourcemanager.
416
- # organizationViewer", "members": [ "user:eve@example.com" ], "condition": ` "
417
- # title": "expirable access", "description": "Does not grant access after Sep
418
- # 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", `
419
- # ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:** bindings: -
420
- # members: - user:mike@example.com - group:admins@example.com - domain:google.
421
- # com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/
422
- # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
423
- # roles/resourcemanager.organizationViewer condition: title: expirable access
424
- # description: Does not grant access after Sep 2020 expression: request.time <
425
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
426
- # description of IAM and its features, see the [IAM documentation](https://cloud.
427
- # google.com/iam/docs/).
423
+ # A `binding` binds one or more `members`, or principals, to a single `role`.
424
+ # Principals can be user accounts, service accounts, Google groups, and domains (
425
+ # such as G Suite). A `role` is a named list of permissions; each `role` can be
426
+ # an IAM predefined role or a user-created custom role. For some types of Google
427
+ # Cloud resources, a `binding` can also specify a `condition`, which is a
428
+ # logical expression that allows access to a resource only if the expression
429
+ # evaluates to `true`. A condition can add constraints based on attributes of
430
+ # the request, the resource, or both. To learn which resources support
431
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
432
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
433
+ # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
434
+ # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
435
+ # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
436
+ # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
437
+ # ], "condition": ` "title": "expirable access", "description": "Does not grant
438
+ # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
439
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
440
+ # bindings: - members: - user:mike@example.com - group:admins@example.com -
441
+ # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
442
+ # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
443
+ # com role: roles/resourcemanager.organizationViewer condition: title: expirable
444
+ # access description: Does not grant access after Sep 2020 expression: request.
445
+ # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
446
+ # a description of IAM and its features, see the [IAM documentation](https://
447
+ # cloud.google.com/iam/docs/).
428
448
  # Corresponds to the JSON property `iamPolicy`
429
449
  # @return [Google::Apis::CloudassetV1p5beta1::Policy]
430
450
  attr_accessor :iam_policy
@@ -979,8 +999,8 @@ module Google
979
999
 
980
1000
  # Required. Resource name for the Access Level. The `short_name` component must
981
1001
  # begin with a letter and only include alphanumeric and '_'. Format: `
982
- # accessPolicies/`policy_id`/accessLevels/`short_name``. The maximum length of
983
- # the `short_name` component is 50 characters.
1002
+ # accessPolicies/`access_policy`/accessLevels/`access_level``. The maximum
1003
+ # length of the `access_level` component is 50 characters.
984
1004
  # Corresponds to the JSON property `name`
985
1005
  # @return [String]
986
1006
  attr_accessor :name
@@ -1021,7 +1041,7 @@ module Google
1021
1041
  attr_accessor :etag
1022
1042
 
1023
1043
  # Output only. Resource name of the `AccessPolicy`. Format: `accessPolicies/`
1024
- # policy_id``
1044
+ # access_policy``
1025
1045
  # Corresponds to the JSON property `name`
1026
1046
  # @return [String]
1027
1047
  attr_accessor :name
@@ -1626,7 +1646,7 @@ module Google
1626
1646
 
1627
1647
  # Required. Resource name for the ServicePerimeter. The `short_name` component
1628
1648
  # must begin with a letter and only include alphanumeric and '_'. Format: `
1629
- # accessPolicies/`policy_id`/servicePerimeters/`short_name``
1649
+ # accessPolicies/`access_policy`/servicePerimeters/`service_perimeter``
1630
1650
  # Corresponds to the JSON property `name`
1631
1651
  # @return [String]
1632
1652
  attr_accessor :name
@@ -1815,31 +1835,31 @@ module Google
1815
1835
 
1816
1836
  # An Identity and Access Management (IAM) policy, which specifies access
1817
1837
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
1818
- # A `binding` binds one or more `members` to a single `role`. Members can be
1819
- # user accounts, service accounts, Google groups, and domains (such as G Suite).
1820
- # A `role` is a named list of permissions; each `role` can be an IAM predefined
1821
- # role or a user-created custom role. For some types of Google Cloud resources,
1822
- # a `binding` can also specify a `condition`, which is a logical expression that
1823
- # allows access to a resource only if the expression evaluates to `true`. A
1824
- # condition can add constraints based on attributes of the request, the resource,
1825
- # or both. To learn which resources support conditions in their IAM policies,
1826
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
1827
- # resource-policies). **JSON example:** ` "bindings": [ ` "role": "roles/
1828
- # resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "
1829
- # group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@
1830
- # appspot.gserviceaccount.com" ] `, ` "role": "roles/resourcemanager.
1831
- # organizationViewer", "members": [ "user:eve@example.com" ], "condition": ` "
1832
- # title": "expirable access", "description": "Does not grant access after Sep
1833
- # 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", `
1834
- # ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:** bindings: -
1835
- # members: - user:mike@example.com - group:admins@example.com - domain:google.
1836
- # com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/
1837
- # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
1838
- # roles/resourcemanager.organizationViewer condition: title: expirable access
1839
- # description: Does not grant access after Sep 2020 expression: request.time <
1840
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
1841
- # description of IAM and its features, see the [IAM documentation](https://cloud.
1842
- # google.com/iam/docs/).
1838
+ # A `binding` binds one or more `members`, or principals, to a single `role`.
1839
+ # Principals can be user accounts, service accounts, Google groups, and domains (
1840
+ # such as G Suite). A `role` is a named list of permissions; each `role` can be
1841
+ # an IAM predefined role or a user-created custom role. For some types of Google
1842
+ # Cloud resources, a `binding` can also specify a `condition`, which is a
1843
+ # logical expression that allows access to a resource only if the expression
1844
+ # evaluates to `true`. A condition can add constraints based on attributes of
1845
+ # the request, the resource, or both. To learn which resources support
1846
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
1847
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
1848
+ # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
1849
+ # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
1850
+ # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
1851
+ # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
1852
+ # ], "condition": ` "title": "expirable access", "description": "Does not grant
1853
+ # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
1854
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
1855
+ # bindings: - members: - user:mike@example.com - group:admins@example.com -
1856
+ # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
1857
+ # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
1858
+ # com role: roles/resourcemanager.organizationViewer condition: title: expirable
1859
+ # access description: Does not grant access after Sep 2020 expression: request.
1860
+ # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
1861
+ # a description of IAM and its features, see the [IAM documentation](https://
1862
+ # cloud.google.com/iam/docs/).
1843
1863
  class Policy
1844
1864
  include Google::Apis::Core::Hashable
1845
1865
 
@@ -1848,9 +1868,14 @@ module Google
1848
1868
  # @return [Array<Google::Apis::CloudassetV1p5beta1::AuditConfig>]
1849
1869
  attr_accessor :audit_configs
1850
1870
 
1851
- # Associates a list of `members` to a `role`. Optionally, may specify a `
1852
- # condition` that determines how and when the `bindings` are applied. Each of
1853
- # the `bindings` must contain at least one member.
1871
+ # Associates a list of `members`, or principals, with a `role`. Optionally, may
1872
+ # specify a `condition` that determines how and when the `bindings` are applied.
1873
+ # Each of the `bindings` must contain at least one principal. The `bindings` in
1874
+ # a `Policy` can refer to up to 1,500 principals; up to 250 of these principals
1875
+ # can be Google groups. Each occurrence of a principal counts towards these
1876
+ # limits. For example, if the `bindings` grant 50 different roles to `user:alice@
1877
+ # example.com`, and not to any other principal, then you can add another 1,450
1878
+ # principals to the `bindings` in the `Policy`.
1854
1879
  # Corresponds to the JSON property `bindings`
1855
1880
  # @return [Array<Google::Apis::CloudassetV1p5beta1::Binding>]
1856
1881
  attr_accessor :bindings
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudassetV1p5beta1
18
18
  # Version of the google-apis-cloudasset_v1p5beta1 gem
19
- GEM_VERSION = "0.8.0"
19
+ GEM_VERSION = "0.12.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.3.0"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210518"
25
+ REVISION = "20211015"
26
26
  end
27
27
  end
28
28
  end
@@ -22,6 +22,12 @@ module Google
22
22
  module Apis
23
23
  module CloudassetV1p5beta1
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
 
@@ -244,6 +250,13 @@ module Google
244
250
  include Google::Apis::Core::JsonObjectSupport
245
251
  end
246
252
 
253
+ class AnalyzeIamPolicyLongrunningMetadata
254
+ # @private
255
+ class Representation < Google::Apis::Core::JsonRepresentation
256
+ property :create_time, as: 'createTime'
257
+ end
258
+ end
259
+
247
260
  class AnalyzeIamPolicyLongrunningResponse
248
261
  # @private
249
262
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -29,7 +29,7 @@ module Google
29
29
  # This is NOT the gem version.
30
30
  VERSION = 'V1p5beta1'
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_v1p5beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.12.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-06-28 00:00:00.000000000 Z
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
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.3'
19
+ version: '0.4'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.3'
29
+ version: '0.4'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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_v1p5beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1p5beta1/v0.8.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudasset_v1p5beta1
60
+ changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudasset_v1p5beta1/CHANGELOG.md
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1p5beta1/v0.12.0
62
+ source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudasset_v1p5beta1
63
63
  post_install_message:
64
64
  rdoc_options: []
65
65
  require_paths: