Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
* <!--End PulumiCodeChooser -->
*
* ## Import
*
* Logic App Integration Account Certificates can be imported using the `resource id`, e.g.
*
* ```sh
* $ pulumi import azure:logicapps/integrationAccountCertificate:IntegrationAccountCertificate example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Logic/integrationAccounts/account1/certificates/certificate1
* ```
*
*/
@ResourceType(type="azure:logicapps/integrationAccountCertificate:IntegrationAccountCertificate")
public class IntegrationAccountCertificate extends com.pulumi.resources.CustomResource {
/**
* The name of the Logic App Integration Account. Changing this forces a new Logic App Integration Account Certificate to be created.
*
*/
@Export(name="integrationAccountName", refs={String.class}, tree="[0]")
private Output integrationAccountName;
/**
* @return The name of the Logic App Integration Account. Changing this forces a new Logic App Integration Account Certificate to be created.
*
*/
public Output integrationAccountName() {
return this.integrationAccountName;
}
/**
* A `key_vault_key` block as documented below.
*
*/
@Export(name="keyVaultKey", refs={IntegrationAccountCertificateKeyVaultKey.class}, tree="[0]")
private Output* @Nullable */ IntegrationAccountCertificateKeyVaultKey> keyVaultKey;
/**
* @return A `key_vault_key` block as documented below.
*
*/
public Output> keyVaultKey() {
return Codegen.optional(this.keyVaultKey);
}
/**
* A JSON mapping of any Metadata for this Logic App Integration Account Certificate.
*
*/
@Export(name="metadata", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> metadata;
/**
* @return A JSON mapping of any Metadata for this Logic App Integration Account Certificate.
*
*/
public Output> metadata() {
return Codegen.optional(this.metadata);
}
/**
* The name which should be used for this Logic App Integration Account Certificate. Changing this forces a new Logic App Integration Account Certificate to be created.
*
*/
@Export(name="name", refs={String.class}, tree="[0]")
private Output name;
/**
* @return The name which should be used for this Logic App Integration Account Certificate. Changing this forces a new Logic App Integration Account Certificate to be created.
*
*/
public Output name() {
return this.name;
}
/**
* The public certificate for the Logic App Integration Account Certificate.
*
*/
@Export(name="publicCertificate", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> publicCertificate;
/**
* @return The public certificate for the Logic App Integration Account Certificate.
*
*/
public Output> publicCertificate() {
return Codegen.optional(this.publicCertificate);
}
/**
* The name of the Resource Group where the Logic App Integration Account Certificate should exist. Changing this forces a new Logic App Integration Account Certificate to be created.
*
*/
@Export(name="resourceGroupName", refs={String.class}, tree="[0]")
private Output resourceGroupName;
/**
* @return The name of the Resource Group where the Logic App Integration Account Certificate should exist. Changing this forces a new Logic App Integration Account Certificate to be created.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
/**
*
* @param name The _unique_ name of the resulting resource.
*/
public IntegrationAccountCertificate(java.lang.String name) {
this(name, IntegrationAccountCertificateArgs.Empty);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
*/
public IntegrationAccountCertificate(java.lang.String name, IntegrationAccountCertificateArgs args) {
this(name, args, null);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
* @param options A bag of options that control this resource's behavior.
*/
public IntegrationAccountCertificate(java.lang.String name, IntegrationAccountCertificateArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure:logicapps/integrationAccountCertificate:IntegrationAccountCertificate", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false);
}
private IntegrationAccountCertificate(java.lang.String name, Output id, @Nullable IntegrationAccountCertificateState state, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure:logicapps/integrationAccountCertificate:IntegrationAccountCertificate", name, state, makeResourceOptions(options, id), false);
}
private static IntegrationAccountCertificateArgs makeArgs(IntegrationAccountCertificateArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
if (options != null && options.getUrn().isPresent()) {
return null;
}
return args == null ? IntegrationAccountCertificateArgs.Empty : args;
}
private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@Nullable com.pulumi.resources.CustomResourceOptions options, @Nullable Output id) {
var defaultOptions = com.pulumi.resources.CustomResourceOptions.builder()
.version(Utilities.getVersion())
.build();
return com.pulumi.resources.CustomResourceOptions.merge(defaultOptions, options, id);
}
/**
* Get an existing Host resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param state
* @param options Optional settings to control the behavior of the CustomResource.
*/
public static IntegrationAccountCertificate get(java.lang.String name, Output id, @Nullable IntegrationAccountCertificateState state, @Nullable com.pulumi.resources.CustomResourceOptions options) {
return new IntegrationAccountCertificate(name, id, state, options);
}
}