avi.Certificatemanagementprofile
Explore with Pulumi AI
<!–
Copyright 2021 VMware, Inc.
SPDX-License-Identifier: Mozilla Public License 2.0
–>
layout: “avi”
page_title: “Avi: avi.Certificatemanagementprofile” sidebar_current: “docs-avi-resource-certificatemanagementprofile” description: |- Creates and manages Avi CertificateManagementProfile.
avi.Certificatemanagementprofile
The CertificateManagementProfile resource allows the creation and management of Avi CertificateManagementProfile
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as avi from "@pulumi/avi";
const foo = new avi.Certificatemanagementprofile("foo", {tenantRef: "/api/tenant/?name=admin"});
import pulumi
import pulumi_avi as avi
foo = avi.Certificatemanagementprofile("foo", tenant_ref="/api/tenant/?name=admin")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/avi/v31/avi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := avi.NewCertificatemanagementprofile(ctx, "foo", &avi.CertificatemanagementprofileArgs{
TenantRef: pulumi.String("/api/tenant/?name=admin"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Avi = Pulumi.Avi;
return await Deployment.RunAsync(() =>
{
var foo = new Avi.Certificatemanagementprofile("foo", new()
{
TenantRef = "/api/tenant/?name=admin",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.avi.Certificatemanagementprofile;
import com.pulumi.avi.CertificatemanagementprofileArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var foo = new Certificatemanagementprofile("foo", CertificatemanagementprofileArgs.builder()
.tenantRef("/api/tenant/?name=admin")
.build());
}
}
resources:
foo:
type: avi:Certificatemanagementprofile
properties:
tenantRef: /api/tenant/?name=admin
Create Certificatemanagementprofile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Certificatemanagementprofile(name: string, args: CertificatemanagementprofileArgs, opts?: CustomResourceOptions);
@overload
def Certificatemanagementprofile(resource_name: str,
args: CertificatemanagementprofileArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Certificatemanagementprofile(resource_name: str,
opts: Optional[ResourceOptions] = None,
run_script_ref: Optional[str] = None,
certificatemanagementprofile_id: Optional[str] = None,
configpb_attributes: Optional[Sequence[CertificatemanagementprofileConfigpbAttributeArgs]] = None,
markers: Optional[Sequence[CertificatemanagementprofileMarkerArgs]] = None,
name: Optional[str] = None,
script_params: Optional[Sequence[CertificatemanagementprofileScriptParamArgs]] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None)
func NewCertificatemanagementprofile(ctx *Context, name string, args CertificatemanagementprofileArgs, opts ...ResourceOption) (*Certificatemanagementprofile, error)
public Certificatemanagementprofile(string name, CertificatemanagementprofileArgs args, CustomResourceOptions? opts = null)
public Certificatemanagementprofile(String name, CertificatemanagementprofileArgs args)
public Certificatemanagementprofile(String name, CertificatemanagementprofileArgs args, CustomResourceOptions options)
type: avi:Certificatemanagementprofile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args CertificatemanagementprofileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args CertificatemanagementprofileArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args CertificatemanagementprofileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CertificatemanagementprofileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CertificatemanagementprofileArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var certificatemanagementprofileResource = new Avi.Certificatemanagementprofile("certificatemanagementprofileResource", new()
{
RunScriptRef = "string",
CertificatemanagementprofileId = "string",
ConfigpbAttributes = new[]
{
new Avi.Inputs.CertificatemanagementprofileConfigpbAttributeArgs
{
Version = "string",
},
},
Markers = new[]
{
new Avi.Inputs.CertificatemanagementprofileMarkerArgs
{
Key = "string",
Values = new[]
{
"string",
},
},
},
Name = "string",
ScriptParams = new[]
{
new Avi.Inputs.CertificatemanagementprofileScriptParamArgs
{
Name = "string",
IsDynamic = "string",
IsSensitive = "string",
Value = "string",
},
},
TenantRef = "string",
Uuid = "string",
});
example, err := avi.NewCertificatemanagementprofile(ctx, "certificatemanagementprofileResource", &avi.CertificatemanagementprofileArgs{
RunScriptRef: pulumi.String("string"),
CertificatemanagementprofileId: pulumi.String("string"),
ConfigpbAttributes: avi.CertificatemanagementprofileConfigpbAttributeArray{
&avi.CertificatemanagementprofileConfigpbAttributeArgs{
Version: pulumi.String("string"),
},
},
Markers: avi.CertificatemanagementprofileMarkerArray{
&avi.CertificatemanagementprofileMarkerArgs{
Key: pulumi.String("string"),
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Name: pulumi.String("string"),
ScriptParams: avi.CertificatemanagementprofileScriptParamArray{
&avi.CertificatemanagementprofileScriptParamArgs{
Name: pulumi.String("string"),
IsDynamic: pulumi.String("string"),
IsSensitive: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
TenantRef: pulumi.String("string"),
Uuid: pulumi.String("string"),
})
var certificatemanagementprofileResource = new Certificatemanagementprofile("certificatemanagementprofileResource", CertificatemanagementprofileArgs.builder()
.runScriptRef("string")
.certificatemanagementprofileId("string")
.configpbAttributes(CertificatemanagementprofileConfigpbAttributeArgs.builder()
.version("string")
.build())
.markers(CertificatemanagementprofileMarkerArgs.builder()
.key("string")
.values("string")
.build())
.name("string")
.scriptParams(CertificatemanagementprofileScriptParamArgs.builder()
.name("string")
.isDynamic("string")
.isSensitive("string")
.value("string")
.build())
.tenantRef("string")
.uuid("string")
.build());
certificatemanagementprofile_resource = avi.Certificatemanagementprofile("certificatemanagementprofileResource",
run_script_ref="string",
certificatemanagementprofile_id="string",
configpb_attributes=[{
"version": "string",
}],
markers=[{
"key": "string",
"values": ["string"],
}],
name="string",
script_params=[{
"name": "string",
"is_dynamic": "string",
"is_sensitive": "string",
"value": "string",
}],
tenant_ref="string",
uuid="string")
const certificatemanagementprofileResource = new avi.Certificatemanagementprofile("certificatemanagementprofileResource", {
runScriptRef: "string",
certificatemanagementprofileId: "string",
configpbAttributes: [{
version: "string",
}],
markers: [{
key: "string",
values: ["string"],
}],
name: "string",
scriptParams: [{
name: "string",
isDynamic: "string",
isSensitive: "string",
value: "string",
}],
tenantRef: "string",
uuid: "string",
});
type: avi:Certificatemanagementprofile
properties:
certificatemanagementprofileId: string
configpbAttributes:
- version: string
markers:
- key: string
values:
- string
name: string
runScriptRef: string
scriptParams:
- isDynamic: string
isSensitive: string
name: string
value: string
tenantRef: string
uuid: string
Certificatemanagementprofile Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Certificatemanagementprofile resource accepts the following input properties:
- Run
Script stringRef - Alert script config object for certificate management profile. It is a reference to an object of type alertscriptconfig. Field introduced in 20.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Certificatemanagementprofile
Id string - Configpb
Attributes List<CertificatemanagementprofileConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Markers
List<Certificatemanagementprofile
Marker> - List of labels to be used for granular rbac. Field introduced in 20.1.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Script
Params List<CertificatemanagementprofileScript Param> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Run
Script stringRef - Alert script config object for certificate management profile. It is a reference to an object of type alertscriptconfig. Field introduced in 20.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Certificatemanagementprofile
Id string - Configpb
Attributes []CertificatemanagementprofileConfigpb Attribute Args - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Markers
[]Certificatemanagementprofile
Marker Args - List of labels to be used for granular rbac. Field introduced in 20.1.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Script
Params []CertificatemanagementprofileScript Param Args - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- run
Script StringRef - Alert script config object for certificate management profile. It is a reference to an object of type alertscriptconfig. Field introduced in 20.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- certificatemanagementprofile
Id String - configpb
Attributes List<CertificatemanagementprofileConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
List<Certificatemanagementprofile
Marker> - List of labels to be used for granular rbac. Field introduced in 20.1.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- script
Params List<CertificatemanagementprofileScript Param> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- run
Script stringRef - Alert script config object for certificate management profile. It is a reference to an object of type alertscriptconfig. Field introduced in 20.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- certificatemanagementprofile
Id string - configpb
Attributes CertificatemanagementprofileConfigpb Attribute[] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
Certificatemanagementprofile
Marker[] - List of labels to be used for granular rbac. Field introduced in 20.1.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name string
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- script
Params CertificatemanagementprofileScript Param[] - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- run_
script_ strref - Alert script config object for certificate management profile. It is a reference to an object of type alertscriptconfig. Field introduced in 20.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- certificatemanagementprofile_
id str - configpb_
attributes Sequence[CertificatemanagementprofileConfigpb Attribute Args] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
Sequence[Certificatemanagementprofile
Marker Args] - List of labels to be used for granular rbac. Field introduced in 20.1.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name str
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- script_
params Sequence[CertificatemanagementprofileScript Param Args] - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant_
ref str - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- run
Script StringRef - Alert script config object for certificate management profile. It is a reference to an object of type alertscriptconfig. Field introduced in 20.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- certificatemanagementprofile
Id String - configpb
Attributes List<Property Map> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers List<Property Map>
- List of labels to be used for granular rbac. Field introduced in 20.1.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- script
Params List<Property Map> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
Outputs
All input properties are implicitly available as output properties. Additionally, the Certificatemanagementprofile resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Certificatemanagementprofile Resource
Get an existing Certificatemanagementprofile resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: CertificatemanagementprofileState, opts?: CustomResourceOptions): Certificatemanagementprofile
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
certificatemanagementprofile_id: Optional[str] = None,
configpb_attributes: Optional[Sequence[CertificatemanagementprofileConfigpbAttributeArgs]] = None,
markers: Optional[Sequence[CertificatemanagementprofileMarkerArgs]] = None,
name: Optional[str] = None,
run_script_ref: Optional[str] = None,
script_params: Optional[Sequence[CertificatemanagementprofileScriptParamArgs]] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None) -> Certificatemanagementprofile
func GetCertificatemanagementprofile(ctx *Context, name string, id IDInput, state *CertificatemanagementprofileState, opts ...ResourceOption) (*Certificatemanagementprofile, error)
public static Certificatemanagementprofile Get(string name, Input<string> id, CertificatemanagementprofileState? state, CustomResourceOptions? opts = null)
public static Certificatemanagementprofile get(String name, Output<String> id, CertificatemanagementprofileState state, CustomResourceOptions options)
resources: _: type: avi:Certificatemanagementprofile get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Certificatemanagementprofile
Id string - Configpb
Attributes List<CertificatemanagementprofileConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Markers
List<Certificatemanagementprofile
Marker> - List of labels to be used for granular rbac. Field introduced in 20.1.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Run
Script stringRef - Alert script config object for certificate management profile. It is a reference to an object of type alertscriptconfig. Field introduced in 20.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Script
Params List<CertificatemanagementprofileScript Param> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Certificatemanagementprofile
Id string - Configpb
Attributes []CertificatemanagementprofileConfigpb Attribute Args - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Markers
[]Certificatemanagementprofile
Marker Args - List of labels to be used for granular rbac. Field introduced in 20.1.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Run
Script stringRef - Alert script config object for certificate management profile. It is a reference to an object of type alertscriptconfig. Field introduced in 20.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Script
Params []CertificatemanagementprofileScript Param Args - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- certificatemanagementprofile
Id String - configpb
Attributes List<CertificatemanagementprofileConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
List<Certificatemanagementprofile
Marker> - List of labels to be used for granular rbac. Field introduced in 20.1.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- run
Script StringRef - Alert script config object for certificate management profile. It is a reference to an object of type alertscriptconfig. Field introduced in 20.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- script
Params List<CertificatemanagementprofileScript Param> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- certificatemanagementprofile
Id string - configpb
Attributes CertificatemanagementprofileConfigpb Attribute[] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
Certificatemanagementprofile
Marker[] - List of labels to be used for granular rbac. Field introduced in 20.1.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name string
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- run
Script stringRef - Alert script config object for certificate management profile. It is a reference to an object of type alertscriptconfig. Field introduced in 20.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- script
Params CertificatemanagementprofileScript Param[] - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- certificatemanagementprofile_
id str - configpb_
attributes Sequence[CertificatemanagementprofileConfigpb Attribute Args] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
Sequence[Certificatemanagementprofile
Marker Args] - List of labels to be used for granular rbac. Field introduced in 20.1.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name str
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- run_
script_ strref - Alert script config object for certificate management profile. It is a reference to an object of type alertscriptconfig. Field introduced in 20.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- script_
params Sequence[CertificatemanagementprofileScript Param Args] - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant_
ref str - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- certificatemanagementprofile
Id String - configpb
Attributes List<Property Map> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers List<Property Map>
- List of labels to be used for granular rbac. Field introduced in 20.1.6. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- run
Script StringRef - Alert script config object for certificate management profile. It is a reference to an object of type alertscriptconfig. Field introduced in 20.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- script
Params List<Property Map> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
Supporting Types
CertificatemanagementprofileConfigpbAttribute, CertificatemanagementprofileConfigpbAttributeArgs
- Version string
- Version string
- version String
- version string
- version str
- version String
CertificatemanagementprofileMarker, CertificatemanagementprofileMarkerArgs
CertificatemanagementprofileScriptParam, CertificatemanagementprofileScriptParamArgs
- Name string
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Is
Dynamic string - Is
Sensitive string - Value string
- Name string
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Is
Dynamic string - Is
Sensitive string - Value string
- name String
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- is
Dynamic String - is
Sensitive String - value String
- name string
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- is
Dynamic string - is
Sensitive string - value string
- name str
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- is_
dynamic str - is_
sensitive str - value str
- name String
- Name of the pki profile. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- is
Dynamic String - is
Sensitive String - value String
Package Details
- Repository
- avi vmware/terraform-provider-avi
- License
- Notes
- This Pulumi package is based on the
avi
Terraform Provider.