
com.pulumi.azurenative.migrate.outputs.KeyVaultSecretStorePropertiesResponse 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.migrate.outputs;
import com.pulumi.azurenative.migrate.outputs.ManagedIdentityPropertiesResponse;
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 KeyVaultSecretStorePropertiesResponse {
private String inputType;
private @Nullable String keyvaultName;
private @Nullable ManagedIdentityPropertiesResponse managedIdentityProperties;
private @Nullable String resourceGroup;
private @Nullable String secretStoreId;
private @Nullable String subscriptionId;
private @Nullable String tenantId;
private KeyVaultSecretStorePropertiesResponse() {}
public String inputType() {
return this.inputType;
}
public Optional keyvaultName() {
return Optional.ofNullable(this.keyvaultName);
}
public Optional managedIdentityProperties() {
return Optional.ofNullable(this.managedIdentityProperties);
}
public Optional resourceGroup() {
return Optional.ofNullable(this.resourceGroup);
}
public Optional secretStoreId() {
return Optional.ofNullable(this.secretStoreId);
}
public Optional subscriptionId() {
return Optional.ofNullable(this.subscriptionId);
}
public Optional tenantId() {
return Optional.ofNullable(this.tenantId);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(KeyVaultSecretStorePropertiesResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String inputType;
private @Nullable String keyvaultName;
private @Nullable ManagedIdentityPropertiesResponse managedIdentityProperties;
private @Nullable String resourceGroup;
private @Nullable String secretStoreId;
private @Nullable String subscriptionId;
private @Nullable String tenantId;
public Builder() {}
public Builder(KeyVaultSecretStorePropertiesResponse defaults) {
Objects.requireNonNull(defaults);
this.inputType = defaults.inputType;
this.keyvaultName = defaults.keyvaultName;
this.managedIdentityProperties = defaults.managedIdentityProperties;
this.resourceGroup = defaults.resourceGroup;
this.secretStoreId = defaults.secretStoreId;
this.subscriptionId = defaults.subscriptionId;
this.tenantId = defaults.tenantId;
}
@CustomType.Setter
public Builder inputType(String inputType) {
if (inputType == null) {
throw new MissingRequiredPropertyException("KeyVaultSecretStorePropertiesResponse", "inputType");
}
this.inputType = inputType;
return this;
}
@CustomType.Setter
public Builder keyvaultName(@Nullable String keyvaultName) {
this.keyvaultName = keyvaultName;
return this;
}
@CustomType.Setter
public Builder managedIdentityProperties(@Nullable ManagedIdentityPropertiesResponse managedIdentityProperties) {
this.managedIdentityProperties = managedIdentityProperties;
return this;
}
@CustomType.Setter
public Builder resourceGroup(@Nullable String resourceGroup) {
this.resourceGroup = resourceGroup;
return this;
}
@CustomType.Setter
public Builder secretStoreId(@Nullable String secretStoreId) {
this.secretStoreId = secretStoreId;
return this;
}
@CustomType.Setter
public Builder subscriptionId(@Nullable String subscriptionId) {
this.subscriptionId = subscriptionId;
return this;
}
@CustomType.Setter
public Builder tenantId(@Nullable String tenantId) {
this.tenantId = tenantId;
return this;
}
public KeyVaultSecretStorePropertiesResponse build() {
final var _resultValue = new KeyVaultSecretStorePropertiesResponse();
_resultValue.inputType = inputType;
_resultValue.keyvaultName = keyvaultName;
_resultValue.managedIdentityProperties = managedIdentityProperties;
_resultValue.resourceGroup = resourceGroup;
_resultValue.secretStoreId = secretStoreId;
_resultValue.subscriptionId = subscriptionId;
_resultValue.tenantId = tenantId;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy