published on Tuesday, May 19, 2026 by vmware
published on Tuesday, May 19, 2026 by vmware
<!–
Copyright 2021 VMware, Inc.
SPDX-License-Identifier: Mozilla Public License 2.0
–>
layout: “avi”
page_title: “Avi: avi.Sspinstance” sidebar_current: “docs-avi-resource-sspinstance” description: |- Creates and manages Avi SspInstance.
avi.Sspinstance
The SspInstance resource allows the creation and management of Avi SspInstance
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as avi from "@pulumi/avi";
const foo = new avi.Sspinstance("foo", {
name: "terraform-example-foo",
tenantRef: "/api/tenant/?name=admin",
});
import pulumi
import pulumi_avi as avi
foo = avi.Sspinstance("foo",
name="terraform-example-foo",
tenant_ref="/api/tenant/?name=admin")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/avi/v32/avi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := avi.NewSspinstance(ctx, "foo", &avi.SspinstanceArgs{
Name: pulumi.String("terraform-example-foo"),
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.Sspinstance("foo", new()
{
Name = "terraform-example-foo",
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.Sspinstance;
import com.pulumi.avi.SspinstanceArgs;
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 Sspinstance("foo", SspinstanceArgs.builder()
.name("terraform-example-foo")
.tenantRef("/api/tenant/?name=admin")
.build());
}
}
resources:
foo:
type: avi:Sspinstance
properties:
name: terraform-example-foo
tenantRef: /api/tenant/?name=admin
Example coming soon!
Create Sspinstance Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Sspinstance(name: string, args: SspinstanceArgs, opts?: CustomResourceOptions);@overload
def Sspinstance(resource_name: str,
args: SspinstanceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Sspinstance(resource_name: str,
opts: Optional[ResourceOptions] = None,
feature: Optional[str] = None,
status: Optional[str] = None,
hostname: Optional[str] = None,
ingress_cert: Optional[str] = None,
description: Optional[str] = None,
configpb_attributes: Optional[Sequence[SspinstanceConfigpbAttributeArgs]] = None,
avi_client_cert: Optional[str] = None,
name: Optional[str] = None,
resources: Optional[Sequence[SspinstanceResourceArgs]] = None,
sspinstance_id: Optional[str] = None,
client_cert: Optional[str] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None)func NewSspinstance(ctx *Context, name string, args SspinstanceArgs, opts ...ResourceOption) (*Sspinstance, error)public Sspinstance(string name, SspinstanceArgs args, CustomResourceOptions? opts = null)
public Sspinstance(String name, SspinstanceArgs args)
public Sspinstance(String name, SspinstanceArgs args, CustomResourceOptions options)
type: avi:Sspinstance
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "avi_sspinstance" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args SspinstanceArgs
- 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 SspinstanceArgs
- 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 SspinstanceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SspinstanceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SspinstanceArgs
- 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 sspinstanceResource = new Avi.Sspinstance("sspinstanceResource", new()
{
Feature = "string",
Status = "string",
Hostname = "string",
IngressCert = "string",
Description = "string",
ConfigpbAttributes = new[]
{
new Avi.Inputs.SspinstanceConfigpbAttributeArgs
{
CreatedBy = "string",
Version = "string",
},
},
AviClientCert = "string",
Name = "string",
Resources = new[]
{
new Avi.Inputs.SspinstanceResourceArgs
{
AviClientCertRef = "string",
ClientCertAuthMappingProfileRef = "string",
ClientCertAuthProfileRef = "string",
ClientCertRef = "string",
},
},
SspinstanceId = "string",
ClientCert = "string",
TenantRef = "string",
Uuid = "string",
});
example, err := avi.NewSspinstance(ctx, "sspinstanceResource", &avi.SspinstanceArgs{
Feature: pulumi.String("string"),
Status: pulumi.String("string"),
Hostname: pulumi.String("string"),
IngressCert: pulumi.String("string"),
Description: pulumi.String("string"),
ConfigpbAttributes: avi.SspinstanceConfigpbAttributeArray{
&avi.SspinstanceConfigpbAttributeArgs{
CreatedBy: pulumi.String("string"),
Version: pulumi.String("string"),
},
},
AviClientCert: pulumi.String("string"),
Name: pulumi.String("string"),
Resources: avi.SspinstanceResourceArray{
&avi.SspinstanceResourceArgs{
AviClientCertRef: pulumi.String("string"),
ClientCertAuthMappingProfileRef: pulumi.String("string"),
ClientCertAuthProfileRef: pulumi.String("string"),
ClientCertRef: pulumi.String("string"),
},
},
SspinstanceId: pulumi.String("string"),
ClientCert: pulumi.String("string"),
TenantRef: pulumi.String("string"),
Uuid: pulumi.String("string"),
})
resource "avi_sspinstance" "sspinstanceResource" {
feature = "string"
status = "string"
hostname = "string"
ingress_cert = "string"
description = "string"
configpb_attributes {
created_by = "string"
version = "string"
}
avi_client_cert = "string"
name = "string"
resources {
avi_client_cert_ref = "string"
client_cert_auth_mapping_profile_ref = "string"
client_cert_auth_profile_ref = "string"
client_cert_ref = "string"
}
sspinstance_id = "string"
client_cert = "string"
tenant_ref = "string"
uuid = "string"
}
var sspinstanceResource = new Sspinstance("sspinstanceResource", SspinstanceArgs.builder()
.feature("string")
.status("string")
.hostname("string")
.ingressCert("string")
.description("string")
.configpbAttributes(SspinstanceConfigpbAttributeArgs.builder()
.createdBy("string")
.version("string")
.build())
.aviClientCert("string")
.name("string")
.resources(SspinstanceResourceArgs.builder()
.aviClientCertRef("string")
.clientCertAuthMappingProfileRef("string")
.clientCertAuthProfileRef("string")
.clientCertRef("string")
.build())
.sspinstanceId("string")
.clientCert("string")
.tenantRef("string")
.uuid("string")
.build());
sspinstance_resource = avi.Sspinstance("sspinstanceResource",
feature="string",
status="string",
hostname="string",
ingress_cert="string",
description="string",
configpb_attributes=[{
"created_by": "string",
"version": "string",
}],
avi_client_cert="string",
name="string",
resources=[{
"avi_client_cert_ref": "string",
"client_cert_auth_mapping_profile_ref": "string",
"client_cert_auth_profile_ref": "string",
"client_cert_ref": "string",
}],
sspinstance_id="string",
client_cert="string",
tenant_ref="string",
uuid="string")
const sspinstanceResource = new avi.Sspinstance("sspinstanceResource", {
feature: "string",
status: "string",
hostname: "string",
ingressCert: "string",
description: "string",
configpbAttributes: [{
createdBy: "string",
version: "string",
}],
aviClientCert: "string",
name: "string",
resources: [{
aviClientCertRef: "string",
clientCertAuthMappingProfileRef: "string",
clientCertAuthProfileRef: "string",
clientCertRef: "string",
}],
sspinstanceId: "string",
clientCert: "string",
tenantRef: "string",
uuid: "string",
});
type: avi:Sspinstance
properties:
aviClientCert: string
clientCert: string
configpbAttributes:
- createdBy: string
version: string
description: string
feature: string
hostname: string
ingressCert: string
name: string
resources:
- aviClientCertRef: string
clientCertAuthMappingProfileRef: string
clientCertAuthProfileRef: string
clientCertRef: string
sspinstanceId: string
status: string
tenantRef: string
uuid: string
Sspinstance 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 Sspinstance resource accepts the following input properties:
- Feature string
- Type of the ssp feature instance. Enum options - SSP_INTELLIGENT_ASSIST, SSP_CENTRAL_LICENSING_SERVICE. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- Hostname string
- Hostname of the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Status string
- Status of the ssp feature instance. Enum options - SSP_STATUS_IN_PROGRESS, SSP_STATUS_ACTIVE, SSP_STATUS_CERT_UPDATE_FAILED. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Avi
Client stringCert - Client certificate that avi uses to authenticate with the ssp instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Client
Cert string - Client certificate that the ssp instance uses to authenticate with avi. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Configpb
Attributes List<SspinstanceConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 32.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Description of the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Ingress
Cert string - Ingress (server) certificate chain that the ssp endpoint uses. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- Name of the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- Resources
List<Sspinstance
Resource> - Resources associated with the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Sspinstance
Id string - Tenant
Ref string - Tenant reference for the ssp object. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Uuid string
- Uuid for the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Feature string
- Type of the ssp feature instance. Enum options - SSP_INTELLIGENT_ASSIST, SSP_CENTRAL_LICENSING_SERVICE. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- Hostname string
- Hostname of the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Status string
- Status of the ssp feature instance. Enum options - SSP_STATUS_IN_PROGRESS, SSP_STATUS_ACTIVE, SSP_STATUS_CERT_UPDATE_FAILED. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Avi
Client stringCert - Client certificate that avi uses to authenticate with the ssp instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Client
Cert string - Client certificate that the ssp instance uses to authenticate with avi. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Configpb
Attributes []SspinstanceConfigpb Attribute Args - Protobuf versioning for config pbs. Field introduced in 32.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Description of the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Ingress
Cert string - Ingress (server) certificate chain that the ssp endpoint uses. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- Name of the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- Resources
[]Sspinstance
Resource Args - Resources associated with the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Sspinstance
Id string - Tenant
Ref string - Tenant reference for the ssp object. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Uuid string
- Uuid for the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- feature string
- Type of the ssp feature instance. Enum options - SSP_INTELLIGENT_ASSIST, SSP_CENTRAL_LICENSING_SERVICE. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- hostname string
- Hostname of the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- status string
- Status of the ssp feature instance. Enum options - SSP_STATUS_IN_PROGRESS, SSP_STATUS_ACTIVE, SSP_STATUS_CERT_UPDATE_FAILED. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- avi_
client_ stringcert - Client certificate that avi uses to authenticate with the ssp instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- client_
cert string - Client certificate that the ssp instance uses to authenticate with avi. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb_
attributes list(object) - Protobuf versioning for config pbs. Field introduced in 32.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description string
- Description of the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- ingress_
cert string - Ingress (server) certificate chain that the ssp endpoint uses. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name string
- Name of the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- resources list(object)
- Resources associated with the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- sspinstance_
id string - tenant_
ref string - Tenant reference for the ssp object. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid string
- Uuid for the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- feature String
- Type of the ssp feature instance. Enum options - SSP_INTELLIGENT_ASSIST, SSP_CENTRAL_LICENSING_SERVICE. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- hostname String
- Hostname of the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- status String
- Status of the ssp feature instance. Enum options - SSP_STATUS_IN_PROGRESS, SSP_STATUS_ACTIVE, SSP_STATUS_CERT_UPDATE_FAILED. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- avi
Client StringCert - Client certificate that avi uses to authenticate with the ssp instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- client
Cert String - Client certificate that the ssp instance uses to authenticate with avi. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb
Attributes List<SspinstanceConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 32.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Description of the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- ingress
Cert String - Ingress (server) certificate chain that the ssp endpoint uses. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- Name of the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- resources
List<Sspinstance
Resource> - Resources associated with the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- sspinstance
Id String - tenant
Ref String - Tenant reference for the ssp object. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid String
- Uuid for the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- feature string
- Type of the ssp feature instance. Enum options - SSP_INTELLIGENT_ASSIST, SSP_CENTRAL_LICENSING_SERVICE. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- hostname string
- Hostname of the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- status string
- Status of the ssp feature instance. Enum options - SSP_STATUS_IN_PROGRESS, SSP_STATUS_ACTIVE, SSP_STATUS_CERT_UPDATE_FAILED. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- avi
Client stringCert - Client certificate that avi uses to authenticate with the ssp instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- client
Cert string - Client certificate that the ssp instance uses to authenticate with avi. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb
Attributes SspinstanceConfigpb Attribute[] - Protobuf versioning for config pbs. Field introduced in 32.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description string
- Description of the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- ingress
Cert string - Ingress (server) certificate chain that the ssp endpoint uses. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name string
- Name of the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- resources
Sspinstance
Resource[] - Resources associated with the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- sspinstance
Id string - tenant
Ref string - Tenant reference for the ssp object. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid string
- Uuid for the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- feature str
- Type of the ssp feature instance. Enum options - SSP_INTELLIGENT_ASSIST, SSP_CENTRAL_LICENSING_SERVICE. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- hostname str
- Hostname of the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- status str
- Status of the ssp feature instance. Enum options - SSP_STATUS_IN_PROGRESS, SSP_STATUS_ACTIVE, SSP_STATUS_CERT_UPDATE_FAILED. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- avi_
client_ strcert - Client certificate that avi uses to authenticate with the ssp instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- client_
cert str - Client certificate that the ssp instance uses to authenticate with avi. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb_
attributes Sequence[SspinstanceConfigpb Attribute Args] - Protobuf versioning for config pbs. Field introduced in 32.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description str
- Description of the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- ingress_
cert str - Ingress (server) certificate chain that the ssp endpoint uses. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name str
- Name of the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- resources
Sequence[Sspinstance
Resource Args] - Resources associated with the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- sspinstance_
id str - tenant_
ref str - Tenant reference for the ssp object. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid str
- Uuid for the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- feature String
- Type of the ssp feature instance. Enum options - SSP_INTELLIGENT_ASSIST, SSP_CENTRAL_LICENSING_SERVICE. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- hostname String
- Hostname of the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- status String
- Status of the ssp feature instance. Enum options - SSP_STATUS_IN_PROGRESS, SSP_STATUS_ACTIVE, SSP_STATUS_CERT_UPDATE_FAILED. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- avi
Client StringCert - Client certificate that avi uses to authenticate with the ssp instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- client
Cert String - Client certificate that the ssp instance uses to authenticate with avi. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb
Attributes List<Property Map> - Protobuf versioning for config pbs. Field introduced in 32.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Description of the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- ingress
Cert String - Ingress (server) certificate chain that the ssp endpoint uses. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- Name of the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- resources List<Property Map>
- Resources associated with the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- sspinstance
Id String - tenant
Ref String - Tenant reference for the ssp object. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid String
- Uuid for the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
Outputs
All input properties are implicitly available as output properties. Additionally, the Sspinstance 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 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 Sspinstance Resource
Get an existing Sspinstance 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?: SspinstanceState, opts?: CustomResourceOptions): Sspinstance@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
avi_client_cert: Optional[str] = None,
client_cert: Optional[str] = None,
configpb_attributes: Optional[Sequence[SspinstanceConfigpbAttributeArgs]] = None,
description: Optional[str] = None,
feature: Optional[str] = None,
hostname: Optional[str] = None,
ingress_cert: Optional[str] = None,
name: Optional[str] = None,
resources: Optional[Sequence[SspinstanceResourceArgs]] = None,
sspinstance_id: Optional[str] = None,
status: Optional[str] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None) -> Sspinstancefunc GetSspinstance(ctx *Context, name string, id IDInput, state *SspinstanceState, opts ...ResourceOption) (*Sspinstance, error)public static Sspinstance Get(string name, Input<string> id, SspinstanceState? state, CustomResourceOptions? opts = null)public static Sspinstance get(String name, Output<String> id, SspinstanceState state, CustomResourceOptions options)resources: _: type: avi:Sspinstance get: id: ${id}import {
to = avi_sspinstance.example
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.
- Avi
Client stringCert - Client certificate that avi uses to authenticate with the ssp instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Client
Cert string - Client certificate that the ssp instance uses to authenticate with avi. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Configpb
Attributes List<SspinstanceConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 32.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Description of the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Feature string
- Type of the ssp feature instance. Enum options - SSP_INTELLIGENT_ASSIST, SSP_CENTRAL_LICENSING_SERVICE. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- Hostname string
- Hostname of the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Ingress
Cert string - Ingress (server) certificate chain that the ssp endpoint uses. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- Name of the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- Resources
List<Sspinstance
Resource> - Resources associated with the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Sspinstance
Id string - Status string
- Status of the ssp feature instance. Enum options - SSP_STATUS_IN_PROGRESS, SSP_STATUS_ACTIVE, SSP_STATUS_CERT_UPDATE_FAILED. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tenant
Ref string - Tenant reference for the ssp object. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Uuid string
- Uuid for the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Avi
Client stringCert - Client certificate that avi uses to authenticate with the ssp instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Client
Cert string - Client certificate that the ssp instance uses to authenticate with avi. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Configpb
Attributes []SspinstanceConfigpb Attribute Args - Protobuf versioning for config pbs. Field introduced in 32.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Description of the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Feature string
- Type of the ssp feature instance. Enum options - SSP_INTELLIGENT_ASSIST, SSP_CENTRAL_LICENSING_SERVICE. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- Hostname string
- Hostname of the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Ingress
Cert string - Ingress (server) certificate chain that the ssp endpoint uses. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- Name of the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- Resources
[]Sspinstance
Resource Args - Resources associated with the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Sspinstance
Id string - Status string
- Status of the ssp feature instance. Enum options - SSP_STATUS_IN_PROGRESS, SSP_STATUS_ACTIVE, SSP_STATUS_CERT_UPDATE_FAILED. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tenant
Ref string - Tenant reference for the ssp object. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Uuid string
- Uuid for the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- avi_
client_ stringcert - Client certificate that avi uses to authenticate with the ssp instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- client_
cert string - Client certificate that the ssp instance uses to authenticate with avi. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb_
attributes list(object) - Protobuf versioning for config pbs. Field introduced in 32.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description string
- Description of the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- feature string
- Type of the ssp feature instance. Enum options - SSP_INTELLIGENT_ASSIST, SSP_CENTRAL_LICENSING_SERVICE. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- hostname string
- Hostname of the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- ingress_
cert string - Ingress (server) certificate chain that the ssp endpoint uses. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name string
- Name of the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- resources list(object)
- Resources associated with the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- sspinstance_
id string - status string
- Status of the ssp feature instance. Enum options - SSP_STATUS_IN_PROGRESS, SSP_STATUS_ACTIVE, SSP_STATUS_CERT_UPDATE_FAILED. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant_
ref string - Tenant reference for the ssp object. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid string
- Uuid for the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- avi
Client StringCert - Client certificate that avi uses to authenticate with the ssp instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- client
Cert String - Client certificate that the ssp instance uses to authenticate with avi. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb
Attributes List<SspinstanceConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 32.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Description of the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- feature String
- Type of the ssp feature instance. Enum options - SSP_INTELLIGENT_ASSIST, SSP_CENTRAL_LICENSING_SERVICE. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- hostname String
- Hostname of the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- ingress
Cert String - Ingress (server) certificate chain that the ssp endpoint uses. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- Name of the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- resources
List<Sspinstance
Resource> - Resources associated with the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- sspinstance
Id String - status String
- Status of the ssp feature instance. Enum options - SSP_STATUS_IN_PROGRESS, SSP_STATUS_ACTIVE, SSP_STATUS_CERT_UPDATE_FAILED. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref String - Tenant reference for the ssp object. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid String
- Uuid for the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- avi
Client stringCert - Client certificate that avi uses to authenticate with the ssp instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- client
Cert string - Client certificate that the ssp instance uses to authenticate with avi. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb
Attributes SspinstanceConfigpb Attribute[] - Protobuf versioning for config pbs. Field introduced in 32.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description string
- Description of the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- feature string
- Type of the ssp feature instance. Enum options - SSP_INTELLIGENT_ASSIST, SSP_CENTRAL_LICENSING_SERVICE. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- hostname string
- Hostname of the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- ingress
Cert string - Ingress (server) certificate chain that the ssp endpoint uses. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name string
- Name of the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- resources
Sspinstance
Resource[] - Resources associated with the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- sspinstance
Id string - status string
- Status of the ssp feature instance. Enum options - SSP_STATUS_IN_PROGRESS, SSP_STATUS_ACTIVE, SSP_STATUS_CERT_UPDATE_FAILED. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref string - Tenant reference for the ssp object. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid string
- Uuid for the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- avi_
client_ strcert - Client certificate that avi uses to authenticate with the ssp instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- client_
cert str - Client certificate that the ssp instance uses to authenticate with avi. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb_
attributes Sequence[SspinstanceConfigpb Attribute Args] - Protobuf versioning for config pbs. Field introduced in 32.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description str
- Description of the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- feature str
- Type of the ssp feature instance. Enum options - SSP_INTELLIGENT_ASSIST, SSP_CENTRAL_LICENSING_SERVICE. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- hostname str
- Hostname of the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- ingress_
cert str - Ingress (server) certificate chain that the ssp endpoint uses. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name str
- Name of the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- resources
Sequence[Sspinstance
Resource Args] - Resources associated with the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- sspinstance_
id str - status str
- Status of the ssp feature instance. Enum options - SSP_STATUS_IN_PROGRESS, SSP_STATUS_ACTIVE, SSP_STATUS_CERT_UPDATE_FAILED. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant_
ref str - Tenant reference for the ssp object. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid str
- Uuid for the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- avi
Client StringCert - Client certificate that avi uses to authenticate with the ssp instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- client
Cert String - Client certificate that the ssp instance uses to authenticate with avi. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb
Attributes List<Property Map> - Protobuf versioning for config pbs. Field introduced in 32.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Description of the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- feature String
- Type of the ssp feature instance. Enum options - SSP_INTELLIGENT_ASSIST, SSP_CENTRAL_LICENSING_SERVICE. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- hostname String
- Hostname of the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- ingress
Cert String - Ingress (server) certificate chain that the ssp endpoint uses. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- Name of the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition. Changing this value forces the resource to be recreated.
- resources List<Property Map>
- Resources associated with the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- sspinstance
Id String - status String
- Status of the ssp feature instance. Enum options - SSP_STATUS_IN_PROGRESS, SSP_STATUS_ACTIVE, SSP_STATUS_CERT_UPDATE_FAILED. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref String - Tenant reference for the ssp object. It is a reference to an object of type tenant. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid String
- Uuid for the onboarded ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
Supporting Types
SspinstanceConfigpbAttribute, SspinstanceConfigpbAttributeArgs
- created_
by string - version string
- created_
by str - version str
SspinstanceResource, SspinstanceResourceArgs
- Avi
Client stringCert Ref - Client
Cert stringAuth Mapping Profile Ref - Client
Cert stringAuth Profile Ref - Client
Cert stringRef
- Avi
Client stringCert Ref - Client
Cert stringAuth Mapping Profile Ref - Client
Cert stringAuth Profile Ref - Client
Cert stringRef
- avi_
client_ stringcert_ ref - client_
cert_ stringauth_ mapping_ profile_ ref - client_
cert_ stringauth_ profile_ ref - client_
cert_ stringref
- avi
Client StringCert Ref - client
Cert StringAuth Mapping Profile Ref - client
Cert StringAuth Profile Ref - client
Cert StringRef
- avi
Client stringCert Ref - client
Cert stringAuth Mapping Profile Ref - client
Cert stringAuth Profile Ref - client
Cert stringRef
- avi
Client StringCert Ref - client
Cert StringAuth Mapping Profile Ref - client
Cert StringAuth Profile Ref - client
Cert StringRef
Package Details
- Repository
- avi vmware/terraform-provider-avi
- License
- Notes
- This Pulumi package is based on the
aviTerraform Provider.
published on Tuesday, May 19, 2026 by vmware