com.pulumi.azurenative.databox.outputs.UnencryptedCredentialsResponse 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.databox.outputs;
import com.pulumi.azurenative.databox.outputs.CustomerDiskJobSecretsResponse;
import com.pulumi.azurenative.databox.outputs.DataBoxDiskJobSecretsResponse;
import com.pulumi.azurenative.databox.outputs.DataBoxHeavyJobSecretsResponse;
import com.pulumi.azurenative.databox.outputs.DataboxJobSecretsResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class UnencryptedCredentialsResponse {
/**
* @return Name of the job.
*
*/
private String jobName;
/**
* @return Secrets related to this job.
*
*/
private Object jobSecrets;
private UnencryptedCredentialsResponse() {}
/**
* @return Name of the job.
*
*/
public String jobName() {
return this.jobName;
}
/**
* @return Secrets related to this job.
*
*/
public Object jobSecrets() {
return this.jobSecrets;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(UnencryptedCredentialsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String jobName;
private Object jobSecrets;
public Builder() {}
public Builder(UnencryptedCredentialsResponse defaults) {
Objects.requireNonNull(defaults);
this.jobName = defaults.jobName;
this.jobSecrets = defaults.jobSecrets;
}
@CustomType.Setter
public Builder jobName(String jobName) {
if (jobName == null) {
throw new MissingRequiredPropertyException("UnencryptedCredentialsResponse", "jobName");
}
this.jobName = jobName;
return this;
}
@CustomType.Setter
public Builder jobSecrets(Object jobSecrets) {
if (jobSecrets == null) {
throw new MissingRequiredPropertyException("UnencryptedCredentialsResponse", "jobSecrets");
}
this.jobSecrets = jobSecrets;
return this;
}
public UnencryptedCredentialsResponse build() {
final var _resultValue = new UnencryptedCredentialsResponse();
_resultValue.jobName = jobName;
_resultValue.jobSecrets = jobSecrets;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy