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 CodeCompilationConfigArgs(val assertionSchema: Output<String>? = null, val databaseSuffix: Output<String>? = null, val defaultDatabase: Output<String>? = null, val defaultLocation: Output<String>? = null, val defaultSchema: Output<String>? = null, val schemaSuffix: Output<String>? = null, val tablePrefix: Output<String>? = null, val vars: Output<Map<String, String>>? = null) : ConvertibleToJava<CodeCompilationConfigArgs>

Configures various aspects of Dataform code compilation.

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 GetCompilationResultPlainArgs(val compilationResultId: String, val location: String, val project: String? = null, val repositoryId: String) : ConvertibleToJava<GetCompilationResultPlainArgs>
Link copied to clipboard
data class GetReleaseConfigPlainArgs(val location: String, val project: String? = null, val releaseConfigId: String, val repositoryId: String) : ConvertibleToJava<GetReleaseConfigPlainArgs>
Link copied to clipboard
data class GetRepositoryIamPolicyPlainArgs(val location: String, val optionsRequestedPolicyVersion: Int? = null, val project: String? = null, val repositoryId: String) : ConvertibleToJava<GetRepositoryIamPolicyPlainArgs>
Link copied to clipboard
data class GetRepositoryPlainArgs(val location: String, val project: String? = null, val repositoryId: String) : ConvertibleToJava<GetRepositoryPlainArgs>
Link copied to clipboard
data class GetRepositoryWorkspaceIamPolicyPlainArgs(val location: String, val optionsRequestedPolicyVersion: Int? = null, val project: String? = null, val repositoryId: String, val workspaceId: String) : ConvertibleToJava<GetRepositoryWorkspaceIamPolicyPlainArgs>
Link copied to clipboard
data class GetWorkflowConfigPlainArgs(val location: String, val project: String? = null, val repositoryId: String, val workflowConfigId: String) : ConvertibleToJava<GetWorkflowConfigPlainArgs>
Link copied to clipboard
data class GetWorkflowInvocationPlainArgs(val location: String, val project: String? = null, val repositoryId: String, val workflowInvocationId: String) : ConvertibleToJava<GetWorkflowInvocationPlainArgs>
Link copied to clipboard
data class GetWorkspacePlainArgs(val location: String, val project: String? = null, val repositoryId: String, val workspaceId: String) : ConvertibleToJava<GetWorkspacePlainArgs>
Link copied to clipboard
data class GitRemoteSettingsArgs(val authenticationTokenSecretVersion: Output<String>, val defaultBranch: Output<String>, val url: Output<String>) : ConvertibleToJava<GitRemoteSettingsArgs>

Controls Git remote configuration for a repository.

Link copied to clipboard
data class InvocationConfigArgs(val fullyRefreshIncrementalTablesEnabled: Output<Boolean>? = null, val includedTags: Output<List<String>>? = null, val includedTargets: Output<List<TargetArgs>>? = null, val transitiveDependenciesIncluded: Output<Boolean>? = null, val transitiveDependentsIncluded: Output<Boolean>? = null) : ConvertibleToJava<InvocationConfigArgs>

Includes various configuration options for a workflow invocation. If both included_targets and included_tags are unset, all actions will be included.

Link copied to clipboard
data class TargetArgs(val database: Output<String>? = null, val name: Output<String>? = null, val schema: Output<String>? = null) : ConvertibleToJava<TargetArgs>

Represents an action identifier. If the action writes output, the output will be written to the referenced database object.

Link copied to clipboard

Builder for TargetArgs.

Link copied to clipboard
data class WorkspaceCompilationOverridesArgs(val defaultDatabase: Output<String>? = null, val schemaSuffix: Output<String>? = null, val tablePrefix: Output<String>? = null) : ConvertibleToJava<WorkspaceCompilationOverridesArgs>

Configures workspace compilation overrides for a repository. Primarily used by the UI (console.cloud.google.com). schema_suffix and table_prefix can have a special expression - ${workspaceName}, which refers to the workspace name from which the compilation results will be created. API callers are expected to resolve the expression in these overrides and provide them explicitly in code_compilation_config (https://cloud.google.com/dataform/reference/rest/v1beta1/projects.locations.repositories.compilationResults#codecompilationconfig) when creating workspace-scoped compilation results.