Show / Hide Table of Contents

Class EventNotificationConfig

The configuration for forwarding telemetry events.

Inheritance
System.Object
EventNotificationConfig
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.CloudIot.v1.Data
Assembly: Google.Apis.CloudIot.v1.dll
Syntax
public class EventNotificationConfig : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

PubsubTopicName

A Cloud Pub/Sub topic name. For example, projects/myProject/topics/deviceEvents.

Declaration
[JsonProperty("pubsubTopicName")]
public virtual string PubsubTopicName { get; set; }
Property Value
Type Description
System.String

SubfolderMatches

If the subfolder name matches this string exactly, this configuration will be used. The string must not include the leading '/' character. If empty, all strings are matched. This field is used only for telemetry events; subfolders are not supported for state changes.

Declaration
[JsonProperty("subfolderMatches")]
public virtual string SubfolderMatches { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top