google-apis-cloudasset_v1p1beta1 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: 4c84dce8908951a0d1cb6264ca9a0e3d591e6d527c8c8347c247f37b0ec56b4f
4
- data.tar.gz: 4bbe554b1f1d5b0fa370c8b8b791347721f2ed4e47902934232310672d6737d0
3
+ metadata.gz: d3f08144dcd82b9bc38e509c2e943ed97c592bacce6214aa888ccf800c01030c
4
+ data.tar.gz: e9bc636f06dab18851964fd724551b2eafa64d26bb5352f433dd597315dd30ac
5
5
  SHA512:
6
- metadata.gz: 02c53ac041b4cfe969bdd241a937c78d9962b73eace7fda6bfc37f8d82bfc0a5548f200f204f4773e785905c4c15b7d319616afb91e3b701fcfa7cf3610a8ed3
7
- data.tar.gz: 723e609f8cfd75e118b5678f886675dc488a2fd1737df194705a98f4f4d90a5e5741676a2bfc3e28413320fbd4366afaa8eac60d6bdd1c20388fadcb1c35a37c
6
+ metadata.gz: 39f313947edf95e4ef76062b9d664cc99d11b027131a687f72306f5541e85abe1477069cf756cd319c6ea46b341aa34ab7b2e0c30f62871dd37206b8e78bd88d
7
+ data.tar.gz: 2cae7827bc83b79e3dd3aa365a011e944fc944621e1d5552d099c432927be2b431301bd01ea2e45e94891892e6c1b3ff1043fc0463ea37e56e9f802a1a696075
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-cloudasset_v1p1beta1
2
2
 
3
+ ### v0.13.0 (2021-12-02)
4
+
5
+ * Regenerated from discovery document revision 20211125
6
+
7
+ ### v0.12.0 (2021-10-20)
8
+
9
+ * Regenerated from discovery document revision 20211015
10
+
11
+ ### v0.11.0 (2021-09-01)
12
+
13
+ * Regenerated from discovery document revision 20210813
14
+
15
+ ### v0.10.0 (2021-07-28)
16
+
17
+ * Regenerated from discovery document revision 20210723
18
+
3
19
  ### v0.9.0 (2021-06-29)
4
20
 
5
21
  * Regenerated using generator version 0.4.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 CloudassetV1p1beta1
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
@@ -106,7 +126,7 @@ module Google
106
126
  end
107
127
  end
108
128
 
109
- # Associates `members` with a `role`.
129
+ # Associates `members`, or principals, with a `role`.
110
130
  class Binding
111
131
  include Google::Apis::Core::Hashable
112
132
 
@@ -129,7 +149,7 @@ module Google
129
149
  # @return [Google::Apis::CloudassetV1p1beta1::Expr]
130
150
  attr_accessor :condition
131
151
 
132
- # Specifies the identities requesting access for a Cloud Platform resource. `
152
+ # Specifies the principals requesting access for a Cloud Platform resource. `
133
153
  # members` can have the following values: * `allUsers`: A special identifier
134
154
  # that represents anyone who is on the internet; with or without a Google
135
155
  # account. * `allAuthenticatedUsers`: A special identifier that represents
@@ -159,8 +179,8 @@ module Google
159
179
  # @return [Array<String>]
160
180
  attr_accessor :members
161
181
 
162
- # Role that is assigned to `members`. For example, `roles/viewer`, `roles/editor`
163
- # , or `roles/owner`.
182
+ # Role that is assigned to the list of `members`, or principals. For example, `
183
+ # roles/viewer`, `roles/editor`, or `roles/owner`.
164
184
  # Corresponds to the JSON property `role`
165
185
  # @return [String]
166
186
  attr_accessor :role
@@ -298,31 +318,31 @@ module Google
298
318
 
299
319
  # An Identity and Access Management (IAM) policy, which specifies access
