Class: Google::Apis::ConnectorsV1::Connector

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

Connectors indicates a specific connector type, e.x. Salesforce, SAP etc.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Connector

Returns a new instance of Connector.



814
815
816
# File 'lib/google/apis/connectors_v1/classes.rb', line 814

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

Instance Attribute Details

#create_timeString

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

Returns:

  • (String)


758
759
760
# File 'lib/google/apis/connectors_v1/classes.rb', line 758

def create_time
  @create_time
end

#descriptionString

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

Returns:

  • (String)


763
764
765
# File 'lib/google/apis/connectors_v1/classes.rb', line 763

def description
  @description
end

#display_nameString

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

Returns:

  • (String)


768
769
770
# File 'lib/google/apis/connectors_v1/classes.rb', line 768

def display_name
  @display_name
end

#documentation_uriString

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

Returns:

  • (String)


773
774
775
# File 'lib/google/apis/connectors_v1/classes.rb', line 773

def documentation_uri
  @documentation_uri
end

#eventing_detailsGoogle::Apis::ConnectorsV1::EventingDetails

Eventing Details message. Corresponds to the JSON property eventingDetails



778
779
780
# File 'lib/google/apis/connectors_v1/classes.rb', line 778

def eventing_details
  @eventing_details
end

#external_uriString

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

Returns:

  • (String)


783
784
785
# File 'lib/google/apis/connectors_v1/classes.rb', line 783

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>)


790
791
792
# File 'lib/google/apis/connectors_v1/classes.rb', line 790

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)


795
796
797
# File 'lib/google/apis/connectors_v1/classes.rb', line 795

def launch_stage
  @launch_stage
end

#nameString

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

Returns:

  • (String)


802
803
804
# File 'lib/google/apis/connectors_v1/classes.rb', line 802

def name
  @name
end

#update_timeString

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

Returns:

  • (String)


807
808
809
# File 'lib/google/apis/connectors_v1/classes.rb', line 807

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)


812
813
814
# File 'lib/google/apis/connectors_v1/classes.rb', line 812

def web_assets_location
  @web_assets_location
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



819
820
821
822
823
824
825
826
827
828
829
830
831
# File 'lib/google/apis/connectors_v1/classes.rb', line 819

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)
  @eventing_details = args[:eventing_details] if args.key?(:eventing_details)
  @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