Struct octorust::types::ReposCreateDeploymentStatusRequest[][src]

pub struct ReposCreateDeploymentStatusRequest {
    pub auto_inactive: Option<bool>,
    pub description: String,
    pub environment: Option<ReposCreateDeploymentStatusRequestEnvironment>,
    pub environment_url: String,
    pub log_url: String,
    pub state: ReposCreateDeploymentStatusRequestState,
    pub target_url: String,
}

Fields

auto_inactive: Option<bool>

Adds a new inactive status to all prior non-transient, non-production environment deployments with the same repository and environment name as the created status’s deployment. An inactive status is only added to deployments that had a success state. Default: true
**Note:** To add an inactive status to production environments, you must use the application/vnd.github.flash-preview+json custom media type.
**Note:** This parameter requires you to use the application/vnd.github.ant-man-preview+json custom media type.

description: String

A short description of the status. The maximum description length is 140 characters.

environment: Option<ReposCreateDeploymentStatusRequestEnvironment>

Name for the target deployment environment, which can be changed when setting a deploy status. For example, production, staging, or qa. **Note:** This parameter requires you to use the application/vnd.github.flash-preview+json custom media type.

environment_url: String

Sets the URL for accessing your environment. Default: ""
**Note:** This parameter requires you to use the application/vnd.github.ant-man-preview+json custom media type.

log_url: String

The full URL of the deployment’s output. This parameter replaces target_url. We will continue to accept target_url to support legacy uses, but we recommend replacing target_url with log_url. Setting log_url will automatically set target_url to the same value. Default: ""
**Note:** This parameter requires you to use the application/vnd.github.ant-man-preview+json custom media type.

state: ReposCreateDeploymentStatusRequestState

The state of the status. Can be one of error, failure, inactive, in_progress, queued pending, or success. **Note:** To use the inactive state, you must provide the application/vnd.github.ant-man-preview+json custom media type. To use the in_progress and queued states, you must provide the application/vnd.github.flash-preview+json custom media type. When you set a transient deployment to inactive, the deployment will be shown as destroyed in GitHub.

target_url: String

The target URL to associate with this status. This URL should contain output to keep the user updated while the task is running or serve as historical information for what happened in the deployment. **Note:** It’s recommended to use the log_url parameter, which replaces target_url.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

The name of the generated JSON Schema. Read more

Generates a JSON Schema for this type. Read more

Whether JSON Schemas generated for this type should be re-used where possible using the $ref keyword. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.