Class: Google::Apis::ConnectorsV1::CustomConnector
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::CustomConnector
- 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
CustomConnector represents the custom connector defined by the customer as part of byoc.
Instance Attribute Summary collapse
-
#active_connector_versions ⇒ Array<String>
Output only.
-
#all_connector_versions ⇒ Array<String>
Output only.
-
#all_marketplace_versions ⇒ Array<String>
Output only.
-
#create_time ⇒ String
Output only.
-
#custom_connector_type ⇒ String
Required.
-
#description ⇒ String
Optional.
-
#display_name ⇒ String
Optional.
-
#labels ⇒ Hash<String,String>
Optional.
-
#logo ⇒ String
Optional.
-
#name ⇒ String
Identifier.
-
#published_marketplace_versions ⇒ Array<String>
Output only.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CustomConnector
constructor
A new instance of CustomConnector.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CustomConnector
Returns a new instance of CustomConnector.
1724 1725 1726 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1724 def initialize(**args) update!(**args) end |
Instance Attribute Details
#active_connector_versions ⇒ Array<String>
Output only. Active connector versions.
Corresponds to the JSON property activeConnectorVersions
1664 1665 1666 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1664 def active_connector_versions @active_connector_versions end |
#all_connector_versions ⇒ Array<String>
Output only. All connector versions.
Corresponds to the JSON property allConnectorVersions
1669 1670 1671 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1669 def all_connector_versions @all_connector_versions end |
#all_marketplace_versions ⇒ Array<String>
Output only. All marketplace versions.
Corresponds to the JSON property allMarketplaceVersions
1674 1675 1676 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1674 def all_marketplace_versions @all_marketplace_versions end |
#create_time ⇒ String
Output only. Created time.
Corresponds to the JSON property createTime
1679 1680 1681 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1679 def create_time @create_time end |
#custom_connector_type ⇒ String
Required. Type of the custom connector.
Corresponds to the JSON property customConnectorType
1684 1685 1686 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1684 def custom_connector_type @custom_connector_type end |
#description ⇒ String
Optional. Description of the resource.
Corresponds to the JSON property description
1689 1690 1691 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1689 def description @description end |
#display_name ⇒ String
Optional. Display name.
Corresponds to the JSON property displayName
1694 1695 1696 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1694 def display_name @display_name end |
#labels ⇒ Hash<String,String>
Optional. 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
1701 1702 1703 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1701 def labels @labels end |
#logo ⇒ String
Optional. Logo of the resource.
Corresponds to the JSON property logo
1706 1707 1708 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1706 def logo @logo end |
#name ⇒ String
Identifier. Resource name of the CustomConnector. Format: projects/project/
locations/location/customConnectors/connector
Corresponds to the JSON property name
1712 1713 1714 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1712 def name @name end |
#published_marketplace_versions ⇒ Array<String>
Output only. Published marketplace versions.
Corresponds to the JSON property publishedMarketplaceVersions
1717 1718 1719 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1717 def published_marketplace_versions @published_marketplace_versions end |
#update_time ⇒ String
Output only. Updated time.
Corresponds to the JSON property updateTime
1722 1723 1724 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1722 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 1729 def update!(**args) @active_connector_versions = args[:active_connector_versions] if args.key?(:active_connector_versions) @all_connector_versions = args[:all_connector_versions] if args.key?(:all_connector_versions) @all_marketplace_versions = args[:all_marketplace_versions] if args.key?(:all_marketplace_versions) @create_time = args[:create_time] if args.key?(:create_time) @custom_connector_type = args[:custom_connector_type] if args.key?(:custom_connector_type) @description = args[:description] if args.key?(:description) @display_name = args[:display_name] if args.key?(:display_name) @labels = args[:labels] if args.key?(:labels) @logo = args[:logo] if args.key?(:logo) @name = args[:name] if args.key?(:name) @published_marketplace_versions = args[:published_marketplace_versions] if args.key?(:published_marketplace_versions) @update_time = args[:update_time] if args.key?(:update_time) end |