Class: Google::Apis::CloudassetV1::GoogleIdentityAccesscontextmanagerV1AccessLevel
- Inherits:
-
Object
- Object
- Google::Apis::CloudassetV1::GoogleIdentityAccesscontextmanagerV1AccessLevel
- 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. -
#create_time ⇒ String
Output only.
-
#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.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleIdentityAccesscontextmanagerV1AccessLevel
constructor
A new instance of GoogleIdentityAccesscontextmanagerV1AccessLevel.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleIdentityAccesscontextmanagerV1AccessLevel
Returns a new instance of GoogleIdentityAccesscontextmanagerV1AccessLevel.
1095 1096 1097 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 1095 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
1059 1060 1061 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 1059 def basic @basic end |
#create_time ⇒ String
Output only. Time the AccessLevel
was created in UTC.
Corresponds to the JSON property createTime
1064 1065 1066 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 1064 def create_time @create_time 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
1071 1072 1073 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 1071 def custom @custom end |
#description ⇒ String
Description of the AccessLevel
and its use. Does not affect behavior.
Corresponds to the JSON property description
1076 1077 1078 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 1076 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`
Corresponds to the JSON property
name`
1083 1084 1085 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 1083 def name @name end |
#title ⇒ String
Human readable title. Must be unique within the Policy.
Corresponds to the JSON property title
1088 1089 1090 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 1088 def title @title end |
#update_time ⇒ String
Output only. Time the AccessLevel
was updated in UTC.
Corresponds to the JSON property updateTime
1093 1094 1095 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 1093 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1100 1101 1102 1103 1104 1105 1106 1107 1108 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 1100 def update!(**args) @basic = args[:basic] if args.key?(:basic) @create_time = args[:create_time] if args.key?(:create_time) @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) @update_time = args[:update_time] if args.key?(:update_time) end |