
com.pulumi.azurenative.containerregistry.outputs.GetTaskRunResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.containerregistry.outputs;
import com.pulumi.azurenative.containerregistry.outputs.DockerBuildRequestResponse;
import com.pulumi.azurenative.containerregistry.outputs.EncodedTaskRunRequestResponse;
import com.pulumi.azurenative.containerregistry.outputs.FileTaskRunRequestResponse;
import com.pulumi.azurenative.containerregistry.outputs.IdentityPropertiesResponse;
import com.pulumi.azurenative.containerregistry.outputs.RunResponse;
import com.pulumi.azurenative.containerregistry.outputs.SystemDataResponse;
import com.pulumi.azurenative.containerregistry.outputs.TaskRunRequestResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetTaskRunResult {
/**
* @return How the run should be forced to rerun even if the run request configuration has not changed
*
*/
private @Nullable String forceUpdateTag;
/**
* @return The resource ID.
*
*/
private String id;
/**
* @return Identity for the resource.
*
*/
private @Nullable IdentityPropertiesResponse identity;
/**
* @return The location of the resource
*
*/
private @Nullable String location;
/**
* @return The name of the resource.
*
*/
private String name;
/**
* @return The provisioning state of this task run
*
*/
private String provisioningState;
/**
* @return The request (parameters) for the run
*
*/
private @Nullable Object runRequest;
/**
* @return The result of this task run
*
*/
private RunResponse runResult;
/**
* @return Metadata pertaining to creation and last modification of the resource.
*
*/
private SystemDataResponse systemData;
/**
* @return The type of the resource.
*
*/
private String type;
private GetTaskRunResult() {}
/**
* @return How the run should be forced to rerun even if the run request configuration has not changed
*
*/
public Optional forceUpdateTag() {
return Optional.ofNullable(this.forceUpdateTag);
}
/**
* @return The resource ID.
*
*/
public String id() {
return this.id;
}
/**
* @return Identity for the resource.
*
*/
public Optional identity() {
return Optional.ofNullable(this.identity);
}
/**
* @return The location of the resource
*
*/
public Optional location() {
return Optional.ofNullable(this.location);
}
/**
* @return The name of the resource.
*
*/
public String name() {
return this.name;
}
/**
* @return The provisioning state of this task run
*
*/
public String provisioningState() {
return this.provisioningState;
}
/**
* @return The request (parameters) for the run
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy