Class: Google::Apis::ConnectorsV1::PublishStatus
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::PublishStatus
- 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
Publish status of a custom connector.
Instance Attribute Summary collapse
-
#publish_state ⇒ String
Output only.
-
#publish_time ⇒ String
Output only.
-
#published_as ⇒ String
Output only.
-
#published_source ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PublishStatus
constructor
A new instance of PublishStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PublishStatus
Returns a new instance of PublishStatus.
6490 6491 6492 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6490 def initialize(**args) update!(**args) end |
Instance Attribute Details
#publish_state ⇒ String
Output only. Publish state of the custom connector.
Corresponds to the JSON property publishState
6471 6472 6473 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6471 def publish_state @publish_state end |
#publish_time ⇒ String
Output only. Publish time.
Corresponds to the JSON property publishTime
6476 6477 6478 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6476 def publish_time @publish_time end |
#published_as ⇒ String
Output only. Partner connector name. Will be set on the custom connector.
Format: providers/partner/connectors//versions/
Corresponds to the JSON property publishedAs
6482 6483 6484 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6482 def published_as @published_as end |
#published_source ⇒ String
Output only. Custom connector name. Will be set on the partner connector.
Format: providers/customconnectors/connectors//versions/
Corresponds to the JSON property publishedSource
6488 6489 6490 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6488 def published_source @published_source end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6495 6496 6497 6498 6499 6500 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 6495 def update!(**args) @publish_state = args[:publish_state] if args.key?(:publish_state) @publish_time = args[:publish_time] if args.key?(:publish_time) @published_as = args[:published_as] if args.key?(:published_as) @published_source = args[:published_source] if args.key?(:published_source) end |