
com.pulumi.azurenative.datafactory.outputs.SSISChildPackageResponse 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.datafactory.outputs;
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 SSISChildPackageResponse {
/**
* @return Content for embedded child package. Type: string (or Expression with resultType string).
*
*/
private Object packageContent;
/**
* @return Last modified date for embedded child package.
*
*/
private @Nullable String packageLastModifiedDate;
/**
* @return Name for embedded child package.
*
*/
private @Nullable String packageName;
/**
* @return Path for embedded child package. Type: string (or Expression with resultType string).
*
*/
private Object packagePath;
private SSISChildPackageResponse() {}
/**
* @return Content for embedded child package. Type: string (or Expression with resultType string).
*
*/
public Object packageContent() {
return this.packageContent;
}
/**
* @return Last modified date for embedded child package.
*
*/
public Optional packageLastModifiedDate() {
return Optional.ofNullable(this.packageLastModifiedDate);
}
/**
* @return Name for embedded child package.
*
*/
public Optional packageName() {
return Optional.ofNullable(this.packageName);
}
/**
* @return Path for embedded child package. Type: string (or Expression with resultType string).
*
*/
public Object packagePath() {
return this.packagePath;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SSISChildPackageResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private Object packageContent;
private @Nullable String packageLastModifiedDate;
private @Nullable String packageName;
private Object packagePath;
public Builder() {}
public Builder(SSISChildPackageResponse defaults) {
Objects.requireNonNull(defaults);
this.packageContent = defaults.packageContent;
this.packageLastModifiedDate = defaults.packageLastModifiedDate;
this.packageName = defaults.packageName;
this.packagePath = defaults.packagePath;
}
@CustomType.Setter
public Builder packageContent(Object packageContent) {
if (packageContent == null) {
throw new MissingRequiredPropertyException("SSISChildPackageResponse", "packageContent");
}
this.packageContent = packageContent;
return this;
}
@CustomType.Setter
public Builder packageLastModifiedDate(@Nullable String packageLastModifiedDate) {
this.packageLastModifiedDate = packageLastModifiedDate;
return this;
}
@CustomType.Setter
public Builder packageName(@Nullable String packageName) {
this.packageName = packageName;
return this;
}
@CustomType.Setter
public Builder packagePath(Object packagePath) {
if (packagePath == null) {
throw new MissingRequiredPropertyException("SSISChildPackageResponse", "packagePath");
}
this.packagePath = packagePath;
return this;
}
public SSISChildPackageResponse build() {
final var _resultValue = new SSISChildPackageResponse();
_resultValue.packageContent = packageContent;
_resultValue.packageLastModifiedDate = packageLastModifiedDate;
_resultValue.packageName = packageName;
_resultValue.packagePath = packagePath;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy