Class: Google::Apis::CloudassetV1::GoogleIdentityAccesscontextmanagerV1AccessLevel

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
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

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleIdentityAccesscontextmanagerV1AccessLevel

Returns a new instance of GoogleIdentityAccesscontextmanagerV1AccessLevel



831
832
833
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 831

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

Instance Attribute Details

#basicGoogle::Apis::CloudassetV1::GoogleIdentityAccesscontextmanagerV1BasicLevel

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



802
803
804
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 802

def basic
  @basic
end

#create_timeString

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

Returns:

  • (String)


807
808
809
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 807

def create_time
  @create_time
end

#descriptionString

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

Returns:

  • (String)


812
813
814
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 812

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)


819
820
821
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 819

def name
  @name
end

#titleString

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

Returns:

  • (String)


824
825
826
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 824

def title
  @title
end

#update_timeString

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

Returns:

  • (String)


829
830
831
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 829

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



836
837
838
839
840
841
842
843
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 836

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