Package-level declarations

Types

Link copied to clipboard
data class AuditConfigArgs(val auditLogConfigs: Output<List<AuditLogConfigArgs>>? = null, val service: Output<String>? = null) : ConvertibleToJava<AuditConfigArgs>

Specifies the audit configuration for a service. The configuration determines which permission types are logged, and what identities, if any, are exempted from logging. An AuditConfig must have one or more AuditLogConfigs. If there are AuditConfigs for both allServices and a specific service, the union of the two AuditConfigs is used for that service: the log_types specified in each AuditConfig are enabled, and the exempted_members in each AuditLogConfig are exempted. Example Policy with multiple AuditConfigs: { "audit_configs": [ { "service": "allServices", "audit_log_configs": [ { "log_type": "DATA_READ", "exempted_members": "user:jose@example.com" }, { "log_type": "DATA_WRITE" }, { "log_type": "ADMIN_READ" } ] }, { "service": "sampleservice.googleapis.com", "audit_log_configs": [ { "log_type": "DATA_READ" }, { "log_type": "DATA_WRITE", "exempted_members": "user:aliya@example.com" } ] } ] } For sampleservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also exempts jose@example.com from DATA_READ logging, and aliya@example.com from DATA_WRITE logging.

Link copied to clipboard
Link copied to clipboard
data class AuditLogConfigArgs(val exemptedMembers: Output<List<String>>? = null, val logType: Output<AuditLogConfigLogType>? = null) : ConvertibleToJava<AuditLogConfigArgs>

Provides the configuration for logging a type of permissions. Example: { "audit_log_configs": [ { "log_type": "DATA_READ", "exempted_members": "user:jose@example.com" }, { "log_type": "DATA_WRITE" } ] } This enables 'DATA_READ' and 'DATA_WRITE' logging, while exempting jose@example.com from DATA_READ logging.

Link copied to clipboard
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 ConsumerPscConfigArgs(val disableGlobalAccess: Output<Boolean>? = null, val network: Output<String>? = null, val project: Output<String>? = null) : ConvertibleToJava<ConsumerPscConfigArgs>

Allow the producer to specify which consumers can connect to it.

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 GetHubIamPolicyPlainArgs(val hubId: String, val optionsRequestedPolicyVersion: Int? = null, val project: String? = null) : ConvertibleToJava<GetHubIamPolicyPlainArgs>
Link copied to clipboard
data class GetHubPlainArgs(val hubId: String, val project: String? = null) : ConvertibleToJava<GetHubPlainArgs>
Link copied to clipboard
Link copied to clipboard
data class GetInternalRangePlainArgs(val internalRangeId: String, val location: String, val project: String? = null) : ConvertibleToJava<GetInternalRangePlainArgs>
Link copied to clipboard
data class GetPolicyBasedRouteIamPolicyPlainArgs(val optionsRequestedPolicyVersion: Int? = null, val policyBasedRouteId: String, val project: String? = null) : ConvertibleToJava<GetPolicyBasedRouteIamPolicyPlainArgs>
Link copied to clipboard
data class GetServiceClassIamPolicyPlainArgs(val location: String, val optionsRequestedPolicyVersion: Int? = null, val project: String? = null, val serviceClassId: String) : ConvertibleToJava<GetServiceClassIamPolicyPlainArgs>
Link copied to clipboard
data class GetServiceClassPlainArgs(val location: String, val project: String? = null, val serviceClassId: String) : ConvertibleToJava<GetServiceClassPlainArgs>
data class GetServiceConnectionMapIamPolicyPlainArgs(val location: String, val optionsRequestedPolicyVersion: Int? = null, val project: String? = null, val serviceConnectionMapId: String) : ConvertibleToJava<GetServiceConnectionMapIamPolicyPlainArgs>
Link copied to clipboard
data class GetServiceConnectionMapPlainArgs(val location: String, val project: String? = null, val serviceConnectionMapId: String) : ConvertibleToJava<GetServiceConnectionMapPlainArgs>
data class GetServiceConnectionPolicyIamPolicyPlainArgs(val location: String, val optionsRequestedPolicyVersion: Int? = null, val project: String? = null, val serviceConnectionPolicyId: String) : ConvertibleToJava<GetServiceConnectionPolicyIamPolicyPlainArgs>
Link copied to clipboard
data class GetServiceConnectionPolicyPlainArgs(val location: String, val project: String? = null, val serviceConnectionPolicyId: String) : ConvertibleToJava<GetServiceConnectionPolicyPlainArgs>
Link copied to clipboard
data class GetServiceConnectionTokenPlainArgs(val location: String, val project: String? = null, val serviceConnectionTokenId: String) : ConvertibleToJava<GetServiceConnectionTokenPlainArgs>
Link copied to clipboard
data class GetSpokeIamPolicyPlainArgs(val location: String, val optionsRequestedPolicyVersion: Int? = null, val project: String? = null, val spokeId: String) : ConvertibleToJava<GetSpokeIamPolicyPlainArgs>
Link copied to clipboard
data class GetSpokePlainArgs(val location: String, val project: String? = null, val spokeId: String) : ConvertibleToJava<GetSpokePlainArgs>
Link copied to clipboard
Link copied to clipboard
data class LinkedInterconnectAttachmentsArgs(val siteToSiteDataTransfer: Output<Boolean>? = null, val uris: Output<List<String>>? = null) : ConvertibleToJava<LinkedInterconnectAttachmentsArgs>

A collection of VLAN attachment resources. These resources should be redundant attachments that all advertise the same prefixes to Google Cloud. Alternatively, in active/passive configurations, all attachments should be capable of advertising the same prefixes.

Link copied to clipboard
data class LinkedRouterApplianceInstancesArgs(val instances: Output<List<RouterApplianceInstanceArgs>>? = null, val siteToSiteDataTransfer: Output<Boolean>? = null) : ConvertibleToJava<LinkedRouterApplianceInstancesArgs>

A collection of router appliance instances. If you configure multiple router appliance instances to receive data from the same set of sites outside of Google Cloud, we recommend that you associate those instances with the same spoke.

Link copied to clipboard
data class LinkedVpnTunnelsArgs(val siteToSiteDataTransfer: Output<Boolean>? = null, val uris: Output<List<String>>? = null) : ConvertibleToJava<LinkedVpnTunnelsArgs>

A collection of Cloud VPN tunnel resources. These resources should be redundant HA VPN tunnels that all advertise the same prefixes to Google Cloud. Alternatively, in a passive/active configuration, all tunnels should be capable of advertising the same prefixes.

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

The PSC configurations on producer side.

Link copied to clipboard
data class PscConfigArgs(val limit: Output<String>? = null, val subnetworks: Output<List<String>>? = null) : ConvertibleToJava<PscConfigArgs>

Configuration used for Private Service Connect connections. Used when Infrastructure is PSC.

Link copied to clipboard
Link copied to clipboard
data class RouterApplianceInstanceArgs(val ipAddress: Output<String>? = null, val virtualMachine: Output<String>? = null) : ConvertibleToJava<RouterApplianceInstanceArgs>

A router appliance instance is a Compute Engine virtual machine (VM) instance that acts as a BGP speaker. A router appliance instance is specified by the URI of the VM and the internal IP address of one of the VM's network interfaces.

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

RoutingVPC contains information about the VPC networks associated with the spokes of a Network Connectivity Center hub.

Link copied to clipboard