Class: Google::Apis::ServicecontrolV2::V2ResourceEvent

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/servicecontrol_v2/classes.rb,
lib/google/apis/servicecontrol_v2/representations.rb,
lib/google/apis/servicecontrol_v2/representations.rb

Overview

Report v2 extension proto for passing the resource metadata associated with a resource create/update/delete/undelete event from ESF to Chemist. ResourceEvent proto should be serialized into the ReportRequest.operations. extensions.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ V2ResourceEvent

Returns a new instance of V2ResourceEvent.



1710
1711
1712
# File 'lib/google/apis/servicecontrol_v2/classes.rb', line 1710

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

Instance Attribute Details

#destinationsString

The destinations field determines which backend services should handle the event. This should be specified as a comma-delimited string. Corresponds to the JSON property destinations

Returns:

  • (String)


1674
1675
1676
# File 'lib/google/apis/servicecontrol_v2/classes.rb', line 1674

def destinations
  @destinations
end

#parentGoogle::Apis::ServicecontrolV2::Resource

This message defines core attributes for a resource. A resource is an addressable (named) entity provided by the destination service. For example, a file stored on a network storage service. Corresponds to the JSON property parent



1681
1682
1683
# File 'lib/google/apis/servicecontrol_v2/classes.rb', line 1681

def parent
  @parent
end

#pathString

The api path the resource event was created in. This should match the source of the payload field. For direct integrations with Chemist, this should generally be the RESPONSE. go/resource-event-pipeline-type Corresponds to the JSON property path

Returns:

  • (String)


1688
1689
1690
# File 'lib/google/apis/servicecontrol_v2/classes.rb', line 1688

def path
  @path
end

#payloadHash<String,Object>

The payload contains metadata associated with the resource event. A ResourceEventPayloadStatus is provided instead if the original payload cannot be returned due to a limitation (e.g. size limit). Corresponds to the JSON property payload

Returns:

  • (Hash<String,Object>)


1695
1696
1697
# File 'lib/google/apis/servicecontrol_v2/classes.rb', line 1695

def payload
  @payload
end

#resourceGoogle::Apis::ServicecontrolV2::Resource

This message defines core attributes for a resource. A resource is an addressable (named) entity provided by the destination service. For example, a file stored on a network storage service. Corresponds to the JSON property resource



1702
1703
1704
# File 'lib/google/apis/servicecontrol_v2/classes.rb', line 1702

def resource
  @resource
end

#typeString

The resource event type determines how the backend service should process the event. Corresponds to the JSON property type

Returns:

  • (String)


1708
1709
1710
# File 'lib/google/apis/servicecontrol_v2/classes.rb', line 1708

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1715
1716
1717
1718
1719
1720
1721
1722
# File 'lib/google/apis/servicecontrol_v2/classes.rb', line 1715

def update!(**args)
  @destinations = args[:destinations] if args.key?(:destinations)
  @parent = args[:parent] if args.key?(:parent)
  @path = args[:path] if args.key?(:path)
  @payload = args[:payload] if args.key?(:payload)
  @resource = args[:resource] if args.key?(:resource)
  @type = args[:type] if args.key?(:type)
end