1. Packages
  2. Intersight Provider
  3. API Docs
  4. IamCertificate
intersight 1.0.63 published on Wednesday, Apr 16, 2025 by ciscodevnet

intersight.IamCertificate

Explore with Pulumi AI

Holds a certificate, signed by a CAcert.

Usage Example

Resource Creation

import * as pulumi from "@pulumi/pulumi";
import * as intersight from "@pulumi/intersight";

const config = new pulumi.Config();
const pemcertificate1 = config.require("pemcertificate1");
const iamCertificate1 = new intersight.IamCertificate("iamCertificate1", {certificates: [{
    pemCertificate: pemcertificate1,
    objectType: "x509.Certificate",
}]});
Copy
import pulumi
import pulumi_intersight as intersight

config = pulumi.Config()
pemcertificate1 = config.require("pemcertificate1")
iam_certificate1 = intersight.IamCertificate("iamCertificate1", certificates=[{
    "pem_certificate": pemcertificate1,
    "object_type": "x509.Certificate",
}])
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/intersight/intersight"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		cfg := config.New(ctx, "")
		pemcertificate1 := cfg.Require("pemcertificate1")
		_, err := intersight.NewIamCertificate(ctx, "iamCertificate1", &intersight.IamCertificateArgs{
			Certificates: intersight.IamCertificateCertificateArray{
				&intersight.IamCertificateCertificateArgs{
					PemCertificate: pulumi.String(pemcertificate1),
					ObjectType:     pulumi.String("x509.Certificate"),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Intersight = Pulumi.Intersight;

return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var pemcertificate1 = config.Require("pemcertificate1");
    var iamCertificate1 = new Intersight.IamCertificate("iamCertificate1", new()
    {
        Certificates = new[]
        {
            new Intersight.Inputs.IamCertificateCertificateArgs
            {
                PemCertificate = pemcertificate1,
                ObjectType = "x509.Certificate",
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.intersight.IamCertificate;
import com.pulumi.intersight.IamCertificateArgs;
import com.pulumi.intersight.inputs.IamCertificateCertificateArgs;
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) {
        final var config = ctx.config();
        final var pemcertificate1 = config.get("pemcertificate1");
        var iamCertificate1 = new IamCertificate("iamCertificate1", IamCertificateArgs.builder()
            .certificates(IamCertificateCertificateArgs.builder()
                .pemCertificate(pemcertificate1)
                .objectType("x509.Certificate")
                .build())
            .build());

    }
}
Copy
configuration:
  pemcertificate1:
    type: string
resources:
  iamCertificate1:
    type: intersight:IamCertificate
    properties:
      certificates:
        - pemCertificate: ${pemcertificate1}
          objectType: x509.Certificate
Copy

Create IamCertificate Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new IamCertificate(name: string, args?: IamCertificateArgs, opts?: CustomResourceOptions);
@overload
def IamCertificate(resource_name: str,
                   args: Optional[IamCertificateArgs] = None,
                   opts: Optional[ResourceOptions] = None)

@overload
def IamCertificate(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   account_moid: Optional[str] = None,
                   additional_properties: Optional[str] = None,
                   ancestors: Optional[Sequence[IamCertificateAncestorArgs]] = None,
                   certificate_requests: Optional[Sequence[IamCertificateCertificateRequestArgs]] = None,
                   certificates: Optional[Sequence[IamCertificateCertificateArgs]] = None,
                   class_id: Optional[str] = None,
                   create_time: Optional[str] = None,
                   domain_group_moid: Optional[str] = None,
                   iam_certificate_id: Optional[str] = None,
                   mod_time: Optional[str] = None,
                   moid: Optional[str] = None,
                   object_type: Optional[str] = None,
                   owners: Optional[Sequence[str]] = None,
                   parents: Optional[Sequence[IamCertificateParentArgs]] = None,
                   permission_resources: Optional[Sequence[IamCertificatePermissionResourceArgs]] = None,
                   shared_scope: Optional[str] = None,
                   status: Optional[str] = None,
                   tags: Optional[Sequence[IamCertificateTagArgs]] = None,
                   version_contexts: Optional[Sequence[IamCertificateVersionContextArgs]] = None)
func NewIamCertificate(ctx *Context, name string, args *IamCertificateArgs, opts ...ResourceOption) (*IamCertificate, error)
public IamCertificate(string name, IamCertificateArgs? args = null, CustomResourceOptions? opts = null)
public IamCertificate(String name, IamCertificateArgs args)
public IamCertificate(String name, IamCertificateArgs args, CustomResourceOptions options)
type: intersight:IamCertificate
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args IamCertificateArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args IamCertificateArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args IamCertificateArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args IamCertificateArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. IamCertificateArgs
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 iamCertificateResource = new Intersight.IamCertificate("iamCertificateResource", new()
{
    AccountMoid = "string",
    AdditionalProperties = "string",
    Ancestors = new[]
    {
        new Intersight.Inputs.IamCertificateAncestorArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    CertificateRequests = new[]
    {
        new Intersight.Inputs.IamCertificateCertificateRequestArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    Certificates = new[]
    {
        new Intersight.Inputs.IamCertificateCertificateArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Issuers = new[]
            {
                new Intersight.Inputs.IamCertificateCertificateIssuerArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    CommonName = "string",
                    Countries = new[]
                    {
                        "string",
                    },
                    Localities = new[]
                    {
                        "string",
                    },
                    ObjectType = "string",
                    OrganizationalUnits = new[]
                    {
                        "string",
                    },
                    Organizations = new[]
                    {
                        "string",
                    },
                    States = new[]
                    {
                        "string",
                    },
                },
            },
            NotAfter = "string",
            NotBefore = "string",
            ObjectType = "string",
            PemCertificate = "string",
            Sha256Fingerprint = "string",
            SignatureAlgorithm = "string",
            Subjects = new[]
            {
                new Intersight.Inputs.IamCertificateCertificateSubjectArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    CommonName = "string",
                    Countries = new[]
                    {
                        "string",
                    },
                    Localities = new[]
                    {
                        "string",
                    },
                    ObjectType = "string",
                    OrganizationalUnits = new[]
                    {
                        "string",
                    },
                    Organizations = new[]
                    {
                        "string",
                    },
                    States = new[]
                    {
                        "string",
                    },
                },
            },
        },
    },
    ClassId = "string",
    CreateTime = "string",
    DomainGroupMoid = "string",
    IamCertificateId = "string",
    ModTime = "string",
    Moid = "string",
    ObjectType = "string",
    Owners = new[]
    {
        "string",
    },
    Parents = new[]
    {
        new Intersight.Inputs.IamCertificateParentArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    PermissionResources = new[]
    {
        new Intersight.Inputs.IamCertificatePermissionResourceArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    SharedScope = "string",
    Status = "string",
    Tags = new[]
    {
        new Intersight.Inputs.IamCertificateTagArgs
        {
            AdditionalProperties = "string",
            Key = "string",
            Value = "string",
        },
    },
    VersionContexts = new[]
    {
        new Intersight.Inputs.IamCertificateVersionContextArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            InterestedMos = new[]
            {
                new Intersight.Inputs.IamCertificateVersionContextInterestedMoArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Moid = "string",
                    ObjectType = "string",
                    Selector = "string",
                },
            },
            MarkedForDeletion = false,
            NrVersion = "string",
            ObjectType = "string",
            RefMos = new[]
            {
                new Intersight.Inputs.IamCertificateVersionContextRefMoArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Moid = "string",
                    ObjectType = "string",
                    Selector = "string",
                },
            },
            Timestamp = "string",
            VersionType = "string",
        },
    },
});
Copy
example, err := intersight.NewIamCertificate(ctx, "iamCertificateResource", &intersight.IamCertificateArgs{
AccountMoid: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
Ancestors: .IamCertificateAncestorArray{
&.IamCertificateAncestorArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
CertificateRequests: .IamCertificateCertificateRequestArray{
&.IamCertificateCertificateRequestArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Certificates: .IamCertificateCertificateArray{
&.IamCertificateCertificateArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Issuers: .IamCertificateCertificateIssuerArray{
&.IamCertificateCertificateIssuerArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
CommonName: pulumi.String("string"),
Countries: pulumi.StringArray{
pulumi.String("string"),
},
Localities: pulumi.StringArray{
pulumi.String("string"),
},
ObjectType: pulumi.String("string"),
OrganizationalUnits: pulumi.StringArray{
pulumi.String("string"),
},
Organizations: pulumi.StringArray{
pulumi.String("string"),
},
States: pulumi.StringArray{
pulumi.String("string"),
},
},
},
NotAfter: pulumi.String("string"),
NotBefore: pulumi.String("string"),
ObjectType: pulumi.String("string"),
PemCertificate: pulumi.String("string"),
Sha256Fingerprint: pulumi.String("string"),
SignatureAlgorithm: pulumi.String("string"),
Subjects: .IamCertificateCertificateSubjectArray{
&.IamCertificateCertificateSubjectArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
CommonName: pulumi.String("string"),
Countries: pulumi.StringArray{
pulumi.String("string"),
},
Localities: pulumi.StringArray{
pulumi.String("string"),
},
ObjectType: pulumi.String("string"),
OrganizationalUnits: pulumi.StringArray{
pulumi.String("string"),
},
Organizations: pulumi.StringArray{
pulumi.String("string"),
},
States: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
ClassId: pulumi.String("string"),
CreateTime: pulumi.String("string"),
DomainGroupMoid: pulumi.String("string"),
IamCertificateId: pulumi.String("string"),
ModTime: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Owners: pulumi.StringArray{
pulumi.String("string"),
},
Parents: .IamCertificateParentArray{
&.IamCertificateParentArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
PermissionResources: .IamCertificatePermissionResourceArray{
&.IamCertificatePermissionResourceArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
SharedScope: pulumi.String("string"),
Status: pulumi.String("string"),
Tags: .IamCertificateTagArray{
&.IamCertificateTagArgs{
AdditionalProperties: pulumi.String("string"),
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
VersionContexts: .IamCertificateVersionContextArray{
&.IamCertificateVersionContextArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
InterestedMos: .IamCertificateVersionContextInterestedMoArray{
&.IamCertificateVersionContextInterestedMoArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
MarkedForDeletion: pulumi.Bool(false),
NrVersion: pulumi.String("string"),
ObjectType: pulumi.String("string"),
RefMos: .IamCertificateVersionContextRefMoArray{
&.IamCertificateVersionContextRefMoArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Timestamp: pulumi.String("string"),
VersionType: pulumi.String("string"),
},
},
})
Copy
var iamCertificateResource = new IamCertificate("iamCertificateResource", IamCertificateArgs.builder()
    .accountMoid("string")
    .additionalProperties("string")
    .ancestors(IamCertificateAncestorArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .certificateRequests(IamCertificateCertificateRequestArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .certificates(IamCertificateCertificateArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .issuers(IamCertificateCertificateIssuerArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .commonName("string")
            .countries("string")
            .localities("string")
            .objectType("string")
            .organizationalUnits("string")
            .organizations("string")
            .states("string")
            .build())
        .notAfter("string")
        .notBefore("string")
        .objectType("string")
        .pemCertificate("string")
        .sha256Fingerprint("string")
        .signatureAlgorithm("string")
        .subjects(IamCertificateCertificateSubjectArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .commonName("string")
            .countries("string")
            .localities("string")
            .objectType("string")
            .organizationalUnits("string")
            .organizations("string")
            .states("string")
            .build())
        .build())
    .classId("string")
    .createTime("string")
    .domainGroupMoid("string")
    .iamCertificateId("string")
    .modTime("string")
    .moid("string")
    .objectType("string")
    .owners("string")
    .parents(IamCertificateParentArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .permissionResources(IamCertificatePermissionResourceArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .sharedScope("string")
    .status("string")
    .tags(IamCertificateTagArgs.builder()
        .additionalProperties("string")
        .key("string")
        .value("string")
        .build())
    .versionContexts(IamCertificateVersionContextArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .interestedMos(IamCertificateVersionContextInterestedMoArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .markedForDeletion(false)
        .nrVersion("string")
        .objectType("string")
        .refMos(IamCertificateVersionContextRefMoArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .timestamp("string")
        .versionType("string")
        .build())
    .build());
Copy
iam_certificate_resource = intersight.IamCertificate("iamCertificateResource",
    account_moid="string",
    additional_properties="string",
    ancestors=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    certificate_requests=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    certificates=[{
        "additional_properties": "string",
        "class_id": "string",
        "issuers": [{
            "additional_properties": "string",
            "class_id": "string",
            "common_name": "string",
            "countries": ["string"],
            "localities": ["string"],
            "object_type": "string",
            "organizational_units": ["string"],
            "organizations": ["string"],
            "states": ["string"],
        }],
        "not_after": "string",
        "not_before": "string",
        "object_type": "string",
        "pem_certificate": "string",
        "sha256_fingerprint": "string",
        "signature_algorithm": "string",
        "subjects": [{
            "additional_properties": "string",
            "class_id": "string",
            "common_name": "string",
            "countries": ["string"],
            "localities": ["string"],
            "object_type": "string",
            "organizational_units": ["string"],
            "organizations": ["string"],
            "states": ["string"],
        }],
    }],
    class_id="string",
    create_time="string",
    domain_group_moid="string",
    iam_certificate_id="string",
    mod_time="string",
    moid="string",
    object_type="string",
    owners=["string"],
    parents=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    permission_resources=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    shared_scope="string",
    status="string",
    tags=[{
        "additional_properties": "string",
        "key": "string",
        "value": "string",
    }],
    version_contexts=[{
        "additional_properties": "string",
        "class_id": "string",
        "interested_mos": [{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        "marked_for_deletion": False,
        "nr_version": "string",
        "object_type": "string",
        "ref_mos": [{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        "timestamp": "string",
        "version_type": "string",
    }])
Copy
const iamCertificateResource = new intersight.IamCertificate("iamCertificateResource", {
    accountMoid: "string",
    additionalProperties: "string",
    ancestors: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    certificateRequests: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    certificates: [{
        additionalProperties: "string",
        classId: "string",
        issuers: [{
            additionalProperties: "string",
            classId: "string",
            commonName: "string",
            countries: ["string"],
            localities: ["string"],
            objectType: "string",
            organizationalUnits: ["string"],
            organizations: ["string"],
            states: ["string"],
        }],
        notAfter: "string",
        notBefore: "string",
        objectType: "string",
        pemCertificate: "string",
        sha256Fingerprint: "string",
        signatureAlgorithm: "string",
        subjects: [{
            additionalProperties: "string",
            classId: "string",
            commonName: "string",
            countries: ["string"],
            localities: ["string"],
            objectType: "string",
            organizationalUnits: ["string"],
            organizations: ["string"],
            states: ["string"],
        }],
    }],
    classId: "string",
    createTime: "string",
    domainGroupMoid: "string",
    iamCertificateId: "string",
    modTime: "string",
    moid: "string",
    objectType: "string",
    owners: ["string"],
    parents: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    permissionResources: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    sharedScope: "string",
    status: "string",
    tags: [{
        additionalProperties: "string",
        key: "string",
        value: "string",
    }],
    versionContexts: [{
        additionalProperties: "string",
        classId: "string",
        interestedMos: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        markedForDeletion: false,
        nrVersion: "string",
        objectType: "string",
        refMos: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        timestamp: "string",
        versionType: "string",
    }],
});
Copy
type: intersight:IamCertificate
properties:
    accountMoid: string
    additionalProperties: string
    ancestors:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    certificateRequests:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    certificates:
        - additionalProperties: string
          classId: string
          issuers:
            - additionalProperties: string
              classId: string
              commonName: string
              countries:
                - string
              localities:
                - string
              objectType: string
              organizationalUnits:
                - string
              organizations:
                - string
              states:
                - string
          notAfter: string
          notBefore: string
          objectType: string
          pemCertificate: string
          sha256Fingerprint: string
          signatureAlgorithm: string
          subjects:
            - additionalProperties: string
              classId: string
              commonName: string
              countries:
                - string
              localities:
                - string
              objectType: string
              organizationalUnits:
                - string
              organizations:
                - string
              states:
                - string
    classId: string
    createTime: string
    domainGroupMoid: string
    iamCertificateId: string
    modTime: string
    moid: string
    objectType: string
    owners:
        - string
    parents:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    permissionResources:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    sharedScope: string
    status: string
    tags:
        - additionalProperties: string
          key: string
          value: string
    versionContexts:
        - additionalProperties: string
          classId: string
          interestedMos:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
          markedForDeletion: false
          nrVersion: string
          objectType: string
          refMos:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
          timestamp: string
          versionType: string
Copy

IamCertificate 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 IamCertificate resource accepts the following input properties:

AccountMoid string
(ReadOnly) The Account ID for this managed object.
AdditionalProperties string
Ancestors List<IamCertificateAncestor>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
CertificateRequests List<IamCertificateCertificateRequest>
A reference to a iamCertificateRequest resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
Certificates List<IamCertificateCertificate>
User-input pem-encoded certificate, signed by a CAcert. This complex property has following sub-properties:
ClassId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
CreateTime string
(ReadOnly) The time when this managed object was created.
DomainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
IamCertificateId string
ModTime string
(ReadOnly) The time when this managed object was last modified.
Moid string
The unique identifier of this Managed Object instance.
ObjectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
Owners List<string>
(Array of schema.TypeString) -(ReadOnly)
Parents List<IamCertificateParent>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
PermissionResources List<IamCertificatePermissionResource>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
SharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
Status string
(ReadOnly) Status of the certificate.* PendingValidation - The certificate has not been validated.* Valid - The certificate is valid.* Invalid - Ther certificate is invalid.
Tags List<IamCertificateTag>
This complex property has following sub-properties:
VersionContexts List<IamCertificateVersionContext>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
AccountMoid string
(ReadOnly) The Account ID for this managed object.
AdditionalProperties string
Ancestors []IamCertificateAncestorArgs
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
CertificateRequests []IamCertificateCertificateRequestArgs
A reference to a iamCertificateRequest resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
Certificates []IamCertificateCertificateArgs
User-input pem-encoded certificate, signed by a CAcert. This complex property has following sub-properties:
ClassId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
CreateTime string
(ReadOnly) The time when this managed object was created.
DomainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
IamCertificateId string
ModTime string
(ReadOnly) The time when this managed object was last modified.
Moid string
The unique identifier of this Managed Object instance.
ObjectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
Owners []string
(Array of schema.TypeString) -(ReadOnly)
Parents []IamCertificateParentArgs
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
PermissionResources []IamCertificatePermissionResourceArgs
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
SharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
Status string
(ReadOnly) Status of the certificate.* PendingValidation - The certificate has not been validated.* Valid - The certificate is valid.* Invalid - Ther certificate is invalid.
Tags []IamCertificateTagArgs
This complex property has following sub-properties:
VersionContexts []IamCertificateVersionContextArgs
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
accountMoid String
(ReadOnly) The Account ID for this managed object.
additionalProperties String
ancestors List<IamCertificateAncestor>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
certificateRequests List<IamCertificateCertificateRequest>
A reference to a iamCertificateRequest resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
certificates List<IamCertificateCertificate>
User-input pem-encoded certificate, signed by a CAcert. This complex property has following sub-properties:
classId String
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
createTime String
(ReadOnly) The time when this managed object was created.
domainGroupMoid String
(ReadOnly) The DomainGroup ID for this managed object.
iamCertificateId String
modTime String
(ReadOnly) The time when this managed object was last modified.
moid String
The unique identifier of this Managed Object instance.
objectType String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
owners List<String>
(Array of schema.TypeString) -(ReadOnly)
parents List<IamCertificateParent>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources List<IamCertificatePermissionResource>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
sharedScope String
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
status String
(ReadOnly) Status of the certificate.* PendingValidation - The certificate has not been validated.* Valid - The certificate is valid.* Invalid - Ther certificate is invalid.
tags List<IamCertificateTag>
This complex property has following sub-properties:
versionContexts List<IamCertificateVersionContext>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
accountMoid string
(ReadOnly) The Account ID for this managed object.
additionalProperties string
ancestors IamCertificateAncestor[]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
certificateRequests IamCertificateCertificateRequest[]
A reference to a iamCertificateRequest resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
certificates IamCertificateCertificate[]
User-input pem-encoded certificate, signed by a CAcert. This complex property has following sub-properties:
classId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
createTime string
(ReadOnly) The time when this managed object was created.
domainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
iamCertificateId string
modTime string
(ReadOnly) The time when this managed object was last modified.
moid string
The unique identifier of this Managed Object instance.
objectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
owners string[]
(Array of schema.TypeString) -(ReadOnly)
parents IamCertificateParent[]
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources IamCertificatePermissionResource[]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
sharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
status string
(ReadOnly) Status of the certificate.* PendingValidation - The certificate has not been validated.* Valid - The certificate is valid.* Invalid - Ther certificate is invalid.
tags IamCertificateTag[]
This complex property has following sub-properties:
versionContexts IamCertificateVersionContext[]
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
account_moid str
(ReadOnly) The Account ID for this managed object.
additional_properties str
ancestors Sequence[IamCertificateAncestorArgs]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
certificate_requests Sequence[IamCertificateCertificateRequestArgs]
A reference to a iamCertificateRequest resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
certificates Sequence[IamCertificateCertificateArgs]
User-input pem-encoded certificate, signed by a CAcert. This complex property has following sub-properties:
class_id str
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
create_time str
(ReadOnly) The time when this managed object was created.
domain_group_moid str
(ReadOnly) The DomainGroup ID for this managed object.
iam_certificate_id str
mod_time str
(ReadOnly) The time when this managed object was last modified.
moid str
The unique identifier of this Managed Object instance.
object_type str
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
owners Sequence[str]
(Array of schema.TypeString) -(ReadOnly)
parents Sequence[IamCertificateParentArgs]
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permission_resources Sequence[IamCertificatePermissionResourceArgs]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
shared_scope str
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
status str
(ReadOnly) Status of the certificate.* PendingValidation - The certificate has not been validated.* Valid - The certificate is valid.* Invalid - Ther certificate is invalid.
tags Sequence[IamCertificateTagArgs]
This complex property has following sub-properties:
version_contexts Sequence[IamCertificateVersionContextArgs]
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
accountMoid String
(ReadOnly) The Account ID for this managed object.
additionalProperties String
ancestors List<Property Map>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
certificateRequests List<Property Map>
A reference to a iamCertificateRequest resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
certificates List<Property Map>
User-input pem-encoded certificate, signed by a CAcert. This complex property has following sub-properties:
classId String
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
createTime String
(ReadOnly) The time when this managed object was created.
domainGroupMoid String
(ReadOnly) The DomainGroup ID for this managed object.
iamCertificateId String
modTime String
(ReadOnly) The time when this managed object was last modified.
moid String
The unique identifier of this Managed Object instance.
objectType String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
owners List<String>
(Array of schema.TypeString) -(ReadOnly)
parents List<Property Map>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources List<Property Map>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
sharedScope String
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
status String
(ReadOnly) Status of the certificate.* PendingValidation - The certificate has not been validated.* Valid - The certificate is valid.* Invalid - Ther certificate is invalid.
tags List<Property Map>
This complex property has following sub-properties:
versionContexts List<Property Map>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:

Outputs

All input properties are implicitly available as output properties. Additionally, the IamCertificate resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing IamCertificate Resource

Get an existing IamCertificate 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?: IamCertificateState, opts?: CustomResourceOptions): IamCertificate
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        account_moid: Optional[str] = None,
        additional_properties: Optional[str] = None,
        ancestors: Optional[Sequence[IamCertificateAncestorArgs]] = None,
        certificate_requests: Optional[Sequence[IamCertificateCertificateRequestArgs]] = None,
        certificates: Optional[Sequence[IamCertificateCertificateArgs]] = None,
        class_id: Optional[str] = None,
        create_time: Optional[str] = None,
        domain_group_moid: Optional[str] = None,
        iam_certificate_id: Optional[str] = None,
        mod_time: Optional[str] = None,
        moid: Optional[str] = None,
        object_type: Optional[str] = None,
        owners: Optional[Sequence[str]] = None,
        parents: Optional[Sequence[IamCertificateParentArgs]] = None,
        permission_resources: Optional[Sequence[IamCertificatePermissionResourceArgs]] = None,
        shared_scope: Optional[str] = None,
        status: Optional[str] = None,
        tags: Optional[Sequence[IamCertificateTagArgs]] = None,
        version_contexts: Optional[Sequence[IamCertificateVersionContextArgs]] = None) -> IamCertificate
func GetIamCertificate(ctx *Context, name string, id IDInput, state *IamCertificateState, opts ...ResourceOption) (*IamCertificate, error)
public static IamCertificate Get(string name, Input<string> id, IamCertificateState? state, CustomResourceOptions? opts = null)
public static IamCertificate get(String name, Output<String> id, IamCertificateState state, CustomResourceOptions options)
resources:  _:    type: intersight:IamCertificate    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
AccountMoid string
(ReadOnly) The Account ID for this managed object.
AdditionalProperties string
Ancestors List<IamCertificateAncestor>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
CertificateRequests List<IamCertificateCertificateRequest>
A reference to a iamCertificateRequest resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
Certificates List<IamCertificateCertificate>
User-input pem-encoded certificate, signed by a CAcert. This complex property has following sub-properties:
ClassId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
CreateTime string
(ReadOnly) The time when this managed object was created.
DomainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
IamCertificateId string
ModTime string
(ReadOnly) The time when this managed object was last modified.
Moid string
The unique identifier of this Managed Object instance.
ObjectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
Owners List<string>
(Array of schema.TypeString) -(ReadOnly)
Parents List<IamCertificateParent>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
PermissionResources List<IamCertificatePermissionResource>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
SharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
Status string
(ReadOnly) Status of the certificate.* PendingValidation - The certificate has not been validated.* Valid - The certificate is valid.* Invalid - Ther certificate is invalid.
Tags List<IamCertificateTag>
This complex property has following sub-properties:
VersionContexts List<IamCertificateVersionContext>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
AccountMoid string
(ReadOnly) The Account ID for this managed object.
AdditionalProperties string
Ancestors []IamCertificateAncestorArgs
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
CertificateRequests []IamCertificateCertificateRequestArgs
A reference to a iamCertificateRequest resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
Certificates []IamCertificateCertificateArgs
User-input pem-encoded certificate, signed by a CAcert. This complex property has following sub-properties:
ClassId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
CreateTime string
(ReadOnly) The time when this managed object was created.
DomainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
IamCertificateId string
ModTime string
(ReadOnly) The time when this managed object was last modified.
Moid string
The unique identifier of this Managed Object instance.
ObjectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
Owners []string
(Array of schema.TypeString) -(ReadOnly)
Parents []IamCertificateParentArgs
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
PermissionResources []IamCertificatePermissionResourceArgs
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
SharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
Status string
(ReadOnly) Status of the certificate.* PendingValidation - The certificate has not been validated.* Valid - The certificate is valid.* Invalid - Ther certificate is invalid.
Tags []IamCertificateTagArgs
This complex property has following sub-properties:
VersionContexts []IamCertificateVersionContextArgs
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
accountMoid String
(ReadOnly) The Account ID for this managed object.
additionalProperties String
ancestors List<IamCertificateAncestor>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
certificateRequests List<IamCertificateCertificateRequest>
A reference to a iamCertificateRequest resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
certificates List<IamCertificateCertificate>
User-input pem-encoded certificate, signed by a CAcert. This complex property has following sub-properties:
classId String
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
createTime String
(ReadOnly) The time when this managed object was created.
domainGroupMoid String
(ReadOnly) The DomainGroup ID for this managed object.
iamCertificateId String
modTime String
(ReadOnly) The time when this managed object was last modified.
moid String
The unique identifier of this Managed Object instance.
objectType String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
owners List<String>
(Array of schema.TypeString) -(ReadOnly)
parents List<IamCertificateParent>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources List<IamCertificatePermissionResource>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
sharedScope String
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
status String
(ReadOnly) Status of the certificate.* PendingValidation - The certificate has not been validated.* Valid - The certificate is valid.* Invalid - Ther certificate is invalid.
tags List<IamCertificateTag>
This complex property has following sub-properties:
versionContexts List<IamCertificateVersionContext>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
accountMoid string
(ReadOnly) The Account ID for this managed object.
additionalProperties string
ancestors IamCertificateAncestor[]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
certificateRequests IamCertificateCertificateRequest[]
A reference to a iamCertificateRequest resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
certificates IamCertificateCertificate[]
User-input pem-encoded certificate, signed by a CAcert. This complex property has following sub-properties:
classId string
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
createTime string
(ReadOnly) The time when this managed object was created.
domainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
iamCertificateId string
modTime string
(ReadOnly) The time when this managed object was last modified.
moid string
The unique identifier of this Managed Object instance.
objectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
owners string[]
(Array of schema.TypeString) -(ReadOnly)
parents IamCertificateParent[]
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources IamCertificatePermissionResource[]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
sharedScope string
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
status string
(ReadOnly) Status of the certificate.* PendingValidation - The certificate has not been validated.* Valid - The certificate is valid.* Invalid - Ther certificate is invalid.
tags IamCertificateTag[]
This complex property has following sub-properties:
versionContexts IamCertificateVersionContext[]
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
account_moid str
(ReadOnly) The Account ID for this managed object.
additional_properties str
ancestors Sequence[IamCertificateAncestorArgs]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
certificate_requests Sequence[IamCertificateCertificateRequestArgs]
A reference to a iamCertificateRequest resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
certificates Sequence[IamCertificateCertificateArgs]
User-input pem-encoded certificate, signed by a CAcert. This complex property has following sub-properties:
class_id str
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
create_time str
(ReadOnly) The time when this managed object was created.
domain_group_moid str
(ReadOnly) The DomainGroup ID for this managed object.
iam_certificate_id str
mod_time str
(ReadOnly) The time when this managed object was last modified.
moid str
The unique identifier of this Managed Object instance.
object_type str
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
owners Sequence[str]
(Array of schema.TypeString) -(ReadOnly)
parents Sequence[IamCertificateParentArgs]
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permission_resources Sequence[IamCertificatePermissionResourceArgs]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
shared_scope str
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
status str
(ReadOnly) Status of the certificate.* PendingValidation - The certificate has not been validated.* Valid - The certificate is valid.* Invalid - Ther certificate is invalid.
tags Sequence[IamCertificateTagArgs]
This complex property has following sub-properties:
version_contexts Sequence[IamCertificateVersionContextArgs]
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
accountMoid String
(ReadOnly) The Account ID for this managed object.
additionalProperties String
ancestors List<Property Map>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
certificateRequests List<Property Map>
A reference to a iamCertificateRequest resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
certificates List<Property Map>
User-input pem-encoded certificate, signed by a CAcert. This complex property has following sub-properties:
classId String
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
createTime String
(ReadOnly) The time when this managed object was created.
domainGroupMoid String
(ReadOnly) The DomainGroup ID for this managed object.
iamCertificateId String
modTime String
(ReadOnly) The time when this managed object was last modified.
moid String
The unique identifier of this Managed Object instance.
objectType String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
owners List<String>
(Array of schema.TypeString) -(ReadOnly)
parents List<Property Map>
(ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
permissionResources List<Property Map>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
sharedScope String
(ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
status String
(ReadOnly) Status of the certificate.* PendingValidation - The certificate has not been validated.* Valid - The certificate is valid.* Invalid - Ther certificate is invalid.
tags List<Property Map>
This complex property has following sub-properties:
versionContexts List<Property Map>
(ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:

Supporting Types

IamCertificateAncestor
, IamCertificateAncestorArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

IamCertificateCertificate
, IamCertificateCertificateArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Issuers This property is required. List<IamCertificateCertificateIssuer>
(ReadOnly) The X.509 distinguished name of the issuer of this certificate. This complex property has following sub-properties:
NotAfter This property is required. string
(ReadOnly) The date on which the certificate's validity period ends.
NotBefore This property is required. string
(ReadOnly) The date on which the certificate's validity period begins.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
PemCertificate This property is required. string
The base64 encoded certificate in PEM format.
Sha256Fingerprint This property is required. string
(ReadOnly) The computed SHA-256 fingerprint of the certificate. Equivalent to 'openssl x509 -fingerprint -sha256'.
SignatureAlgorithm This property is required. string
(ReadOnly) Signature algorithm, as specified in RFC 5280.
Subjects This property is required. List<IamCertificateCertificateSubject>
(ReadOnly) The X.509 distinguished name of the subject of this certificate. This complex property has following sub-properties:
AdditionalProperties This property is required. string
ClassId This property is required. string
Issuers This property is required. []IamCertificateCertificateIssuer
(ReadOnly) The X.509 distinguished name of the issuer of this certificate. This complex property has following sub-properties:
NotAfter This property is required. string
(ReadOnly) The date on which the certificate's validity period ends.
NotBefore This property is required. string
(ReadOnly) The date on which the certificate's validity period begins.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
PemCertificate This property is required. string
The base64 encoded certificate in PEM format.
Sha256Fingerprint This property is required. string
(ReadOnly) The computed SHA-256 fingerprint of the certificate. Equivalent to 'openssl x509 -fingerprint -sha256'.
SignatureAlgorithm This property is required. string
(ReadOnly) Signature algorithm, as specified in RFC 5280.
Subjects This property is required. []IamCertificateCertificateSubject
(ReadOnly) The X.509 distinguished name of the subject of this certificate. This complex property has following sub-properties:
additionalProperties This property is required. String
classId This property is required. String
issuers This property is required. List<IamCertificateCertificateIssuer>
(ReadOnly) The X.509 distinguished name of the issuer of this certificate. This complex property has following sub-properties:
notAfter This property is required. String
(ReadOnly) The date on which the certificate's validity period ends.
notBefore This property is required. String
(ReadOnly) The date on which the certificate's validity period begins.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
pemCertificate This property is required. String
The base64 encoded certificate in PEM format.
sha256Fingerprint This property is required. String
(ReadOnly) The computed SHA-256 fingerprint of the certificate. Equivalent to 'openssl x509 -fingerprint -sha256'.
signatureAlgorithm This property is required. String
(ReadOnly) Signature algorithm, as specified in RFC 5280.
subjects This property is required. List<IamCertificateCertificateSubject>
(ReadOnly) The X.509 distinguished name of the subject of this certificate. This complex property has following sub-properties:
additionalProperties This property is required. string
classId This property is required. string
issuers This property is required. IamCertificateCertificateIssuer[]
(ReadOnly) The X.509 distinguished name of the issuer of this certificate. This complex property has following sub-properties:
notAfter This property is required. string
(ReadOnly) The date on which the certificate's validity period ends.
notBefore This property is required. string
(ReadOnly) The date on which the certificate's validity period begins.
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
pemCertificate This property is required. string
The base64 encoded certificate in PEM format.
sha256Fingerprint This property is required. string
(ReadOnly) The computed SHA-256 fingerprint of the certificate. Equivalent to 'openssl x509 -fingerprint -sha256'.
signatureAlgorithm This property is required. string
(ReadOnly) Signature algorithm, as specified in RFC 5280.
subjects This property is required. IamCertificateCertificateSubject[]
(ReadOnly) The X.509 distinguished name of the subject of this certificate. This complex property has following sub-properties:
additional_properties This property is required. str
class_id This property is required. str
issuers This property is required. Sequence[IamCertificateCertificateIssuer]
(ReadOnly) The X.509 distinguished name of the issuer of this certificate. This complex property has following sub-properties:
not_after This property is required. str
(ReadOnly) The date on which the certificate's validity period ends.
not_before This property is required. str
(ReadOnly) The date on which the certificate's validity period begins.
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
pem_certificate This property is required. str
The base64 encoded certificate in PEM format.
sha256_fingerprint This property is required. str
(ReadOnly) The computed SHA-256 fingerprint of the certificate. Equivalent to 'openssl x509 -fingerprint -sha256'.
signature_algorithm This property is required. str
(ReadOnly) Signature algorithm, as specified in RFC 5280.
subjects This property is required. Sequence[IamCertificateCertificateSubject]
(ReadOnly) The X.509 distinguished name of the subject of this certificate. This complex property has following sub-properties:
additionalProperties This property is required. String
classId This property is required. String
issuers This property is required. List<Property Map>
(ReadOnly) The X.509 distinguished name of the issuer of this certificate. This complex property has following sub-properties:
notAfter This property is required. String
(ReadOnly) The date on which the certificate's validity period ends.
notBefore This property is required. String
(ReadOnly) The date on which the certificate's validity period begins.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
pemCertificate This property is required. String
The base64 encoded certificate in PEM format.
sha256Fingerprint This property is required. String
(ReadOnly) The computed SHA-256 fingerprint of the certificate. Equivalent to 'openssl x509 -fingerprint -sha256'.
signatureAlgorithm This property is required. String
(ReadOnly) Signature algorithm, as specified in RFC 5280.
subjects This property is required. List<Property Map>
(ReadOnly) The X.509 distinguished name of the subject of this certificate. This complex property has following sub-properties:

IamCertificateCertificateIssuer
, IamCertificateCertificateIssuerArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
CommonName This property is required. string
(ReadOnly) A required component that identifies a person or an object.
Countries This property is required. List<string>
(Array of schema.TypeString) -
Localities This property is required. List<string>
(Array of schema.TypeString) -
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
OrganizationalUnits This property is required. List<string>
(Array of schema.TypeString) -
Organizations This property is required. List<string>
(Array of schema.TypeString) -
States This property is required. List<string>
(Array of schema.TypeString) -
AdditionalProperties This property is required. string
ClassId This property is required. string
CommonName This property is required. string
(ReadOnly) A required component that identifies a person or an object.
Countries This property is required. []string
(Array of schema.TypeString) -
Localities This property is required. []string
(Array of schema.TypeString) -
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
OrganizationalUnits This property is required. []string
(Array of schema.TypeString) -
Organizations This property is required. []string
(Array of schema.TypeString) -
States This property is required. []string
(Array of schema.TypeString) -
additionalProperties This property is required. String
classId This property is required. String
commonName This property is required. String
(ReadOnly) A required component that identifies a person or an object.
countries This property is required. List<String>
(Array of schema.TypeString) -
localities This property is required. List<String>
(Array of schema.TypeString) -
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
organizationalUnits This property is required. List<String>
(Array of schema.TypeString) -
organizations This property is required. List<String>
(Array of schema.TypeString) -
states This property is required. List<String>
(Array of schema.TypeString) -
additionalProperties This property is required. string
classId This property is required. string
commonName This property is required. string
(ReadOnly) A required component that identifies a person or an object.
countries This property is required. string[]
(Array of schema.TypeString) -
localities This property is required. string[]
(Array of schema.TypeString) -
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
organizationalUnits This property is required. string[]
(Array of schema.TypeString) -
organizations This property is required. string[]
(Array of schema.TypeString) -
states This property is required. string[]
(Array of schema.TypeString) -
additional_properties This property is required. str
class_id This property is required. str
common_name This property is required. str
(ReadOnly) A required component that identifies a person or an object.
countries This property is required. Sequence[str]
(Array of schema.TypeString) -
localities This property is required. Sequence[str]
(Array of schema.TypeString) -
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
organizational_units This property is required. Sequence[str]
(Array of schema.TypeString) -
organizations This property is required. Sequence[str]
(Array of schema.TypeString) -
states This property is required. Sequence[str]
(Array of schema.TypeString) -
additionalProperties This property is required. String
classId This property is required. String
commonName This property is required. String
(ReadOnly) A required component that identifies a person or an object.
countries This property is required. List<String>
(Array of schema.TypeString) -
localities This property is required. List<String>
(Array of schema.TypeString) -
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
organizationalUnits This property is required. List<String>
(Array of schema.TypeString) -
organizations This property is required. List<String>
(Array of schema.TypeString) -
states This property is required. List<String>
(Array of schema.TypeString) -

IamCertificateCertificateRequest
, IamCertificateCertificateRequestArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

IamCertificateCertificateSubject
, IamCertificateCertificateSubjectArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
CommonName This property is required. string
(ReadOnly) A required component that identifies a person or an object.
Countries This property is required. List<string>
(Array of schema.TypeString) -
Localities This property is required. List<string>
(Array of schema.TypeString) -
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
OrganizationalUnits This property is required. List<string>
(Array of schema.TypeString) -
Organizations This property is required. List<string>
(Array of schema.TypeString) -
States This property is required. List<string>
(Array of schema.TypeString) -
AdditionalProperties This property is required. string
ClassId This property is required. string
CommonName This property is required. string
(ReadOnly) A required component that identifies a person or an object.
Countries This property is required. []string
(Array of schema.TypeString) -
Localities This property is required. []string
(Array of schema.TypeString) -
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
OrganizationalUnits This property is required. []string
(Array of schema.TypeString) -
Organizations This property is required. []string
(Array of schema.TypeString) -
States This property is required. []string
(Array of schema.TypeString) -
additionalProperties This property is required. String
classId This property is required. String
commonName This property is required. String
(ReadOnly) A required component that identifies a person or an object.
countries This property is required. List<String>
(Array of schema.TypeString) -
localities This property is required. List<String>
(Array of schema.TypeString) -
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
organizationalUnits This property is required. List<String>
(Array of schema.TypeString) -
organizations This property is required. List<String>
(Array of schema.TypeString) -
states This property is required. List<String>
(Array of schema.TypeString) -
additionalProperties This property is required. string
classId This property is required. string
commonName This property is required. string
(ReadOnly) A required component that identifies a person or an object.
countries This property is required. string[]
(Array of schema.TypeString) -
localities This property is required. string[]
(Array of schema.TypeString) -
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
organizationalUnits This property is required. string[]
(Array of schema.TypeString) -
organizations This property is required. string[]
(Array of schema.TypeString) -
states This property is required. string[]
(Array of schema.TypeString) -
additional_properties This property is required. str
class_id This property is required. str
common_name This property is required. str
(ReadOnly) A required component that identifies a person or an object.
countries This property is required. Sequence[str]
(Array of schema.TypeString) -
localities This property is required. Sequence[str]
(Array of schema.TypeString) -
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
organizational_units This property is required. Sequence[str]
(Array of schema.TypeString) -
organizations This property is required. Sequence[str]
(Array of schema.TypeString) -
states This property is required. Sequence[str]
(Array of schema.TypeString) -
additionalProperties This property is required. String
classId This property is required. String
commonName This property is required. String
(ReadOnly) A required component that identifies a person or an object.
countries This property is required. List<String>
(Array of schema.TypeString) -
localities This property is required. List<String>
(Array of schema.TypeString) -
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
organizationalUnits This property is required. List<String>
(Array of schema.TypeString) -
organizations This property is required. List<String>
(Array of schema.TypeString) -
states This property is required. List<String>
(Array of schema.TypeString) -

IamCertificateParent
, IamCertificateParentArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

IamCertificatePermissionResource
, IamCertificatePermissionResourceArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

IamCertificateTag
, IamCertificateTagArgs

AdditionalProperties This property is required. string
Key This property is required. string
The string representation of a tag key.
Value This property is required. string
The string representation of a tag value.
AdditionalProperties This property is required. string
Key This property is required. string
The string representation of a tag key.
Value This property is required. string
The string representation of a tag value.
additionalProperties This property is required. String
key This property is required. String
The string representation of a tag key.
value This property is required. String
The string representation of a tag value.
additionalProperties This property is required. string
key This property is required. string
The string representation of a tag key.
value This property is required. string
The string representation of a tag value.
additional_properties This property is required. str
key This property is required. str
The string representation of a tag key.
value This property is required. str
The string representation of a tag value.
additionalProperties This property is required. String
key This property is required. String
The string representation of a tag key.
value This property is required. String
The string representation of a tag value.

IamCertificateVersionContext
, IamCertificateVersionContextArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
InterestedMos This property is required. List<IamCertificateVersionContextInterestedMo>
This complex property has following sub-properties:
MarkedForDeletion This property is required. bool
(ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
NrVersion This property is required. string
(ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
RefMos This property is required. List<IamCertificateVersionContextRefMo>
(ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
Timestamp This property is required. string
(ReadOnly) The time this versioned Managed Object was created.
VersionType This property is required. string
(ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
AdditionalProperties This property is required. string
ClassId This property is required. string
InterestedMos This property is required. []IamCertificateVersionContextInterestedMo
This complex property has following sub-properties:
MarkedForDeletion This property is required. bool
(ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
NrVersion This property is required. string
(ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
ObjectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
RefMos This property is required. []IamCertificateVersionContextRefMo
(ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
Timestamp This property is required. string
(ReadOnly) The time this versioned Managed Object was created.
VersionType This property is required. string
(ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
additionalProperties This property is required. String
classId This property is required. String
interestedMos This property is required. List<IamCertificateVersionContextInterestedMo>
This complex property has following sub-properties:
markedForDeletion This property is required. Boolean
(ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
nrVersion This property is required. String
(ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
refMos This property is required. List<IamCertificateVersionContextRefMo>
(ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
timestamp This property is required. String
(ReadOnly) The time this versioned Managed Object was created.
versionType This property is required. String
(ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
additionalProperties This property is required. string
classId This property is required. string
interestedMos This property is required. IamCertificateVersionContextInterestedMo[]
This complex property has following sub-properties:
markedForDeletion This property is required. boolean
(ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
nrVersion This property is required. string
(ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
objectType This property is required. string
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
refMos This property is required. IamCertificateVersionContextRefMo[]
(ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
timestamp This property is required. string
(ReadOnly) The time this versioned Managed Object was created.
versionType This property is required. string
(ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
additional_properties This property is required. str
class_id This property is required. str
interested_mos This property is required. Sequence[IamCertificateVersionContextInterestedMo]
This complex property has following sub-properties:
marked_for_deletion This property is required. bool
(ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
nr_version This property is required. str
(ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
object_type This property is required. str
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
ref_mos This property is required. Sequence[IamCertificateVersionContextRefMo]
(ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
timestamp This property is required. str
(ReadOnly) The time this versioned Managed Object was created.
version_type This property is required. str
(ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
additionalProperties This property is required. String
classId This property is required. String
interestedMos This property is required. List<Property Map>
This complex property has following sub-properties:
markedForDeletion This property is required. Boolean
(ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
nrVersion This property is required. String
(ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
objectType This property is required. String
The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
refMos This property is required. List<Property Map>
(ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
timestamp This property is required. String
(ReadOnly) The time this versioned Managed Object was created.
versionType This property is required. String
(ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.

IamCertificateVersionContextInterestedMo
, IamCertificateVersionContextInterestedMoArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

IamCertificateVersionContextRefMo
, IamCertificateVersionContextRefMoArgs

AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
AdditionalProperties This property is required. string
ClassId This property is required. string
Moid This property is required. string
The Moid of the referenced REST resource.
ObjectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
Selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. string
classId This property is required. string
moid This property is required. string
The Moid of the referenced REST resource.
objectType This property is required. string
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. string
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additional_properties This property is required. str
class_id This property is required. str
moid This property is required. str
The Moid of the referenced REST resource.
object_type This property is required. str
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. str
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
additionalProperties This property is required. String
classId This property is required. String
moid This property is required. String
The Moid of the referenced REST resource.
objectType This property is required. String
The fully-qualified name of the remote type referred by this relationship.
selector This property is required. String
An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

Import

intersight_iam_certificate can be imported using the Moid of the object, e.g.

$ pulumi import intersight:index/iamCertificate:IamCertificate example 1234567890987654321abcde
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
intersight ciscodevnet/terraform-provider-intersight
License
Notes
This Pulumi package is based on the intersight Terraform Provider.