Class: Google::Apis::ServicecontrolV1::AuthorizationInfo

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

Overview

Authorization information for the operation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AuthorizationInfo

Returns a new instance of AuthorizationInfo.



475
476
477
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 475

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

Instance Attribute Details

#grantedBoolean Also known as: granted?

Whether or not authorization for resource and permission was granted. Corresponds to the JSON property granted

Returns:

  • (Boolean)


454
455
456
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 454

def granted
  @granted
end

#permissionString

The required IAM permission. Corresponds to the JSON property permission

Returns:

  • (String)


460
461
462
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 460

def permission
  @permission
end

#resourceString

The resource being accessed, as a REST-style string. For example: bigquery. googleapis.com/projects/PROJECTID/datasets/DATASETID Corresponds to the JSON property resource

Returns:

  • (String)


466
467
468
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 466

def resource
  @resource
end

#resource_attributesGoogle::Apis::ServicecontrolV1::Resource

This message defines core attributes for a resource. A resource is an addressable (named) entity provided by the destination service. For example, a file stored on a network storage service. Corresponds to the JSON property resourceAttributes



473
474
475
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 473

def resource_attributes
  @resource_attributes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



480
481
482
483
484
485
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 480

def update!(**args)
  @granted = args[:granted] if args.key?(:granted)
  @permission = args[:permission] if args.key?(:permission)
  @resource = args[:resource] if args.key?(:resource)
  @resource_attributes = args[:resource_attributes] if args.key?(:resource_attributes)
end