Class: Google::Apis::ConnectorsV1::Provider

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

Overview

Provider indicates the owner who provides the connectors.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Provider

Returns a new instance of Provider.



5016
5017
5018
# File 'lib/google/apis/connectors_v1/classes.rb', line 5016

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

Instance Attribute Details

#create_timeString

Output only. Created time. Corresponds to the JSON property createTime

Returns:

  • (String)


4965
4966
4967
# File 'lib/google/apis/connectors_v1/classes.rb', line 4965

def create_time
  @create_time
end

#descriptionString

Output only. Description of the resource. Corresponds to the JSON property description

Returns:

  • (String)


4970
4971
4972
# File 'lib/google/apis/connectors_v1/classes.rb', line 4970

def description
  @description
end

#display_nameString

Output only. Display name. Corresponds to the JSON property displayName

Returns:

  • (String)


4975
4976
4977
# File 'lib/google/apis/connectors_v1/classes.rb', line 4975

def display_name
  @display_name
end

#documentation_uriString

Output only. Link to documentation page. Corresponds to the JSON property documentationUri

Returns:

  • (String)


4980
4981
4982
# File 'lib/google/apis/connectors_v1/classes.rb', line 4980

def documentation_uri
  @documentation_uri
end

#external_uriString

Output only. Link to external page. Corresponds to the JSON property externalUri

Returns:

  • (String)


4985
4986
4987
# File 'lib/google/apis/connectors_v1/classes.rb', line 4985

def external_uri
  @external_uri
end

#labelsHash<String,String>

Output only. Resource labels to represent user-provided metadata. Refer to cloud documentation on labels for more details. https://cloud.google.com/ compute/docs/labeling-resources Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


4992
4993
4994
# File 'lib/google/apis/connectors_v1/classes.rb', line 4992

def labels
  @labels
end

#launch_stageString

Output only. Flag to mark the version indicating the launch stage. Corresponds to the JSON property launchStage

Returns:

  • (String)


4997
4998
4999
# File 'lib/google/apis/connectors_v1/classes.rb', line 4997

def launch_stage
  @launch_stage
end

#nameString

Output only. Resource name of the Provider. Format: projects/project/ locations/location/providers/provider Only global location is supported for Provider resource. Corresponds to the JSON property name

Returns:

  • (String)


5004
5005
5006
# File 'lib/google/apis/connectors_v1/classes.rb', line 5004

def name
  @name
end

#update_timeString

Output only. Updated time. Corresponds to the JSON property updateTime

Returns:

  • (String)


5009
5010
5011
# File 'lib/google/apis/connectors_v1/classes.rb', line 5009

def update_time
  @update_time
end

#web_assets_locationString

Output only. Cloud storage location of icons etc consumed by UI. Corresponds to the JSON property webAssetsLocation

Returns:

  • (String)


5014
5015
5016
# File 'lib/google/apis/connectors_v1/classes.rb', line 5014

def web_assets_location
  @web_assets_location
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
# File 'lib/google/apis/connectors_v1/classes.rb', line 5021

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