![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.paloalto.LocalRulestackOutboundTrustCertificateAssociationArgs 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.paloalto;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class LocalRulestackOutboundTrustCertificateAssociationArgs extends com.pulumi.resources.ResourceArgs {
public static final LocalRulestackOutboundTrustCertificateAssociationArgs Empty = new LocalRulestackOutboundTrustCertificateAssociationArgs();
/**
* The ID of the Certificate to use as the Outbound Trust Certificate. Changing this forces a new Palo Alto Networks Rulestack Outbound Trust Certificate Association to be created.
*
*/
@Import(name="certificateId", required=true)
private Output certificateId;
/**
* @return The ID of the Certificate to use as the Outbound Trust Certificate. Changing this forces a new Palo Alto Networks Rulestack Outbound Trust Certificate Association to be created.
*
*/
public Output certificateId() {
return this.certificateId;
}
private LocalRulestackOutboundTrustCertificateAssociationArgs() {}
private LocalRulestackOutboundTrustCertificateAssociationArgs(LocalRulestackOutboundTrustCertificateAssociationArgs $) {
this.certificateId = $.certificateId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(LocalRulestackOutboundTrustCertificateAssociationArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private LocalRulestackOutboundTrustCertificateAssociationArgs $;
public Builder() {
$ = new LocalRulestackOutboundTrustCertificateAssociationArgs();
}
public Builder(LocalRulestackOutboundTrustCertificateAssociationArgs defaults) {
$ = new LocalRulestackOutboundTrustCertificateAssociationArgs(Objects.requireNonNull(defaults));
}
/**
* @param certificateId The ID of the Certificate to use as the Outbound Trust Certificate. Changing this forces a new Palo Alto Networks Rulestack Outbound Trust Certificate Association to be created.
*
* @return builder
*
*/
public Builder certificateId(Output certificateId) {
$.certificateId = certificateId;
return this;
}
/**
* @param certificateId The ID of the Certificate to use as the Outbound Trust Certificate. Changing this forces a new Palo Alto Networks Rulestack Outbound Trust Certificate Association to be created.
*
* @return builder
*
*/
public Builder certificateId(String certificateId) {
return certificateId(Output.of(certificateId));
}
public LocalRulestackOutboundTrustCertificateAssociationArgs build() {
if ($.certificateId == null) {
throw new MissingRequiredPropertyException("LocalRulestackOutboundTrustCertificateAssociationArgs", "certificateId");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy