class Google::Apis::ConnectorsV1::Connector
Connectors indicates a specific connector type, e.x. Salesforce, SAP etc.
Attributes
Output only. Created time. Corresponds to the JSON property ‘createTime` @return [String]
Output only. Description of the resource. Corresponds to the JSON property ‘description` @return [String]
Output only. Display name. Corresponds to the JSON property ‘displayName` @return [String]
Output only. Link to documentation page. Corresponds to the JSON property ‘documentationUri` @return [String]
Output only. Link to external page. Corresponds to the JSON property ‘externalUri` @return [String]
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>]
Output only. Flag to mark the version indicating the launch stage. Corresponds to the JSON property ‘launchStage` @return [String]
Output only. Updated time. Corresponds to the JSON property ‘updateTime` @return [String]
Output only. Cloud storage location of icons etc consumed by UI. Corresponds to the JSON property ‘webAssetsLocation` @return [String]
Public Class Methods
# File lib/google/apis/connectors_v1/classes.rb, line 592 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/connectors_v1/classes.rb, line 597 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