Class: Google::Apis::CloudassetV1::PubsubDestination
- Inherits:
-
Object
- Object
- Google::Apis::CloudassetV1::PubsubDestination
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudasset_v1/classes.rb,
lib/google/apis/cloudasset_v1/representations.rb,
lib/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.
4871 4872 4873 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 4871 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
4869 4870 4871 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 4869 def topic @topic end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4876 4877 4878 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 4876 def update!(**args) @topic = args[:topic] if args.key?(:topic) end |