class Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataSource

Physical location of an entry.

Attributes

resource[RW]

Full name of a resource as defined by the service. For example: `//bigquery. googleapis.com/projects/`PROJECT_ID`/locations/`LOCATION`/datasets/`DATASET_ID` /tables/`TABLE_ID“ Corresponds to the JSON property `resource` @return [String]

service[RW]

Service that physically stores the data. Corresponds to the JSON property `service` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/datacatalog_v1/classes.rb, line 452
def update!(**args)
  @resource = args[:resource] if args.key?(:resource)
  @service = args[:service] if args.key?(:service)
end