300
320
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
301
- # A `binding` binds one or more `members` to a single `role`. Members can be
302
- # user accounts, service accounts, Google groups, and domains (such as G Suite).
303
- # A `role` is a named list of permissions; each `role` can be an IAM predefined
304
- # role or a user-created custom role. For some types of Google Cloud resources,
305
- # a `binding` can also specify a `condition`, which is a logical expression that
306
- # allows access to a resource only if the expression evaluates to `true`. A
307
- # condition can add constraints based on attributes of the request, the resource,
308
- # or both. To learn which resources support conditions in their IAM policies,
309
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
310
- # resource-policies). **JSON example:** ` "bindings": [ ` "role": "roles/
311
- # resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "
312
- # group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@
313
- # appspot.gserviceaccount.com" ] `, ` "role": "roles/resourcemanager.
314
- # organizationViewer", "members": [ "user:eve@example.com" ], "condition": ` "
315
- # title": "expirable access", "description": "Does not grant access after Sep
316
- # 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", `
317
- # ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:** bindings: -
318
- # members: - user:mike@example.com - group:admins@example.com - domain:google.
319
- # com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/
320
- # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
321
- # roles/resourcemanager.organizationViewer condition: title: expirable access
322
- # description: Does not grant access after Sep 2020 expression: request.time <
323
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
324
- # description of IAM and its features, see the [IAM documentation](https://cloud.
325
- # google.com/iam/docs/).
321
+ # A `binding` binds one or more `members`, or principals, to a single `role`.
322
+ # Principals can be user accounts, service accounts, Google groups, and domains (
323
+ # such as G Suite). A `role` is a named list of permissions; each `role` can be
324
+ # an IAM predefined role or a user-created custom role. For some types of Google
325
+ # Cloud resources, a `binding` can also specify a `condition`, which is a
326
+ # logical expression that allows access to a resource only if the expression
327
+ # evaluates to `true`. A condition can add constraints based on attributes of
328
+ # the request, the resource, or both. To learn which resources support
329
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
330
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
331
+ # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
332
+ # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
333
+ # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
334
+ # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
335
+ # ], "condition": ` "title": "expirable access", "description": "Does not grant
336
+ # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
337
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
338
+ # bindings: - members: - user:mike@example.com - group:admins@example.com -
339
+ # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
340
+ # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
341
+ # com role: roles/resourcemanager.organizationViewer condition: title: expirable
342
+ # access description: Does not grant access after Sep 2020 expression: request.
343
+ # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
344
+ # a description of IAM and its features, see the [IAM documentation](https://
345
+ # cloud.google.com/iam/docs/).
326
346
  # Corresponds to the JSON property `iamPolicy`
327
347
  # @return [Google::Apis::CloudassetV1p1beta1::Policy]
328
348
  attr_accessor :iam_policy
@@ -877,8 +897,8 @@ module Google
877
897
 
878
898
  # Required. Resource name for the Access Level. The `short_name` component must
879
899
  # begin with a letter and only include alphanumeric and '_'. Format: `
880
- # accessPolicies/`policy_id`/accessLevels/`short_name``. The maximum length of
881
- # the `short_name` component is 50 characters.
900
+ # accessPolicies/`access_policy`/accessLevels/`access_level``. The maximum
901
+ # length of the `access_level` component is 50 characters.
882
902
  # Corresponds to the JSON property `name`
883
903
  # @return [String]
884
904
  attr_accessor :name
@@ -919,7 +939,7 @@ module Google
919
939
  attr_accessor :etag
920
940
 
921
941
  # Output only. Resource name of the `AccessPolicy`. Format: `accessPolicies/`
922
- # policy_id``
942
+ # access_policy``
923
943
  # Corresponds to the JSON property `name`
924
944
  # @return [String]
925
945
  attr_accessor :name
@@ -930,6 +950,21 @@ module Google
930
950
  # @return [String]
931
951
  attr_accessor :parent
932
952
 
953
+ # The scopes of a policy define which resources an ACM policy can restrict, and
954
+ # where ACM resources can be referenced. For example, a policy with scopes=["
955
+ # folders/123"] has the following behavior: - vpcsc perimeters can only restrict
956
+ # projects within folders/123 - access levels can only be referenced by
957
+ # resources within folders/123. If empty, there are no limitations on which
958
+ # resources can be restricted by an ACM policy, and there are no limitations on
959
+ # where ACM resources can be referenced. Only one policy can include a given
960
+ # scope (attempting to create a second policy which includes "folders/123" will
961
+ # result in an error). Currently, scopes cannot be modified after a policy is
962
+ # created. Currently, policies can only have a single scope. Format: list of `
963
+ # folders/`folder_number`` or `projects/`project_number``
964
+ # Corresponds to the JSON property `scopes`
965
+ # @return [Array<String>]
966
+ attr_accessor :scopes
967
+
933
968
  # Required. Human readable title. Does not affect behavior.
934
969
  # Corresponds to the JSON property `title`
935
970
  # @return [String]
@@ -944,6 +979,7 @@ module Google
944
979
  @etag = args[:etag] if args.key?(:etag)
945
980
  @name = args[:name] if args.key?(:name)
946
981
  @parent = args[:parent] if args.key?(:parent)
982
+ @scopes = args[:scopes] if args.key?(:scopes)
947
983
  @title = args[:title] if args.key?(:title)
948
984
  end
949
985
  end
@@ -1524,7 +1560,7 @@ module Google
1524
1560
 
