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 AuthConfigArgs(val additionalVariables: Output<List<ConfigVariableArgs>>? = null, val authKey: Output<String>? = null, val authType: Output<AuthConfigAuthType>? = null, val oauth2AuthCodeFlow: Output<Oauth2AuthCodeFlowArgs>? = null, val oauth2ClientCredentials: Output<Oauth2ClientCredentialsArgs>? = null, val oauth2JwtBearer: Output<Oauth2JwtBearerArgs>? = null, val sshPublicKey: Output<SshPublicKeyArgs>? = null, val userPassword: Output<UserPasswordArgs>? = null) : ConvertibleToJava<AuthConfigArgs>

AuthConfig defines details of a authentication type.

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 ConfigVariableArgs(val boolValue: Output<Boolean>? = null, val intValue: Output<String>? = null, val key: Output<String>? = null, val secretValue: Output<SecretArgs>? = null, val stringValue: Output<String>? = null) : ConvertibleToJava<ConfigVariableArgs>

ConfigVariable represents a configuration variable present in a Connection. or AuthConfig.

Link copied to clipboard
Link copied to clipboard
data class ConnectorsLogConfigArgs(val enabled: Output<Boolean>? = null) : ConvertibleToJava<ConnectorsLogConfigArgs>

Log configuration for the connection.

Link copied to clipboard
data class DestinationArgs(val host: Output<String>? = null, val port: Output<Int>? = null, val serviceAttachment: Output<String>? = null) : ConvertibleToJava<DestinationArgs>
Link copied to clipboard
Link copied to clipboard
data class DestinationConfigArgs(val destinations: Output<List<DestinationArgs>>? = null, val key: Output<String>? = null) : ConvertibleToJava<DestinationConfigArgs>

Define the Connectors target endpoint.

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 GetConnectionIamPolicyPlainArgs(val connectionId: String, val location: String, val optionsRequestedPolicyVersion: Int? = null, val project: String? = null) : ConvertibleToJava<GetConnectionIamPolicyPlainArgs>
Link copied to clipboard
data class GetConnectionPlainArgs(val connectionId: String, val location: String, val project: String? = null, val view: String? = null) : ConvertibleToJava<GetConnectionPlainArgs>
Link copied to clipboard
data class GetEndpointAttachmentPlainArgs(val endpointAttachmentId: String, val location: String, val project: String? = null) : ConvertibleToJava<GetEndpointAttachmentPlainArgs>
Link copied to clipboard
data class GetManagedZonePlainArgs(val managedZone: String, val project: String? = null) : ConvertibleToJava<GetManagedZonePlainArgs>
Link copied to clipboard
data class GetProviderIamPolicyPlainArgs(val location: String, val optionsRequestedPolicyVersion: Int? = null, val project: String? = null, val providerId: String) : ConvertibleToJava<GetProviderIamPolicyPlainArgs>
Link copied to clipboard
data class JwtClaimsArgs(val audience: Output<String>? = null, val issuer: Output<String>? = null, val subject: Output<String>? = null) : ConvertibleToJava<JwtClaimsArgs>

JWT claims used for the jwt-bearer authorization grant.

Link copied to clipboard
Link copied to clipboard
data class LockConfigArgs(val locked: Output<Boolean>? = null, val reason: Output<String>? = null) : ConvertibleToJava<LockConfigArgs>

Determines whether or no a connection is locked. If locked, a reason must be specified.

Link copied to clipboard
Link copied to clipboard
data class NodeConfigArgs(val maxNodeCount: Output<Int>? = null, val minNodeCount: Output<Int>? = null) : ConvertibleToJava<NodeConfigArgs>

Node configuration for the connection.

Link copied to clipboard
Link copied to clipboard
data class Oauth2AuthCodeFlowArgs(val authCode: Output<String>? = null, val clientId: Output<String>? = null, val clientSecret: Output<SecretArgs>? = null, val enablePkce: Output<Boolean>? = null, val pkceVerifier: Output<String>? = null, val redirectUri: Output<String>? = null, val scopes: Output<List<String>>? = null) : ConvertibleToJava<Oauth2AuthCodeFlowArgs>

Parameters to support Oauth 2.0 Auth Code Grant Authentication. See https://www.rfc-editor.org/rfc/rfc6749#section-1.3.1 for more details.

Link copied to clipboard
data class Oauth2ClientCredentialsArgs(val clientId: Output<String>? = null, val clientSecret: Output<SecretArgs>? = null) : ConvertibleToJava<Oauth2ClientCredentialsArgs>

Parameters to support Oauth 2.0 Client Credentials Grant Authentication. See https://tools.ietf.org/html/rfc6749#section-1.3.4 for more details.

Link copied to clipboard
data class Oauth2JwtBearerArgs(val clientKey: Output<SecretArgs>? = null, val jwtClaims: Output<JwtClaimsArgs>? = null) : ConvertibleToJava<Oauth2JwtBearerArgs>

Parameters to support JSON Web Token (JWT) Profile for Oauth 2.0 Authorization Grant based authentication. See https://tools.ietf.org/html/rfc7523 for more details.

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

Secret provides a reference to entries in Secret Manager.

Link copied to clipboard

Builder for SecretArgs.

Link copied to clipboard
data class SshPublicKeyArgs(val certType: Output<String>? = null, val sshClientCert: Output<SecretArgs>? = null, val sshClientCertPass: Output<SecretArgs>? = null, val username: Output<String>? = null) : ConvertibleToJava<SshPublicKeyArgs>

Parameters to support Ssh public key Authentication.

Link copied to clipboard
Link copied to clipboard
data class SslConfigArgs(val additionalVariables: Output<List<ConfigVariableArgs>>? = null, val clientCertType: Output<SslConfigClientCertType>? = null, val clientCertificate: Output<SecretArgs>? = null, val clientPrivateKey: Output<SecretArgs>? = null, val clientPrivateKeyPass: Output<SecretArgs>? = null, val privateServerCertificate: Output<SecretArgs>? = null, val serverCertType: Output<SslConfigServerCertType>? = null, val trustModel: Output<SslConfigTrustModel>? = null, val type: Output<SslConfigType>? = null, val useSsl: Output<Boolean>? = null) : ConvertibleToJava<SslConfigArgs>

SSL Configuration of a connection

Link copied to clipboard
Link copied to clipboard
data class UserPasswordArgs(val password: Output<SecretArgs>? = null, val username: Output<String>? = null) : ConvertibleToJava<UserPasswordArgs>

Parameters to support Username and Password Authentication.

Link copied to clipboard