Class: Google::Apis::CloudassetV1::PubsubDestination
- Inherits:
-
Object
- Object
- Google::Apis::CloudassetV1::PubsubDestination
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- 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.
Constructor Details
#initialize(**args) ⇒ PubsubDestination
Returns a new instance of PubsubDestination.
2936 2937 2938 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 2936 def initialize(**args) update!(**args) end |
Instance Attribute Details
#topic ⇒ String
The name of the Pub/Sub topic to publish to. Example: projects/PROJECT_ID/
topics/TOPIC_ID
.
Corresponds to the JSON property topic
2934 2935 2936 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 2934 def topic @topic end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2941 2942 2943 |
# File 'generated/google/apis/cloudasset_v1/classes.rb', line 2941 def update!(**args) @topic = args[:topic] if args.key?(:topic) end |