
com.pulumi.azurenative.hybriddata.outputs.GetJobDefinitionResult Maven / Gradle / Ivy
// *** 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.hybriddata.outputs;
import com.pulumi.azurenative.hybriddata.outputs.CustomerSecretResponse;
import com.pulumi.azurenative.hybriddata.outputs.ScheduleResponse;
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 GetJobDefinitionResult {
/**
* @return List of customer secrets containing a key identifier and key value. The key identifier is a way for the specific data source to understand the key. Value contains customer secret encrypted by the encryptionKeys.
*
*/
private @Nullable List customerSecrets;
/**
* @return A generic json used differently by each data service type.
*
*/
private @Nullable Object dataServiceInput;
/**
* @return Data Sink Id associated to the job definition.
*
*/
private String dataSinkId;
/**
* @return Data Source Id associated to the job definition.
*
*/
private String dataSourceId;
/**
* @return Id of the object.
*
*/
private String id;
/**
* @return Last modified time of the job definition.
*
*/
private @Nullable String lastModifiedTime;
/**
* @return Name of the object.
*
*/
private String name;
/**
* @return This is the preferred geo location for the job to run.
*
*/
private @Nullable String runLocation;
/**
* @return Schedule for running the job definition
*
*/
private @Nullable List schedules;
/**
* @return State of the job definition.
*
*/
private String state;
/**
* @return Type of the object.
*
*/
private String type;
/**
* @return Enum to detect if user confirmation is required. If not passed will default to NotRequired.
*
*/
private @Nullable String userConfirmation;
private GetJobDefinitionResult() {}
/**
* @return List of customer secrets containing a key identifier and key value. The key identifier is a way for the specific data source to understand the key. Value contains customer secret encrypted by the encryptionKeys.
*
*/
public List customerSecrets() {
return this.customerSecrets == null ? List.of() : this.customerSecrets;
}
/**
* @return A generic json used differently by each data service type.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy