
com.pulumi.azurenative.datafactory.outputs.SSISLogLocationResponse 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.datafactory.outputs;
import com.pulumi.azurenative.datafactory.outputs.SSISAccessCredentialResponse;
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 SSISLogLocationResponse {
/**
* @return The package execution log access credential.
*
*/
private @Nullable SSISAccessCredentialResponse accessCredential;
/**
* @return The SSIS package execution log path. Type: string (or Expression with resultType string).
*
*/
private Object logPath;
/**
* @return Specifies the interval to refresh log. The default interval is 5 minutes. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
*
*/
private @Nullable Object logRefreshInterval;
/**
* @return The type of SSIS log location.
*
*/
private String type;
private SSISLogLocationResponse() {}
/**
* @return The package execution log access credential.
*
*/
public Optional accessCredential() {
return Optional.ofNullable(this.accessCredential);
}
/**
* @return The SSIS package execution log path. Type: string (or Expression with resultType string).
*
*/
public Object logPath() {
return this.logPath;
}
/**
* @return Specifies the interval to refresh log. The default interval is 5 minutes. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy