Package-level declarations

Types

Link copied to clipboard
data class BindingArgs(val condition: Output<ExprArgs>? = null, val members: Output<List<String>>? = null, val role: Output<String>? = null) : ConvertibleToJava<BindingArgs>

Associates members, or principals, with a role.

Link copied to clipboard
Link copied to clipboard
data class DeviceConfigArgs(val binaryData: Output<String>? = null) : ConvertibleToJava<DeviceConfigArgs>

The device configuration. Eventually delivered to devices.

Link copied to clipboard
Link copied to clipboard
data class DeviceCredentialArgs(val expirationTime: Output<String>? = null, val publicKey: Output<PublicKeyCredentialArgs>? = null) : ConvertibleToJava<DeviceCredentialArgs>

A server-stored device credential used for authentication.

Link copied to clipboard
data class EventNotificationConfigArgs(val pubsubTopicName: Output<String>? = null, val subfolderMatches: Output<String>? = null) : ConvertibleToJava<EventNotificationConfigArgs>

The configuration for forwarding telemetry events.

Link copied to clipboard
data class ExprArgs(val description: Output<String>? = null, val expression: Output<String>? = null, val location: Output<String>? = null, val title: Output<String>? = null) : ConvertibleToJava<ExprArgs>

Represents a textual expression in the Common Expression Language (CEL) syntax. CEL is a C-like expression language. The syntax and semantics of CEL are documented at https://github.com/google/cel-spec. Example (Comparison): title: "Summary size limit" description: "Determines if a summary is less than 100 chars" expression: "document.summary.size() < 100" Example (Equality): title: "Requestor is owner" description: "Determines if requestor is the document owner" expression: "document.owner == request.auth.claims.email" Example (Logic): title: "Public documents" description: "Determine whether the document should be publicly visible" expression: "document.type != 'private' && document.type != 'internal'" Example (Data Manipulation): title: "Notification string" description: "Create a notification string with a timestamp." expression: "'New message received at ' + string(document.create_time)" The exact variables and functions that may be referenced within an expression are determined by the service that evaluates it. See the service documentation for additional information.

Link copied to clipboard

Builder for ExprArgs.

Link copied to clipboard
data class GatewayConfigArgs(val gatewayAuthMethod: Output<GatewayConfigGatewayAuthMethod>? = null, val gatewayType: Output<GatewayConfigGatewayType>? = null) : ConvertibleToJava<GatewayConfigArgs>

Gateway-related configuration and state.

Link copied to clipboard
Link copied to clipboard
data class GetDevicePlainArgs(val deviceId: String, val fieldMask: String? = null, val location: String, val project: String? = null, val registryId: String) : ConvertibleToJava<GetDevicePlainArgs>
Link copied to clipboard
Link copied to clipboard
data class GetRegistryGroupIamPolicyPlainArgs(val groupId: String, val location: String, val project: String? = null, val registryId: String) : ConvertibleToJava<GetRegistryGroupIamPolicyPlainArgs>
Link copied to clipboard
data class GetRegistryIamPolicyPlainArgs(val location: String, val project: String? = null, val registryId: String) : ConvertibleToJava<GetRegistryIamPolicyPlainArgs>
Link copied to clipboard
data class GetRegistryPlainArgs(val location: String, val project: String? = null, val registryId: String) : ConvertibleToJava<GetRegistryPlainArgs>
Link copied to clipboard
data class HttpConfigArgs(val httpEnabledState: Output<HttpConfigHttpEnabledState>? = null) : ConvertibleToJava<HttpConfigArgs>

The configuration of the HTTP bridge for a device registry.

Link copied to clipboard
Link copied to clipboard
data class MqttConfigArgs(val mqttEnabledState: Output<MqttConfigMqttEnabledState>? = null) : ConvertibleToJava<MqttConfigArgs>

The configuration of MQTT for a device registry.

Link copied to clipboard
Link copied to clipboard
data class PublicKeyCertificateArgs(val certificate: Output<String>? = null, val format: Output<PublicKeyCertificateFormat>? = null) : ConvertibleToJava<PublicKeyCertificateArgs>

A public key certificate format and data.

Link copied to clipboard
data class PublicKeyCredentialArgs(val format: Output<PublicKeyCredentialFormat>? = null, val key: Output<String>? = null) : ConvertibleToJava<PublicKeyCredentialArgs>

A public key format and data.

Link copied to clipboard
data class RegistryCredentialArgs(val publicKeyCertificate: Output<PublicKeyCertificateArgs>? = null) : ConvertibleToJava<RegistryCredentialArgs>

A server-stored registry credential used to validate device credentials.

Link copied to clipboard
data class StateNotificationConfigArgs(val pubsubTopicName: Output<String>? = null) : ConvertibleToJava<StateNotificationConfigArgs>

The configuration for notification of new states received from the device.