class Google::Apis::ConnectorsV1::Provider

Provider indicates the owner who provides the connectors.

Attributes

create_time[RW]

Output only. Created time. Corresponds to the JSON property ‘createTime` @return [String]

description[RW]

Output only. Description of the resource. Corresponds to the JSON property ‘description` @return [String]

display_name[RW]

Output only. Display name. Corresponds to the JSON property ‘displayName` @return [String]

documentation_uri[RW]

Output only. Link to documentation page. Corresponds to the JSON property ‘documentationUri` @return [String]

external_uri[RW]

Output only. Link to external page. Corresponds to the JSON property ‘externalUri` @return [String]

labels[RW]

Output only. Resource labels to represent user-provided metadata. Refer to cloud documentation on labels for more details. cloud.google.com/ compute/docs/labeling-resources Corresponds to the JSON property ‘labels` @return [Hash<String,String>]

launch_stage[RW]

Output only. Flag to mark the version indicating the launch stage. Corresponds to the JSON property ‘launchStage` @return [String]

name[RW]

Output only. Resource name of the Provider. Format: projects/‘project`/ locations/`location`/providers/`provider` Corresponds to the JSON property `name` @return [String]

update_time[RW]

Output only. Updated time. Corresponds to the JSON property ‘updateTime` @return [String]

web_assets_location[RW]

Output only. Cloud storage location of icons etc consumed by UI. Corresponds to the JSON property ‘webAssetsLocation` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/connectors_v1/classes.rb, line 1631
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 1636
def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @description = args[:description] if args.key?(:description)
  @display_name = args[:display_name] if args.key?(:display_name)
  @documentation_uri = args[:documentation_uri] if args.key?(:documentation_uri)
  @external_uri = args[:external_uri] if args.key?(:external_uri)
  @labels = args[:labels] if args.key?(:labels)
  @launch_stage = args[:launch_stage] if args.key?(:launch_stage)
  @name = args[:name] if args.key?(:name)
  @update_time = args[:update_time] if args.key?(:update_time)
  @web_assets_location = args[:web_assets_location] if args.key?(:web_assets_location)
end