Class: Google::Apis::CloudassetV1::PubsubDestination
- Inherits:
-
Object
- Object
- Google::Apis::CloudassetV1::PubsubDestination
- Defined in:
- generated/google/apis/cloudasset_v1/classes.rb,
generated/google/apis/cloudasset_v1/representations.rb,
generated/google/apis/cloudasset_v1/representations.rb
Overview
A Pub/Sub destination.
Instance Attribute Summary collapse
-
#topic ⇒ String
The name of the Pub/Sub topic to publish to.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PubsubDestination
constructor
A new instance of PubsubDestination.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ PubsubDestination
Returns a new instance of PubsubDestination.
1811 1812 1813 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 1811 def initialize(**args) update!(**args) end |
Instance Attribute Details
#topic ⇒ String
The name of the Pub/Sub topic to publish to.
For example: projects/PROJECT_ID/topics/TOPIC_ID
.
Corresponds to the JSON property topic
1809 1810 1811 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 1809 def topic @topic end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1816 1817 1818 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 1816 def update!(**args) @topic = args[:topic] if args.key?(:topic) end |