
com.pulumi.azurenative.containerregistry.outputs.ListTaskDetailsResult 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.AgentPropertiesResponse;
import com.pulumi.azurenative.containerregistry.outputs.CredentialsResponse;
import com.pulumi.azurenative.containerregistry.outputs.DockerBuildStepResponse;
import com.pulumi.azurenative.containerregistry.outputs.EncodedTaskStepResponse;
import com.pulumi.azurenative.containerregistry.outputs.FileTaskStepResponse;
import com.pulumi.azurenative.containerregistry.outputs.IdentityPropertiesResponse;
import com.pulumi.azurenative.containerregistry.outputs.PlatformPropertiesResponse;
import com.pulumi.azurenative.containerregistry.outputs.SystemDataResponse;
import com.pulumi.azurenative.containerregistry.outputs.TriggerPropertiesResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.Integer;
import java.lang.Object;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ListTaskDetailsResult {
/**
* @return The machine configuration of the run agent.
*
*/
private @Nullable AgentPropertiesResponse agentConfiguration;
/**
* @return The dedicated agent pool for the task.
*
*/
private @Nullable String agentPoolName;
/**
* @return The creation date of task.
*
*/
private String creationDate;
/**
* @return The properties that describes a set of credentials that will be used when this run is invoked.
*
*/
private @Nullable CredentialsResponse credentials;
/**
* @return The resource ID.
*
*/
private String id;
/**
* @return Identity for the resource.
*
*/
private @Nullable IdentityPropertiesResponse identity;
/**
* @return The value of this property indicates whether the task resource is system task or not.
*
*/
private @Nullable Boolean isSystemTask;
/**
* @return The location of the resource. This cannot be changed after the resource is created.
*
*/
private String location;
/**
* @return The template that describes the repository and tag information for run log artifact.
*
*/
private @Nullable String logTemplate;
/**
* @return The name of the resource.
*
*/
private String name;
/**
* @return The platform properties against which the run has to happen.
*
*/
private @Nullable PlatformPropertiesResponse platform;
/**
* @return The provisioning state of the task.
*
*/
private String provisioningState;
/**
* @return The current status of task.
*
*/
private @Nullable String status;
/**
* @return The properties of a task step.
*
*/
private @Nullable Object step;
/**
* @return Metadata pertaining to creation and last modification of the resource.
*
*/
private SystemDataResponse systemData;
/**
* @return The tags of the resource.
*
*/
private @Nullable Map tags;
/**
* @return Run timeout in seconds.
*
*/
private @Nullable Integer timeout;
/**
* @return The properties that describe all triggers for the task.
*
*/
private @Nullable TriggerPropertiesResponse trigger;
/**
* @return The type of the resource.
*
*/
private String type;
private ListTaskDetailsResult() {}
/**
* @return The machine configuration of the run agent.
*
*/
public Optional agentConfiguration() {
return Optional.ofNullable(this.agentConfiguration);
}
/**
* @return The dedicated agent pool for the task.
*
*/
public Optional agentPoolName() {
return Optional.ofNullable(this.agentPoolName);
}
/**
* @return The creation date of task.
*
*/
public String creationDate() {
return this.creationDate;
}
/**
* @return The properties that describes a set of credentials that will be used when this run is invoked.
*
*/
public Optional credentials() {
return Optional.ofNullable(this.credentials);
}
/**
* @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 value of this property indicates whether the task resource is system task or not.
*
*/
public Optional isSystemTask() {
return Optional.ofNullable(this.isSystemTask);
}
/**
* @return The location of the resource. This cannot be changed after the resource is created.
*
*/
public String location() {
return this.location;
}
/**
* @return The template that describes the repository and tag information for run log artifact.
*
*/
public Optional logTemplate() {
return Optional.ofNullable(this.logTemplate);
}
/**
* @return The name of the resource.
*
*/
public String name() {
return this.name;
}
/**
* @return The platform properties against which the run has to happen.
*
*/
public Optional platform() {
return Optional.ofNullable(this.platform);
}
/**
* @return The provisioning state of the task.
*
*/
public String provisioningState() {
return this.provisioningState;
}
/**
* @return The current status of task.
*
*/
public Optional status() {
return Optional.ofNullable(this.status);
}
/**
* @return The properties of a task step.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy