class Google::Apis::ConnectorsV1::Resource

Resource definition

Attributes

path_template[RW]

Template to uniquely represent a GCP resource in a format IAM expects This is a template that can have references to other values provided in the config variable template. Corresponds to the JSON property ‘pathTemplate` @return [String]

type[RW]

Different types of resource supported. Corresponds to the JSON property ‘type` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/connectors_v1/classes.rb, line 1666
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/connectors_v1/classes.rb, line 1671
def update!(**args)
  @path_template = args[:path_template] if args.key?(:path_template)
  @type = args[:type] if args.key?(:type)
end