
com.pulumi.azurenative.datafactory.outputs.SSISPackageLocationResponse 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.azurenative.datafactory.outputs.AzureKeyVaultSecretReferenceResponse;
import com.pulumi.azurenative.datafactory.outputs.SSISAccessCredentialResponse;
import com.pulumi.azurenative.datafactory.outputs.SSISChildPackageResponse;
import com.pulumi.azurenative.datafactory.outputs.SecureStringResponse;
import com.pulumi.core.Either;
import com.pulumi.core.annotations.CustomType;
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 SSISPackageLocationResponse {
/**
* @return The package access credential.
*
*/
private @Nullable SSISAccessCredentialResponse accessCredential;
/**
* @return The embedded child package list.
*
*/
private @Nullable List childPackages;
/**
* @return The configuration file access credential.
*
*/
private @Nullable SSISAccessCredentialResponse configurationAccessCredential;
/**
* @return The configuration file of the package execution. Type: string (or Expression with resultType string).
*
*/
private @Nullable Object configurationPath;
/**
* @return The embedded package content. Type: string (or Expression with resultType string).
*
*/
private @Nullable Object packageContent;
/**
* @return The embedded package last modified date.
*
*/
private @Nullable String packageLastModifiedDate;
/**
* @return The package name.
*
*/
private @Nullable String packageName;
/**
* @return Password of the package.
*
*/
private @Nullable Either packagePassword;
/**
* @return The SSIS package path. Type: string (or Expression with resultType string).
*
*/
private @Nullable Object packagePath;
/**
* @return The type of SSIS package location.
*
*/
private @Nullable String type;
private SSISPackageLocationResponse() {}
/**
* @return The package access credential.
*
*/
public Optional accessCredential() {
return Optional.ofNullable(this.accessCredential);
}
/**
* @return The embedded child package list.
*
*/
public List childPackages() {
return this.childPackages == null ? List.of() : this.childPackages;
}
/**
* @return The configuration file access credential.
*
*/
public Optional configurationAccessCredential() {
return Optional.ofNullable(this.configurationAccessCredential);
}
/**
* @return The configuration file of the package execution. Type: string (or Expression with resultType string).
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy