All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.logicapps.outputs.IntegrationAccountCertificateKeyVaultKey Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 6.15.0
Show newest version
// *** 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.logicapps.outputs;

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 IntegrationAccountCertificateKeyVaultKey {
    /**
     * @return The name of Key Vault Key.
     * 
     */
    private String keyName;
    /**
     * @return The ID of the Key Vault.
     * 
     */
    private String keyVaultId;
    /**
     * @return The version of Key Vault Key.
     * 
     */
    private @Nullable String keyVersion;

    private IntegrationAccountCertificateKeyVaultKey() {}
    /**
     * @return The name of Key Vault Key.
     * 
     */
    public String keyName() {
        return this.keyName;
    }
    /**
     * @return The ID of the Key Vault.
     * 
     */
    public String keyVaultId() {
        return this.keyVaultId;
    }
    /**
     * @return The version of Key Vault Key.
     * 
     */
    public Optional keyVersion() {
        return Optional.ofNullable(this.keyVersion);
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(IntegrationAccountCertificateKeyVaultKey defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String keyName;
        private String keyVaultId;
        private @Nullable String keyVersion;
        public Builder() {}
        public Builder(IntegrationAccountCertificateKeyVaultKey defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.keyName = defaults.keyName;
    	      this.keyVaultId = defaults.keyVaultId;
    	      this.keyVersion = defaults.keyVersion;
        }

        @CustomType.Setter
        public Builder keyName(String keyName) {
            if (keyName == null) {
              throw new MissingRequiredPropertyException("IntegrationAccountCertificateKeyVaultKey", "keyName");
            }
            this.keyName = keyName;
            return this;
        }
        @CustomType.Setter
        public Builder keyVaultId(String keyVaultId) {
            if (keyVaultId == null) {
              throw new MissingRequiredPropertyException("IntegrationAccountCertificateKeyVaultKey", "keyVaultId");
            }
            this.keyVaultId = keyVaultId;
            return this;
        }
        @CustomType.Setter
        public Builder keyVersion(@Nullable String keyVersion) {

            this.keyVersion = keyVersion;
            return this;
        }
        public IntegrationAccountCertificateKeyVaultKey build() {
            final var _resultValue = new IntegrationAccountCertificateKeyVaultKey();
            _resultValue.keyName = keyName;
            _resultValue.keyVaultId = keyVaultId;
            _resultValue.keyVersion = keyVersion;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy