com.pulumi.azure.datafactory.outputs.IntegrationRuntimeSsisExpressCustomSetupComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** 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.azure.datafactory.outputs;
import com.pulumi.azure.datafactory.outputs.IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicense;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class IntegrationRuntimeSsisExpressCustomSetupComponent {
/**
* @return A `key_vault_secret_reference` block as defined below.
*
*/
private @Nullable IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicense keyVaultLicense;
/**
* @return The license used for the Component.
*
*/
private @Nullable String license;
/**
* @return The Component Name installed for the Azure-SSIS Integration Runtime.
*
*/
private String name;
private IntegrationRuntimeSsisExpressCustomSetupComponent() {}
/**
* @return A `key_vault_secret_reference` block as defined below.
*
*/
public Optional keyVaultLicense() {
return Optional.ofNullable(this.keyVaultLicense);
}
/**
* @return The license used for the Component.
*
*/
public Optional license() {
return Optional.ofNullable(this.license);
}
/**
* @return The Component Name installed for the Azure-SSIS Integration Runtime.
*
*/
public String name() {
return this.name;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(IntegrationRuntimeSsisExpressCustomSetupComponent defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicense keyVaultLicense;
private @Nullable String license;
private String name;
public Builder() {}
public Builder(IntegrationRuntimeSsisExpressCustomSetupComponent defaults) {
Objects.requireNonNull(defaults);
this.keyVaultLicense = defaults.keyVaultLicense;
this.license = defaults.license;
this.name = defaults.name;
}
@CustomType.Setter
public Builder keyVaultLicense(@Nullable IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicense keyVaultLicense) {
this.keyVaultLicense = keyVaultLicense;
return this;
}
@CustomType.Setter
public Builder license(@Nullable String license) {
this.license = license;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("IntegrationRuntimeSsisExpressCustomSetupComponent", "name");
}
this.name = name;
return this;
}
public IntegrationRuntimeSsisExpressCustomSetupComponent build() {
final var _resultValue = new IntegrationRuntimeSsisExpressCustomSetupComponent();
_resultValue.keyVaultLicense = keyVaultLicense;
_resultValue.license = license;
_resultValue.name = name;
return _resultValue;
}
}
}