
com.pulumi.azurenative.storage.outputs.EncryptionIdentityResponse 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.storage.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class EncryptionIdentityResponse {
/**
* @return ClientId of the multi-tenant application to be used in conjunction with the user-assigned identity for cross-tenant customer-managed-keys server-side encryption on the storage account.
*
*/
private @Nullable String encryptionFederatedIdentityClientId;
/**
* @return Resource identifier of the UserAssigned identity to be associated with server-side encryption on the storage account.
*
*/
private @Nullable String encryptionUserAssignedIdentity;
private EncryptionIdentityResponse() {}
/**
* @return ClientId of the multi-tenant application to be used in conjunction with the user-assigned identity for cross-tenant customer-managed-keys server-side encryption on the storage account.
*
*/
public Optional encryptionFederatedIdentityClientId() {
return Optional.ofNullable(this.encryptionFederatedIdentityClientId);
}
/**
* @return Resource identifier of the UserAssigned identity to be associated with server-side encryption on the storage account.
*
*/
public Optional encryptionUserAssignedIdentity() {
return Optional.ofNullable(this.encryptionUserAssignedIdentity);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(EncryptionIdentityResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String encryptionFederatedIdentityClientId;
private @Nullable String encryptionUserAssignedIdentity;
public Builder() {}
public Builder(EncryptionIdentityResponse defaults) {
Objects.requireNonNull(defaults);
this.encryptionFederatedIdentityClientId = defaults.encryptionFederatedIdentityClientId;
this.encryptionUserAssignedIdentity = defaults.encryptionUserAssignedIdentity;
}
@CustomType.Setter
public Builder encryptionFederatedIdentityClientId(@Nullable String encryptionFederatedIdentityClientId) {
this.encryptionFederatedIdentityClientId = encryptionFederatedIdentityClientId;
return this;
}
@CustomType.Setter
public Builder encryptionUserAssignedIdentity(@Nullable String encryptionUserAssignedIdentity) {
this.encryptionUserAssignedIdentity = encryptionUserAssignedIdentity;
return this;
}
public EncryptionIdentityResponse build() {
final var _resultValue = new EncryptionIdentityResponse();
_resultValue.encryptionFederatedIdentityClientId = encryptionFederatedIdentityClientId;
_resultValue.encryptionUserAssignedIdentity = encryptionUserAssignedIdentity;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy