Class: Google::Apis::CloudassetV1p1beta1::IamPolicySearchResult
- Inherits:
-
Object
- Object
- Google::Apis::CloudassetV1p1beta1::IamPolicySearchResult
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudasset_v1p1beta1/classes.rb,
lib/google/apis/cloudasset_v1p1beta1/representations.rb,
lib/google/apis/cloudasset_v1p1beta1/representations.rb
Overview
The result for an IAM policy search.
Instance Attribute Summary collapse
-
#explanation ⇒ Google::Apis::CloudassetV1p1beta1::Explanation
Explanation about the IAM policy search result.
-
#policy ⇒ Google::Apis::CloudassetV1p1beta1::Policy
An Identity and Access Management (IAM) policy, which specifies access controls for Google Cloud resources.
-
#project ⇒ String
The project that the associated Google Cloud resource belongs to, in the form of
projects/project_number``. -
#resource ⇒ String
The full resource name of the resource associated with this IAM policy.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IamPolicySearchResult
constructor
A new instance of IamPolicySearchResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ IamPolicySearchResult
Returns a new instance of IamPolicySearchResult.
1936 1937 1938 |
# File 'lib/google/apis/cloudasset_v1p1beta1/classes.rb', line 1936 def initialize(**args) update!(**args) end |
Instance Attribute Details
#explanation ⇒ Google::Apis::CloudassetV1p1beta1::Explanation
Explanation about the IAM policy search result.
Corresponds to the JSON property explanation
1888 1889 1890 |
# File 'lib/google/apis/cloudasset_v1p1beta1/classes.rb', line 1888 def explanation @explanation end |
#policy ⇒ Google::Apis::CloudassetV1p1beta1::Policy
An Identity and Access Management (IAM) policy, which specifies access
controls for Google Cloud resources. A Policy is a collection of bindings.
A binding binds one or more members, or principals, to a single role.
Principals can be user accounts, service accounts, Google groups, and domains (
such as G Suite). A role is a named list of permissions; each role can be
an IAM predefined role or a user-created custom role. For some types of Google
Cloud resources, a binding can also specify a condition, which is a
logical expression that allows access to a resource only if the expression
evaluates to true. A condition can add constraints based on attributes of
the request, the resource, or both. To learn which resources support
conditions in their IAM policies, see the IAM documentation. JSON example: ` "
bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
"user:mike@example.com", "group:admins@example.com", "domain:google.com", "
serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
], "condition": ` "title": "expirable access", "description": "Does not grant
access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` YAML
example: bindings: - members: - user:mike@example.com - group:admins@
example.com - domain:google.com - serviceAccount:my-project-id@appspot.
gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
title: expirable access description: Does not grant access after Sep 2020
expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
BwWWja0YfJA= version: 3 For a description of IAM and its features, see the
IAM documentation.
Corresponds to the JSON property policy
1919 1920 1921 |
# File 'lib/google/apis/cloudasset_v1p1beta1/classes.rb', line 1919 def policy @policy end |
#project ⇒ String
The project that the associated Google Cloud resource belongs to, in the form
of projects/project_number`. If an IAM policy is set on a resource -- such
as a Compute Engine instance or a Cloud Storage bucket -- the project field
will indicate the project that contains the resource. If an IAM policy is set
on a folder or orgnization, the project field will be empty.
Corresponds to the JSON propertyproject`
1928 1929 1930 |
# File 'lib/google/apis/cloudasset_v1p1beta1/classes.rb', line 1928 def project @project end |
#resource ⇒ String
The full resource name of the resource associated with this IAM policy.
Corresponds to the JSON property resource
1934 1935 1936 |
# File 'lib/google/apis/cloudasset_v1p1beta1/classes.rb', line 1934 def resource @resource end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1941 1942 1943 1944 1945 1946 |
# File 'lib/google/apis/cloudasset_v1p1beta1/classes.rb', line 1941 def update!(**args) @explanation = args[:explanation] if args.key?(:explanation) @policy = args[:policy] if args.key?(:policy) @project = args[:project] if args.key?(:project) @resource = args[:resource] if args.key?(:resource) end |