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 GCP 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.
-
#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
893 894 895 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 893 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
864 865 866 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 864 def basic @basic end |
#create_time ⇒ String
Output only. Time the AccessLevel
was created in UTC.
Corresponds to the JSON property createTime
869 870 871 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 869 def create_time @create_time end |
#description ⇒ String
Description of the AccessLevel
and its use. Does not affect behavior.
Corresponds to the JSON property description
874 875 876 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 874 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`
881 882 883 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 881 def name @name end |
#title ⇒ String
Human readable title. Must be unique within the Policy.
Corresponds to the JSON property title
886 887 888 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 886 def title @title end |
#update_time ⇒ String
Output only. Time the AccessLevel
was updated in UTC.
Corresponds to the JSON property updateTime
891 892 893 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 891 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
898 899 900 901 902 903 904 905 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 898 def update!(**args) @basic = args[:basic] if args.key?(:basic) @create_time = args[:create_time] if args.key?(:create_time) @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 |