Class: Google::Apis::AccesscontextmanagerV1beta::AccessLevel

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

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ AccessLevel

Returns a new instance of AccessLevel.



70
71
72
# File 'generated/google/apis/accesscontextmanager_v1beta/classes.rb', line 70

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

Instance Attribute Details

#basicGoogle::Apis::AccesscontextmanagerV1beta::BasicLevel

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



34
35
36
# File 'generated/google/apis/accesscontextmanager_v1beta/classes.rb', line 34

def basic
  @basic
end

#create_timeString

Output only. Time the AccessLevel was created in UTC. Corresponds to the JSON property createTime

Returns:

  • (String)


39
40
41
# File 'generated/google/apis/accesscontextmanager_v1beta/classes.rb', line 39

def create_time
  @create_time
end

#customGoogle::Apis::AccesscontextmanagerV1beta::CustomLevel

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



46
47
48
# File 'generated/google/apis/accesscontextmanager_v1beta/classes.rb', line 46

def custom
  @custom
end

#descriptionString

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

Returns:

  • (String)


51
52
53
# File 'generated/google/apis/accesscontextmanager_v1beta/classes.rb', line 51

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` Corresponds to the JSON propertyname`

Returns:

  • (String)


58
59
60
# File 'generated/google/apis/accesscontextmanager_v1beta/classes.rb', line 58

def name
  @name
end

#titleString

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

Returns:

  • (String)


63
64
65
# File 'generated/google/apis/accesscontextmanager_v1beta/classes.rb', line 63

def title
  @title
end

#update_timeString

Output only. Time the AccessLevel was updated in UTC. Corresponds to the JSON property updateTime

Returns:

  • (String)


68
69
70
# File 'generated/google/apis/accesscontextmanager_v1beta/classes.rb', line 68

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



75
76
77
78
79
80
81
82
83
# File 'generated/google/apis/accesscontextmanager_v1beta/classes.rb', line 75

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