Class: Google::Apis::CloudassetV1beta1::GoogleIdentityAccesscontextmanagerV1AccessLevel
- Inherits:
-
Object
- Object
- Google::Apis::CloudassetV1beta1::GoogleIdentityAccesscontextmanagerV1AccessLevel
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudasset_v1beta1/classes.rb,
lib/google/apis/cloudasset_v1beta1/representations.rb,
lib/google/apis/cloudasset_v1beta1/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::CloudassetV1beta1::GoogleIdentityAccesscontextmanagerV1BasicLevel
BasicLevel
is anAccessLevel
using a set of recommended features. -
#custom ⇒ Google::Apis::CloudassetV1beta1::GoogleIdentityAccesscontextmanagerV1CustomLevel
CustomLevel
is anAccessLevel
using the Cloud Common Expression Language to represent the necessary conditions for the level to apply to a request. -
#description ⇒ String
Description of the
AccessLevel
and its use. -
#name ⇒ String
Identifier.
-
#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.
1133 1134 1135 |
# File 'lib/google/apis/cloudasset_v1beta1/classes.rb', line 1133 def initialize(**args) update!(**args) end |
Instance Attribute Details
#basic ⇒ Google::Apis::CloudassetV1beta1::GoogleIdentityAccesscontextmanagerV1BasicLevel
BasicLevel
is an AccessLevel
using a set of recommended features.
Corresponds to the JSON property basic
1105 1106 1107 |
# File 'lib/google/apis/cloudasset_v1beta1/classes.rb', line 1105 def basic @basic end |
#custom ⇒ Google::Apis::CloudassetV1beta1::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
1112 1113 1114 |
# File 'lib/google/apis/cloudasset_v1beta1/classes.rb', line 1112 def custom @custom end |
#description ⇒ String
Description of the AccessLevel
and its use. Does not affect behavior.
Corresponds to the JSON property description
1117 1118 1119 |
# File 'lib/google/apis/cloudasset_v1beta1/classes.rb', line 1117 def description @description end |
#name ⇒ String
Identifier. Resource name for the AccessLevel
. Format: accessPolicies/
access_policy/accessLevels/
access_level`. The
access_levelcomponent must
begin with a letter, followed by alphanumeric characters or
_. Its maximum
length is 50 characters. After you create an
AccessLevel, you cannot change
its
name.
Corresponds to the JSON property
name`
1126 1127 1128 |
# File 'lib/google/apis/cloudasset_v1beta1/classes.rb', line 1126 def name @name end |
#title ⇒ String
Human readable title. Must be unique within the Policy.
Corresponds to the JSON property title
1131 1132 1133 |
# File 'lib/google/apis/cloudasset_v1beta1/classes.rb', line 1131 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1138 1139 1140 1141 1142 1143 1144 |
# File 'lib/google/apis/cloudasset_v1beta1/classes.rb', line 1138 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 |