1525
1561
  # Required. Resource name for the ServicePerimeter. The `short_name` component
1526
1562
  # must begin with a letter and only include alphanumeric and '_'. Format: `
1527
- # accessPolicies/`policy_id`/servicePerimeters/`short_name``
1563
+ # accessPolicies/`access_policy`/servicePerimeters/`service_perimeter``
1528
1564
  # Corresponds to the JSON property `name`
1529
1565
  # @return [String]
1530
1566
  attr_accessor :name
@@ -1689,31 +1725,31 @@ module Google
1689
1725
 
1690
1726
  # An Identity and Access Management (IAM) policy, which specifies access
1691
1727
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
1692
- # A `binding` binds one or more `members` to a single `role`. Members can be
1693
- # user accounts, service accounts, Google groups, and domains (such as G Suite).
1694
- # A `role` is a named list of permissions; each `role` can be an IAM predefined
1695
- # role or a user-created custom role. For some types of Google Cloud resources,
1696
- # a `binding` can also specify a `condition`, which is a logical expression that
1697
- # allows access to a resource only if the expression evaluates to `true`. A
1698
- # condition can add constraints based on attributes of the request, the resource,
1699
- # or both. To learn which resources support conditions in their IAM policies,
1700
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
1701
- # resource-policies). **JSON example:** ` "bindings": [ ` "role": "roles/
1702
- # resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "
1703
- # group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@
1704
- # appspot.gserviceaccount.com" ] `, ` "role": "roles/resourcemanager.
1705
- # organizationViewer", "members": [ "user:eve@example.com" ], "condition": ` "
1706
- # title": "expirable access", "description": "Does not grant access after Sep
1707
- # 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", `
1708
- # ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:** bindings: -
1709
- # members: - user:mike@example.com - group:admins@example.com - domain:google.
1710
- # com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/
1711
- # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
1712
- # roles/resourcemanager.organizationViewer condition: title: expirable access
1713
- # description: Does not grant access after Sep 2020 expression: request.time <
1714
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
1715
- # description of IAM and its features, see the [IAM documentation](https://cloud.
1716
- # google.com/iam/docs/).
1728
+ # A `binding` binds one or more `members`, or principals, to a single `role`.
1729
+ # Principals can be user accounts, service accounts, Google groups, and domains (
1730
+ # such as G Suite). A `role` is a named list of permissions; each `role` can be
1731
+ # an IAM predefined role or a user-created custom role. For some types of Google
1732
+ # Cloud resources, a `binding` can also specify a `condition`, which is a
1733
+ # logical expression that allows access to a resource only if the expression
1734
+ # evaluates to `true`. A condition can add constraints based on attributes of
1735
+ # the request, the resource, or both. To learn which resources support
1736
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
1737
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
1738
+ # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
1739
+ # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
1740
+ # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
1741
+ # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
1742
+ # ], "condition": ` "title": "expirable access", "description": "Does not grant
1743
+ # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
1744
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
1745
+ # bindings: - members: - user:mike@example.com - group:admins@example.com -
1746
+ # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
1747
+ # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
1748
+ # com role: roles/resourcemanager.organizationViewer condition: title: expirable
1749
+ # access description: Does not grant access after Sep 2020 expression: request.
1750
+ # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
1751
+ # a description of IAM and its features, see the [IAM documentation](https://
1752
+ # cloud.google.com/iam/docs/).
1717
1753
  # Corresponds to the JSON property `policy`
1718
1754
  # @return [Google::Apis::CloudassetV1p1beta1::Policy]
1719
1755
  attr_accessor :policy
@@ -1767,31 +1803,31 @@ module Google
1767
1803
 
1768
1804
  # An Identity and Access Management (IAM) policy, which specifies access
