
com.pulumi.azurenative.appplatform.outputs.JobResourcePropertiesResponse 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.appplatform.outputs;
import com.pulumi.azurenative.appplatform.outputs.BuildResultUserSourceInfoResponse;
import com.pulumi.azurenative.appplatform.outputs.CustomContainerUserSourceInfoResponse;
import com.pulumi.azurenative.appplatform.outputs.JarUploadedUserSourceInfoResponse;
import com.pulumi.azurenative.appplatform.outputs.JobExecutionTemplateResponse;
import com.pulumi.azurenative.appplatform.outputs.ManagedComponentReferenceResponse;
import com.pulumi.azurenative.appplatform.outputs.ManualJobTriggerConfigResponse;
import com.pulumi.azurenative.appplatform.outputs.NetCoreZipUploadedUserSourceInfoResponse;
import com.pulumi.azurenative.appplatform.outputs.SourceUploadedUserSourceInfoResponse;
import com.pulumi.azurenative.appplatform.outputs.UploadedUserSourceInfoResponse;
import com.pulumi.azurenative.appplatform.outputs.WarUploadedUserSourceInfoResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class JobResourcePropertiesResponse {
/**
* @return Referenced managed components collection
*
*/
private @Nullable List managedComponentReferences;
/**
* @return Provisioning state of the Job
*
*/
private String provisioningState;
/**
* @return Uploaded source information of the Job.
*
*/
private @Nullable Object source;
/**
* @return The template which is applied for all executions of the Job.
*
*/
private @Nullable JobExecutionTemplateResponse template;
/**
* @return The Job trigger related configuration.
*
*/
private @Nullable ManualJobTriggerConfigResponse triggerConfig;
private JobResourcePropertiesResponse() {}
/**
* @return Referenced managed components collection
*
*/
public List managedComponentReferences() {
return this.managedComponentReferences == null ? List.of() : this.managedComponentReferences;
}
/**
* @return Provisioning state of the Job
*
*/
public String provisioningState() {
return this.provisioningState;
}
/**
* @return Uploaded source information of the Job.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy