Class: Google::Apis::CloudassetV1::GoogleIdentityAccesscontextmanagerV1AccessLevel
- Inherits:
-
Object
- Object
- Google::Apis::CloudassetV1::GoogleIdentityAccesscontextmanagerV1AccessLevel
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/cloudasset_v1/classes.rb,
generated/google/apis/cloudasset_v1/representations.rb,
generated/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
BasicLevel
is anAccessLevel
using a set of recommended features. -
#custom ⇒ Google::Apis::CloudassetV1::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
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.
1376 1377 1378 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 1376 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
1349 1350 1351 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 1349 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
1356 1357 1358 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 1356 def custom @custom end |
#description ⇒ String
Description of the AccessLevel
and its use. Does not affect behavior.
Corresponds to the JSON property description
1361 1362 1363 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 1361 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/
policy_id/accessLevels/
short_name`. The maximum length of
the
short_namecomponent is 50 characters.
Corresponds to the JSON property
name`
1369 1370 1371 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 1369 def name @name end |
#title ⇒ String
Human readable title. Must be unique within the Policy.
Corresponds to the JSON property title
1374 1375 1376 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 1374 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1381 1382 1383 1384 1385 1386 1387 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 1381 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 |