Class: Google::Apis::CloudassetV1::CreateFeedRequest

Inherits:
Object
  • Object
show all
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

Create asset feed request.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CreateFeedRequest

Returns a new instance of CreateFeedRequest.



904
905
906
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 904

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#feedGoogle::Apis::CloudassetV1::Feed

An asset feed used to export asset updates to a destinations. An asset feed filter controls what updates are exported. The asset feed must be created within a project, organization, or folder. Supported destinations are: Pub/Sub topics. Corresponds to the JSON property feed



896
897
898
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 896

def feed
  @feed
end

#feed_idString

Required. This is the client-assigned asset feed identifier and it needs to be unique under a specific parent project/folder/organization. Corresponds to the JSON property feedId

Returns:

  • (String)


902
903
904
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 902

def feed_id
  @feed_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



909
910
911
912
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 909

def update!(**args)
  @feed = args[:feed] if args.key?(:feed)
  @feed_id = args[:feed_id] if args.key?(:feed_id)
end