Class: Google::Apis::CloudassetV1::GoogleIdentityAccesscontextmanagerV1AccessLevel
- Inherits:
-
Object
- Object
- Google::Apis::CloudassetV1::GoogleIdentityAccesscontextmanagerV1AccessLevel
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudasset_v1/classes.rb,
lib/google/apis/cloudasset_v1/representations.rb,
lib/google/apis/cloudasset_v1/representations.rb
Overview
An AccessLevel is a label that can be applied to requests to Google Cloud
services, along with a list of requirements necessary for the label to be
applied.
Instance Attribute Summary collapse
-
#basic ⇒ Google::Apis::CloudassetV1::GoogleIdentityAccesscontextmanagerV1BasicLevel
BasicLevelis anAccessLevelusing a set of recommended features. -
#custom ⇒ Google::Apis::CloudassetV1::GoogleIdentityAccesscontextmanagerV1CustomLevel
CustomLevelis anAccessLevelusing the Cloud Common Expression Language to represent the necessary conditions for the level to apply to a request. -
#description ⇒ String
Description of the
AccessLeveland its use. -
#name ⇒ String
Required.
-
#title ⇒ String
Human readable title.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleIdentityAccesscontextmanagerV1AccessLevel
constructor
A new instance of GoogleIdentityAccesscontextmanagerV1AccessLevel.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleIdentityAccesscontextmanagerV1AccessLevel
Returns a new instance of GoogleIdentityAccesscontextmanagerV1AccessLevel.
1854 1855 1856 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 1854 def initialize(**args) update!(**args) end |
Instance Attribute Details
#basic ⇒ Google::Apis::CloudassetV1::GoogleIdentityAccesscontextmanagerV1BasicLevel
BasicLevel is an AccessLevel using a set of recommended features.
Corresponds to the JSON property basic
1827 1828 1829 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 1827 def basic @basic end |
#custom ⇒ Google::Apis::CloudassetV1::GoogleIdentityAccesscontextmanagerV1CustomLevel
CustomLevel is an AccessLevel using the Cloud Common Expression Language
to represent the necessary conditions for the level to apply to a request. See
CEL spec at: https://github.com/google/cel-spec
Corresponds to the JSON property custom
1834 1835 1836 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 1834 def custom @custom end |
#description ⇒ String
Description of the AccessLevel and its use. Does not affect behavior.
Corresponds to the JSON property description
1839 1840 1841 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 1839 def description @description end |
#name ⇒ String
Required. Resource name for the Access Level. The short_name component must
begin with a letter and only include alphanumeric and '_'. Format:
accessPolicies/access_policy/accessLevels/access_level`. The maximum
length of theaccess_levelcomponent is 50 characters.
Corresponds to the JSON propertyname`
1847 1848 1849 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 1847 def name @name end |
#title ⇒ String
Human readable title. Must be unique within the Policy.
Corresponds to the JSON property title
1852 1853 1854 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 1852 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1859 1860 1861 1862 1863 1864 1865 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 1859 def update!(**args) @basic = args[:basic] if args.key?(:basic) @custom = args[:custom] if args.key?(:custom) @description = args[:description] if args.key?(:description) @name = args[:name] if args.key?(:name) @title = args[:title] if args.key?(:title) end |