Class: Google::Apis::IamV1::Permission

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

Overview

A permission which can be included by a role.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Permission

Returns a new instance of Permission.



1767
1768
1769
# File 'lib/google/apis/iam_v1/classes.rb', line 1767

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

Instance Attribute Details

#api_disabledBoolean Also known as: api_disabled?

The service API associated with the permission is not enabled. Corresponds to the JSON property apiDisabled

Returns:

  • (Boolean)


1726
1727
1728
# File 'lib/google/apis/iam_v1/classes.rb', line 1726

def api_disabled
  @api_disabled
end

#custom_roles_support_levelString

The current custom role support level. Corresponds to the JSON property customRolesSupportLevel

Returns:

  • (String)


1732
1733
1734
# File 'lib/google/apis/iam_v1/classes.rb', line 1732

def custom_roles_support_level
  @custom_roles_support_level
end

#descriptionString

A brief description of what this Permission is used for. This permission can ONLY be used in predefined roles. Corresponds to the JSON property description

Returns:

  • (String)


1738
1739
1740
# File 'lib/google/apis/iam_v1/classes.rb', line 1738

def description
  @description
end

#nameString

The name of this Permission. Corresponds to the JSON property name

Returns:

  • (String)


1743
1744
1745
# File 'lib/google/apis/iam_v1/classes.rb', line 1743

def name
  @name
end

#only_in_predefined_rolesBoolean Also known as: only_in_predefined_roles?

Corresponds to the JSON property onlyInPredefinedRoles

Returns:

  • (Boolean)


1748
1749
1750
# File 'lib/google/apis/iam_v1/classes.rb', line 1748

def only_in_predefined_roles
  @only_in_predefined_roles
end

#primary_permissionString

The preferred name for this permission. If present, then this permission is an alias of, and equivalent to, the listed primary_permission. Corresponds to the JSON property primaryPermission

Returns:

  • (String)


1755
1756
1757
# File 'lib/google/apis/iam_v1/classes.rb', line 1755

def primary_permission
  @primary_permission
end

#stageString

The current launch stage of the permission. Corresponds to the JSON property stage

Returns:

  • (String)


1760
1761
1762
# File 'lib/google/apis/iam_v1/classes.rb', line 1760

def stage
  @stage
end

#titleString

The title of this Permission. Corresponds to the JSON property title

Returns:

  • (String)


1765
1766
1767
# File 'lib/google/apis/iam_v1/classes.rb', line 1765

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
# File 'lib/google/apis/iam_v1/classes.rb', line 1772

def update!(**args)
  @api_disabled = args[:api_disabled] if args.key?(:api_disabled)
  @custom_roles_support_level = args[:custom_roles_support_level] if args.key?(:custom_roles_support_level)
  @description = args[:description] if args.key?(:description)
  @name = args[:name] if args.key?(:name)
  @only_in_predefined_roles = args[:only_in_predefined_roles] if args.key?(:only_in_predefined_roles)
  @primary_permission = args[:primary_permission] if args.key?(:primary_permission)
  @stage = args[:stage] if args.key?(:stage)
  @title = args[:title] if args.key?(:title)
end