1. Packages
  2. Packages
  3. Avi Provider
  4. API Docs
  5. Sspinstance
Viewing docs for avi 32.1.1
published on Tuesday, May 19, 2026 by vmware
Viewing docs for avi 32.1.1
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.
    AviClientCert string
    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.
    ClientCert 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.
    ConfigpbAttributes List<SspinstanceConfigpbAttribute>
    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.
    IngressCert 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<SspinstanceResource>
    Resources associated with the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    SspinstanceId string
    TenantRef 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.
    AviClientCert string
    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.
    ClientCert 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.
    ConfigpbAttributes []SspinstanceConfigpbAttributeArgs
    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.
    IngressCert 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 []SspinstanceResourceArgs
    Resources associated with the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    SspinstanceId string
    TenantRef 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_cert string
    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.
    aviClientCert String
    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.
    clientCert 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.
    configpbAttributes List<SspinstanceConfigpbAttribute>
    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.
    ingressCert 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<SspinstanceResource>
    Resources associated with the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    sspinstanceId String
    tenantRef 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.
    aviClientCert string
    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.
    clientCert 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.
    configpbAttributes SspinstanceConfigpbAttribute[]
    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.
    ingressCert 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 SspinstanceResource[]
    Resources associated with the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    sspinstanceId string
    tenantRef 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_cert str
    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[SspinstanceConfigpbAttributeArgs]
    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[SspinstanceResourceArgs]
    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.
    aviClientCert String
    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.
    clientCert 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.
    configpbAttributes 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.
    ingressCert 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.
    sspinstanceId String
    tenantRef 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) -> Sspinstance
    func 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.
    The following state arguments are supported:
    AviClientCert string
    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.
    ClientCert 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.
    ConfigpbAttributes List<SspinstanceConfigpbAttribute>
    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.
    IngressCert 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<SspinstanceResource>
    Resources associated with the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    SspinstanceId 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.
    TenantRef 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.
    AviClientCert string
    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.
    ClientCert 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.
    ConfigpbAttributes []SspinstanceConfigpbAttributeArgs
    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.
    IngressCert 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 []SspinstanceResourceArgs
    Resources associated with the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    SspinstanceId 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.
    TenantRef 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_cert string
    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.
    aviClientCert String
    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.
    clientCert 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.
    configpbAttributes List<SspinstanceConfigpbAttribute>
    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.
    ingressCert 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<SspinstanceResource>
    Resources associated with the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    sspinstanceId 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.
    tenantRef 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.
    aviClientCert string
    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.
    clientCert 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.
    configpbAttributes SspinstanceConfigpbAttribute[]
    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.
    ingressCert 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 SspinstanceResource[]
    Resources associated with the ssp feature instance. Field introduced in 32.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    sspinstanceId 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.
    tenantRef 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_cert str
    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[SspinstanceConfigpbAttributeArgs]
    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[SspinstanceResourceArgs]
    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.
    aviClientCert String
    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.
    clientCert 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.
    configpbAttributes 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.
    ingressCert 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.
    sspinstanceId 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.
    tenantRef 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

    CreatedBy string
    Version string
    CreatedBy string
    Version string
    created_by string
    version string
    createdBy String
    version String
    createdBy string
    version string
    createdBy String
    version String

    SspinstanceResource, SspinstanceResourceArgs

    Package Details

    Repository
    avi vmware/terraform-provider-avi
    License
    Notes
    This Pulumi package is based on the avi Terraform Provider.
    Viewing docs for avi 32.1.1
    published on Tuesday, May 19, 2026 by vmware

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial