Class: Google::Apis::RunV1alpha1::SeLinuxOptions

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/run_v1alpha1/classes.rb,
generated/google/apis/run_v1alpha1/representations.rb,
generated/google/apis/run_v1alpha1/representations.rb

Overview

SELinuxOptions are the labels to be applied to the container

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) ⇒ SeLinuxOptions

Returns a new instance of SeLinuxOptions.



3747
3748
3749
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3747

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

Instance Attribute Details

#levelString

Level is SELinux level label that applies to the container. +optional Corresponds to the JSON property level

Returns:

  • (String)


3727
3728
3729
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3727

def level
  @level
end

#roleString

Role is a SELinux role label that applies to the container. +optional Corresponds to the JSON property role

Returns:

  • (String)


3733
3734
3735
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3733

def role
  @role
end

#typeString

Type is a SELinux type label that applies to the container. +optional Corresponds to the JSON property type

Returns:

  • (String)


3739
3740
3741
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3739

def type
  @type
end

#userString

User is a SELinux user label that applies to the container. +optional Corresponds to the JSON property user

Returns:

  • (String)


3745
3746
3747
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3745

def user
  @user
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3752
3753
3754
3755
3756
3757
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3752

def update!(**args)
  @level = args[:level] if args.key?(:level)
  @role = args[:role] if args.key?(:role)
  @type = args[:type] if args.key?(:type)
  @user = args[:user] if args.key?(:user)
end