Resource: ReleaseConfig
Represents a Dataform release configuration.
JSON representation |
---|
{ "name": string, "gitCommitish": string, "codeCompilationConfig": { object ( |
Fields | |
---|---|
name |
Identifier. The release config's name. |
gitCommitish |
Required. Git commit/tag/branch name at which the repository should be compiled. Must exist in the remote repository. Examples: - a commit SHA: |
codeCompilationConfig |
Optional. If set, fields of |
cronSchedule |
Optional. Optional schedule (in cron format) for automatic creation of compilation results. |
timeZone |
Optional. Specifies the time zone to be used when interpreting cronSchedule. 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. |
recentScheduledReleaseRecords[] |
Output only. Records of the 10 most recent scheduled release attempts, ordered in descending order of |
releaseCompilationResult |
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 cronSchedule), 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 |
disabled |
Optional. Disables automatic creation of compilation results. |
ScheduledReleaseRecord
A record of an attempt to create a compilation result for this release config.
JSON representation |
---|
{ "releaseTime": string, // Union field |
Fields | |
---|---|
releaseTime |
The timestamp of this release attempt. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
Union field
|
|
compilationResult |
The name of the created compilation result, if one was successfully created. Must be in the format |
errorStatus |
The error status encountered upon this attempt to create the compilation result, if the attempt was unsuccessful. |
Methods |
|
---|---|
|
Creates a new ReleaseConfig in a given Repository. |
|
Deletes a single ReleaseConfig. |
|
Fetches a single ReleaseConfig. |
|
Lists ReleaseConfigs in a given Repository. |
|
Updates a single ReleaseConfig. |