View Source GoogleApi.Dataform.V1beta1.Model.ReleaseConfig (google_api_dataform v0.5.0)

Represents a Dataform release configuration.

Attributes

  • codeCompilationConfig (type: GoogleApi.Dataform.V1beta1.Model.CodeCompilationConfig.t, default: nil) - Optional. If set, fields of code_compilation_config override the default compilation settings that are specified in dataform.json.
  • cronSchedule (type: String.t, default: nil) - Optional. Optional schedule (in cron format) for automatic creation of compilation results.
  • disabled (type: boolean(), default: nil) - Optional. Disables automatic creation of compilation results.
  • gitCommitish (type: String.t, default: nil) - Required. 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) - Identifier. The release config's name.
  • recentScheduledReleaseRecords (type: list(GoogleApi.Dataform.V1beta1.Model.ScheduledReleaseRecord.t), default: nil) - Output only. Records of the 10 most recent scheduled release attempts, ordered in in descending order of release_time. Updated whenever automatic creation of a compilation result is triggered by cron_schedule.
  • releaseCompilationResult (type: String.t, default: nil) - Optional. The name of the currently released compilation result for this release config. This value is updated when a compilation result is automatically created from this release config (using cron_schedule), or when this resource is updated by API call (perhaps to roll back to an earlier release). The compilation result must have been created using this release config. Must be in the format projects/*/locations/*/repositories/*/compilationResults/*.
  • timeZone (type: String.t, default: nil) - Optional. Specifies the time zone to be used when interpreting cron_schedule. Must be a time zone name from the time zone database (https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). If left unspecified, the default is UTC.

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

@type t() :: %GoogleApi.Dataform.V1beta1.Model.ReleaseConfig{
  codeCompilationConfig:
    GoogleApi.Dataform.V1beta1.Model.CodeCompilationConfig.t() | nil,
  cronSchedule: String.t() | nil,
  disabled: boolean() | nil,
  gitCommitish: String.t() | nil,
  name: String.t() | nil,
  recentScheduledReleaseRecords:
    [GoogleApi.Dataform.V1beta1.Model.ScheduledReleaseRecord.t()] | nil,
  releaseCompilationResult: String.t() | nil,
  timeZone: String.t() | nil
}

Functions

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.