Class: Google::Apis::CloudassetV1p4beta1::GoogleIdentityAccesscontextmanagerV1AccessLevel

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudasset_v1p4beta1/classes.rb,
lib/google/apis/cloudasset_v1p4beta1/representations.rb,
lib/google/apis/cloudasset_v1p4beta1/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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleIdentityAccesscontextmanagerV1AccessLevel

Returns a new instance of GoogleIdentityAccesscontextmanagerV1AccessLevel.



1200
1201
1202
# File 'lib/google/apis/cloudasset_v1p4beta1/classes.rb', line 1200

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#basicGoogle::Apis::CloudassetV1p4beta1::GoogleIdentityAccesscontextmanagerV1BasicLevel

BasicLevel is an AccessLevel using a set of recommended features. Corresponds to the JSON property basic



1173
1174
1175
# File 'lib/google/apis/cloudasset_v1p4beta1/classes.rb', line 1173

def basic
  @basic
end

#customGoogle::Apis::CloudassetV1p4beta1::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



1180
1181
1182
# File 'lib/google/apis/cloudasset_v1p4beta1/classes.rb', line 1180

def custom
  @custom
end

#descriptionString

Description of the AccessLevel and its use. Does not affect behavior. Corresponds to the JSON property description

Returns:

  • (String)


1185
1186
1187
# File 'lib/google/apis/cloudasset_v1p4beta1/classes.rb', line 1185

def description
  @description
end

#nameString

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 theshort_namecomponent is 50 characters. Corresponds to the JSON propertyname`

Returns:

  • (String)


1193
1194
1195
# File 'lib/google/apis/cloudasset_v1p4beta1/classes.rb', line 1193

def name
  @name
end

#titleString

Human readable title. Must be unique within the Policy. Corresponds to the JSON property title

Returns:

  • (String)


1198
1199
1200
# File 'lib/google/apis/cloudasset_v1p4beta1/classes.rb', line 1198

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1205
1206
1207
1208
1209
1210
1211
# File 'lib/google/apis/cloudasset_v1p4beta1/classes.rb', line 1205

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