Class: Google::Apis::CloudassetV1p1beta1::GoogleIdentityAccesscontextmanagerV1AccessLevel
- Inherits:
-
Object
- Object
- Google::Apis::CloudassetV1p1beta1::GoogleIdentityAccesscontextmanagerV1AccessLevel
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudasset_v1p1beta1/classes.rb,
lib/google/apis/cloudasset_v1p1beta1/representations.rb,
lib/google/apis/cloudasset_v1p1beta1/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::CloudassetV1p1beta1::GoogleIdentityAccesscontextmanagerV1BasicLevel
BasicLevelis anAccessLevelusing a set of recommended features. -
#custom ⇒ Google::Apis::CloudassetV1p1beta1::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
Resource name for the
AccessLevel. -
#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.
939 940 941 |
# File 'lib/google/apis/cloudasset_v1p1beta1/classes.rb', line 939 def initialize(**args) update!(**args) end |
Instance Attribute Details
#basic ⇒ Google::Apis::CloudassetV1p1beta1::GoogleIdentityAccesscontextmanagerV1BasicLevel
BasicLevel is an AccessLevel using a set of recommended features.
Corresponds to the JSON property basic
912 913 914 |
# File 'lib/google/apis/cloudasset_v1p1beta1/classes.rb', line 912 def basic @basic end |
#custom ⇒ Google::Apis::CloudassetV1p1beta1::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
919 920 921 |
# File 'lib/google/apis/cloudasset_v1p1beta1/classes.rb', line 919 def custom @custom end |
#description ⇒ String
Description of the AccessLevel and its use. Does not affect behavior.
Corresponds to the JSON property description
924 925 926 |
# File 'lib/google/apis/cloudasset_v1p1beta1/classes.rb', line 924 def description @description end |
#name ⇒ String
Resource name for the AccessLevel. Format: accessPolicies/access_policy/
accessLevels/access_level`. Theaccess_levelcomponent must begin with a
letter, followed by alphanumeric characters or_. Its maximum length is 50
characters. After you create anAccessLevel, you cannot change itsname.
Corresponds to the JSON propertyname`
932 933 934 |
# File 'lib/google/apis/cloudasset_v1p1beta1/classes.rb', line 932 def name @name end |
#title ⇒ String
Human readable title. Must be unique within the Policy.
Corresponds to the JSON property title
937 938 939 |
# File 'lib/google/apis/cloudasset_v1p1beta1/classes.rb', line 937 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
944 945 946 947 948 949 950 |
# File 'lib/google/apis/cloudasset_v1p1beta1/classes.rb', line 944 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 |