View Source GoogleApi.Dataform.V1beta1.Model.CompilationResult (google_api_dataform v0.7.0)
Represents the result of compiling a Dataform project.
Attributes
-
codeCompilationConfig
(type:GoogleApi.Dataform.V1beta1.Model.CodeCompilationConfig.t
, default:nil
) - Immutable. If set, fields ofcode_compilation_config
override the default compilation settings that are specified in dataform.json. -
compilationErrors
(type:list(GoogleApi.Dataform.V1beta1.Model.CompilationError.t)
, default:nil
) - Output only. Errors encountered during project compilation. -
createTime
(type:DateTime.t
, default:nil
) - Output only. The timestamp of when the compilation result was created. -
dataEncryptionState
(type:GoogleApi.Dataform.V1beta1.Model.DataEncryptionState.t
, default:nil
) - Output only. Only set if the repository has a KMS Key. -
dataformCoreVersion
(type:String.t
, default:nil
) - Output only. The version of@dataform/core
that was used for compilation. -
gitCommitish
(type:String.t
, default:nil
) - Immutable. Git commit/tag/branch name at which the repository should be compiled. Must exist in the remote repository. Examples: - a commit SHA:12ade345
- a tag:tag1
- a branch name:branch1
-
name
(type:String.t
, default:nil
) - Output only. The compilation result's name. -
releaseConfig
(type:String.t
, default:nil
) - Immutable. The name of the release config to compile. Must be in the formatprojects/*/locations/*/repositories/*/releaseConfigs/*
. -
resolvedGitCommitSha
(type:String.t
, default:nil
) - Output only. The fully resolved Git commit SHA of the code that was compiled. Not set for compilation results whose source is a workspace. -
workspace
(type:String.t
, default:nil
) - Immutable. The name of the workspace to compile. Must be in the formatprojects/*/locations/*/repositories/*/workspaces/*
.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.Dataform.V1beta1.Model.CompilationResult{ codeCompilationConfig: GoogleApi.Dataform.V1beta1.Model.CodeCompilationConfig.t() | nil, compilationErrors: [GoogleApi.Dataform.V1beta1.Model.CompilationError.t()] | nil, createTime: DateTime.t() | nil, dataEncryptionState: GoogleApi.Dataform.V1beta1.Model.DataEncryptionState.t() | nil, dataformCoreVersion: String.t() | nil, gitCommitish: String.t() | nil, name: String.t() | nil, releaseConfig: String.t() | nil, resolvedGitCommitSha: String.t() | nil, workspace: String.t() | nil }