1769
1805
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
1770
- # A `binding` binds one or more `members` to a single `role`. Members can be
1771
- # user accounts, service accounts, Google groups, and domains (such as G Suite).
1772
- # A `role` is a named list of permissions; each `role` can be an IAM predefined
1773
- # role or a user-created custom role. For some types of Google Cloud resources,
1774
- # a `binding` can also specify a `condition`, which is a logical expression that
1775
- # allows access to a resource only if the expression evaluates to `true`. A
1776
- # condition can add constraints based on attributes of the request, the resource,
1777
- # or both. To learn which resources support conditions in their IAM policies,
1778
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
1779
- # resource-policies). **JSON example:** ` "bindings": [ ` "role": "roles/
1780
- # resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "
1781
- # group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@
1782
- # appspot.gserviceaccount.com" ] `, ` "role": "roles/resourcemanager.
1783
- # organizationViewer", "members": [ "user:eve@example.com" ], "condition": ` "
1784
- # title": "expirable access", "description": "Does not grant access after Sep
1785
- # 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", `
1786
- # ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:** bindings: -
1787
- # members: - user:mike@example.com - group:admins@example.com - domain:google.
1788
- # com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/
1789
- # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
1790
- # roles/resourcemanager.organizationViewer condition: title: expirable access
1791
- # description: Does not grant access after Sep 2020 expression: request.time <
1792
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
1793
- # description of IAM and its features, see the [IAM documentation](https://cloud.
1794
- # google.com/iam/docs/).
1806
+ # A `binding` binds one or more `members`, or principals, to a single `role`.
1807
+ # Principals can be user accounts, service accounts, Google groups, and domains (
1808
+ # such as G Suite). A `role` is a named list of permissions; each `role` can be
1809
+ # an IAM predefined role or a user-created custom role. For some types of Google
1810
+ # Cloud resources, a `binding` can also specify a `condition`, which is a
1811
+ # logical expression that allows access to a resource only if the expression
1812
+ # evaluates to `true`. A condition can add constraints based on attributes of
1813
+ # the request, the resource, or both. To learn which resources support
1814
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
1815
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
1816
+ # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
1817
+ # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
1818
+ # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
1819
+ # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
1820
+ # ], "condition": ` "title": "expirable access", "description": "Does not grant
1821
+ # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
1822
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
1823
+ # bindings: - members: - user:mike@example.com - group:admins@example.com -
1824
+ # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
1825
+ # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
1826
+ # com role: roles/resourcemanager.organizationViewer condition: title: expirable
1827
+ # access description: Does not grant access after Sep 2020 expression: request.
1828
+ # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
1829
+ # a description of IAM and its features, see the [IAM documentation](https://
1830
+ # cloud.google.com/iam/docs/).
1795
1831
  class Policy
1796
1832
  include Google::Apis::Core::Hashable
1797
1833
 
@@ -1800,9 +1836,14 @@ module Google
1800
1836
  # @return [Array<Google::Apis::CloudassetV1p1beta1::AuditConfig>]
1801
1837
  attr_accessor :audit_configs
1802
1838
 
1803
- # Associates a list of `members` to a `role`. Optionally, may specify a `
1804
- # condition` that determines how and when the `bindings` are applied. Each of
1805
- # the `bindings` must contain at least one member.
1839
+ # Associates a list of `members`, or principals, with a `role`. Optionally, may
1840
+ # specify a `condition` that determines how and when the `bindings` are applied.
1841
+ # Each of the `bindings` must contain at least one principal. The `bindings` in
1842
+ # a `Policy` can refer to up to 1,500 principals; up to 250 of these principals
1843
+ # can be Google groups. Each occurrence of a principal counts towards these
1844
+ # limits. For example, if the `bindings` grant 50 different roles to `user:alice@
1845
+ # example.com`, and not to any other principal, then you can add another 1,450
1846
+ # principals to the `bindings` in the `Policy`.
1806
1847
  # Corresponds to the JSON property `bindings`
1807
1848
  # @return [Array<Google::Apis::CloudassetV1p1beta1::Binding>]
1808
1849
  attr_accessor :bindings
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudassetV1p1beta1
18
18
  # Version of the google-apis-cloudasset_v1p1beta1 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 = "20210611"
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 CloudassetV1p1beta1
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
 
@@ -262,6 +268,13 @@ module Google
262
268
  include Google::Apis::Core::JsonObjectSupport
263
269
  end
264
270
 
271
+ class AnalyzeIamPolicyLongrunningMetadata
272
+ # @private
273
+ class Representation < Google::Apis::Core::JsonRepresentation
274
+ property :create_time, as: 'createTime'
275
+ end
276
+ end
277
+
265
278
  class AnalyzeIamPolicyLongrunningResponse
266
279
  # @private
267
280
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -438,6 +451,7 @@ module Google
438
451
  property :etag, as: 'etag'
439
452
  property :name, as: 'name'
440
453
  property :parent, as: 'parent'
454
+ collection :scopes, as: 'scopes'
441
455
  property :title, as: 'title'
442
456
  end
443
457
  end
@@ -29,7 +29,7 @@ module Google
29
29
  # This is NOT the gem version.
30
30
  VERSION = 'V1p1beta1'
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_v1p1beta1
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-07-05 00:00:00.000000000 Z
11
+ date: 2021-12-06 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_v1p1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1p1beta1/v0.9.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudasset_v1p1beta1
60
+ changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudasset_v1p1beta1/CHANGELOG.md
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1p1beta1/v0.13.0
62
+ source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudasset_v1p1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []
65
65
  require_paths: