
com.pulumi.azurenative.importexport.outputs.GetJobResult 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.importexport.outputs;
import com.pulumi.azurenative.importexport.outputs.IdentityDetailsResponse;
import com.pulumi.azurenative.importexport.outputs.JobDetailsResponse;
import com.pulumi.azurenative.importexport.outputs.SystemDataResponse;
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 GetJobResult {
/**
* @return Specifies the resource identifier of the job.
*
*/
private String id;
/**
* @return Specifies the job identity details
*
*/
private @Nullable IdentityDetailsResponse identity;
/**
* @return Specifies the Azure location where the job is created.
*
*/
private @Nullable String location;
/**
* @return Specifies the name of the job.
*
*/
private String name;
/**
* @return Specifies the job properties
*
*/
private JobDetailsResponse properties;
/**
* @return SystemData of ImportExport Jobs.
*
*/
private SystemDataResponse systemData;
/**
* @return Specifies the tags that are assigned to the job.
*
*/
private @Nullable Object tags;
/**
* @return Specifies the type of the job resource.
*
*/
private String type;
private GetJobResult() {}
/**
* @return Specifies the resource identifier of the job.
*
*/
public String id() {
return this.id;
}
/**
* @return Specifies the job identity details
*
*/
public Optional identity() {
return Optional.ofNullable(this.identity);
}
/**
* @return Specifies the Azure location where the job is created.
*
*/
public Optional location() {
return Optional.ofNullable(this.location);
}
/**
* @return Specifies the name of the job.
*
*/
public String name() {
return this.name;
}
/**
* @return Specifies the job properties
*
*/
public JobDetailsResponse properties() {
return this.properties;
}
/**
* @return SystemData of ImportExport Jobs.
*
*/
public SystemDataResponse systemData() {
return this.systemData;
}
/**
* @return Specifies the tags that are assigned to the job.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy