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

intersight.CertificatemanagementPolicy

Explore with Pulumi AI

Certificate Management policy models a reusable certificate and private key configuration that can be applied to multiple servers or Fabric Interconnects via profile association.

Usage Example

Resource Creation

Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.intersight.CertificatemanagementPolicy;
import com.pulumi.intersight.CertificatemanagementPolicyArgs;
import com.pulumi.intersight.inputs.CertificatemanagementPolicyOrganizationArgs;
import com.pulumi.intersight.inputs.CertificatemanagementPolicyCertificateArgs;
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 privatekey = config.get("privatekey");
        final var pemCertificate1 = config.get("pemCertificate1");
        var certificate1 = new CertificatemanagementPolicy("certificate1", CertificatemanagementPolicyArgs.builder()
            .description("sample certificate")
            .organizations(CertificatemanagementPolicyOrganizationArgs.builder()
                .moid(var_.organization())
                .objectType("organization.Organization")
                .build())
            .certificates(CertificatemanagementPolicyCertificateArgs.builder()
                .certificate(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                .enabled(true)
                .objectType("certificatemanagement.Imc")
                .privatekey(privatekey)
                .build())
            .build());

    }
}
Copy
configuration:
  privatekey:
    type: string
  pemCertificate1:
    type: string
resources:
  certificate1:
    type: intersight:CertificatemanagementPolicy
    properties:
      description: sample certificate
      organizations:
        - moid: ${var.organization}
          objectType: organization.Organization
      certificates:
        - certificate:
            - pemCertificate: ${pemCertificate1}
          enabled: true
          objectType: certificatemanagement.Imc
          privatekey: ${privatekey}
Copy

Allowed Types in AdditionalProperties

certificatemanagement.Imc

IMC certificate has both Certificate and private key that will be used for IMC.

  • cert_type:(string) Certificate Type for the certificate management.* None - Set certificate on the selected end point .* KMIPClient - Set KMIP certificate on the selected end point.
  • is_privatekey_set:(bool)(ReadOnly) Indicates whether the value of the ‘privatekey’ property has been set.
  • privatekey:(string) Private Key which is used to validate the certificate.

certificatemanagement.RootCaCertificate

Root CA Certificate used for HTTPS server authentication and TLS communication with LDAP server.

  • certificate_name:(string) A name that helps identify a certificate. It can be any string that adheres to the following constraints. It should start and end with an alphanumeric character. It can have underscores and hyphens. It cannot be more than 30 characters.

Create CertificatemanagementPolicy Resource

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

Constructor syntax

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

@overload
def CertificatemanagementPolicy(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                account_moid: Optional[str] = None,
                                additional_properties: Optional[str] = None,
                                ancestors: Optional[Sequence[CertificatemanagementPolicyAncestorArgs]] = None,
                                certificatemanagement_policy_id: Optional[str] = None,
                                certificates: Optional[Sequence[CertificatemanagementPolicyCertificateArgs]] = None,
                                class_id: Optional[str] = None,
                                create_time: Optional[str] = None,
                                description: Optional[str] = None,
                                domain_group_moid: Optional[str] = None,
                                mod_time: Optional[str] = None,
                                moid: Optional[str] = None,
                                name: Optional[str] = None,
                                object_type: Optional[str] = None,
                                organizations: Optional[Sequence[CertificatemanagementPolicyOrganizationArgs]] = None,
                                owners: Optional[Sequence[str]] = None,
                                parents: Optional[Sequence[CertificatemanagementPolicyParentArgs]] = None,
                                permission_resources: Optional[Sequence[CertificatemanagementPolicyPermissionResourceArgs]] = None,
                                profiles: Optional[Sequence[CertificatemanagementPolicyProfileArgs]] = None,
                                shared_scope: Optional[str] = None,
                                tags: Optional[Sequence[CertificatemanagementPolicyTagArgs]] = None,
                                version_contexts: Optional[Sequence[CertificatemanagementPolicyVersionContextArgs]] = None)
func NewCertificatemanagementPolicy(ctx *Context, name string, args *CertificatemanagementPolicyArgs, opts ...ResourceOption) (*CertificatemanagementPolicy, error)
public CertificatemanagementPolicy(string name, CertificatemanagementPolicyArgs? args = null, CustomResourceOptions? opts = null)
public CertificatemanagementPolicy(String name, CertificatemanagementPolicyArgs args)
public CertificatemanagementPolicy(String name, CertificatemanagementPolicyArgs args, CustomResourceOptions options)
type: intersight:CertificatemanagementPolicy
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 CertificatemanagementPolicyArgs
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 CertificatemanagementPolicyArgs
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 CertificatemanagementPolicyArgs
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 CertificatemanagementPolicyArgs
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. CertificatemanagementPolicyArgs
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 certificatemanagementPolicyResource = new Intersight.CertificatemanagementPolicy("certificatemanagementPolicyResource", new()
{
    AccountMoid = "string",
    AdditionalProperties = "string",
    Ancestors = new[]
    {
        new Intersight.Inputs.CertificatemanagementPolicyAncestorArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    CertificatemanagementPolicyId = "string",
    Certificates = new[]
    {
        new Intersight.Inputs.CertificatemanagementPolicyCertificateArgs
        {
            AdditionalProperties = "string",
            Certificates = new[]
            {
                new Intersight.Inputs.CertificatemanagementPolicyCertificateCertificateArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Issuers = new[]
                    {
                        new Intersight.Inputs.CertificatemanagementPolicyCertificateCertificateIssuerArgs
                        {
                            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.CertificatemanagementPolicyCertificateCertificateSubjectArgs
                        {
                            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",
            Enabled = false,
            ObjectType = "string",
        },
    },
    ClassId = "string",
    CreateTime = "string",
    Description = "string",
    DomainGroupMoid = "string",
    ModTime = "string",
    Moid = "string",
    Name = "string",
    ObjectType = "string",
    Organizations = new[]
    {
        new Intersight.Inputs.CertificatemanagementPolicyOrganizationArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    Owners = new[]
    {
        "string",
    },
    Parents = new[]
    {
        new Intersight.Inputs.CertificatemanagementPolicyParentArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    PermissionResources = new[]
    {
        new Intersight.Inputs.CertificatemanagementPolicyPermissionResourceArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    Profiles = new[]
    {
        new Intersight.Inputs.CertificatemanagementPolicyProfileArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    SharedScope = "string",
    Tags = new[]
    {
        new Intersight.Inputs.CertificatemanagementPolicyTagArgs
        {
            AdditionalProperties = "string",
            Key = "string",
            Value = "string",
        },
    },
    VersionContexts = new[]
    {
        new Intersight.Inputs.CertificatemanagementPolicyVersionContextArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            InterestedMos = new[]
            {
                new Intersight.Inputs.CertificatemanagementPolicyVersionContextInterestedMoArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Moid = "string",
                    ObjectType = "string",
                    Selector = "string",
                },
            },
            MarkedForDeletion = false,
            NrVersion = "string",
            ObjectType = "string",
            RefMos = new[]
            {
                new Intersight.Inputs.CertificatemanagementPolicyVersionContextRefMoArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Moid = "string",
                    ObjectType = "string",
                    Selector = "string",
                },
            },
            Timestamp = "string",
            VersionType = "string",
        },
    },
});
Copy
example, err := intersight.NewCertificatemanagementPolicy(ctx, "certificatemanagementPolicyResource", &intersight.CertificatemanagementPolicyArgs{
	AccountMoid:          pulumi.String("string"),
	AdditionalProperties: pulumi.String("string"),
	Ancestors: intersight.CertificatemanagementPolicyAncestorArray{
		&intersight.CertificatemanagementPolicyAncestorArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	CertificatemanagementPolicyId: pulumi.String("string"),
	Certificates: intersight.CertificatemanagementPolicyCertificateArray{
		&intersight.CertificatemanagementPolicyCertificateArgs{
			AdditionalProperties: pulumi.String("string"),
			Certificates: intersight.CertificatemanagementPolicyCertificateCertificateArray{
				&intersight.CertificatemanagementPolicyCertificateCertificateArgs{
					AdditionalProperties: pulumi.String("string"),
					ClassId:              pulumi.String("string"),
					Issuers: intersight.CertificatemanagementPolicyCertificateCertificateIssuerArray{
						&intersight.CertificatemanagementPolicyCertificateCertificateIssuerArgs{
							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: intersight.CertificatemanagementPolicyCertificateCertificateSubjectArray{
						&intersight.CertificatemanagementPolicyCertificateCertificateSubjectArgs{
							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"),
			Enabled:    pulumi.Bool(false),
			ObjectType: pulumi.String("string"),
		},
	},
	ClassId:         pulumi.String("string"),
	CreateTime:      pulumi.String("string"),
	Description:     pulumi.String("string"),
	DomainGroupMoid: pulumi.String("string"),
	ModTime:         pulumi.String("string"),
	Moid:            pulumi.String("string"),
	Name:            pulumi.String("string"),
	ObjectType:      pulumi.String("string"),
	Organizations: intersight.CertificatemanagementPolicyOrganizationArray{
		&intersight.CertificatemanagementPolicyOrganizationArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	Owners: pulumi.StringArray{
		pulumi.String("string"),
	},
	Parents: intersight.CertificatemanagementPolicyParentArray{
		&intersight.CertificatemanagementPolicyParentArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	PermissionResources: intersight.CertificatemanagementPolicyPermissionResourceArray{
		&intersight.CertificatemanagementPolicyPermissionResourceArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	Profiles: intersight.CertificatemanagementPolicyProfileArray{
		&intersight.CertificatemanagementPolicyProfileArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	SharedScope: pulumi.String("string"),
	Tags: intersight.CertificatemanagementPolicyTagArray{
		&intersight.CertificatemanagementPolicyTagArgs{
			AdditionalProperties: pulumi.String("string"),
			Key:                  pulumi.String("string"),
			Value:                pulumi.String("string"),
		},
	},
	VersionContexts: intersight.CertificatemanagementPolicyVersionContextArray{
		&intersight.CertificatemanagementPolicyVersionContextArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			InterestedMos: intersight.CertificatemanagementPolicyVersionContextInterestedMoArray{
				&intersight.CertificatemanagementPolicyVersionContextInterestedMoArgs{
					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: intersight.CertificatemanagementPolicyVersionContextRefMoArray{
				&intersight.CertificatemanagementPolicyVersionContextRefMoArgs{
					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 certificatemanagementPolicyResource = new CertificatemanagementPolicy("certificatemanagementPolicyResource", CertificatemanagementPolicyArgs.builder()
    .accountMoid("string")
    .additionalProperties("string")
    .ancestors(CertificatemanagementPolicyAncestorArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .certificatemanagementPolicyId("string")
    .certificates(CertificatemanagementPolicyCertificateArgs.builder()
        .additionalProperties("string")
        .certificates(CertificatemanagementPolicyCertificateCertificateArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .issuers(CertificatemanagementPolicyCertificateCertificateIssuerArgs.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(CertificatemanagementPolicyCertificateCertificateSubjectArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .commonName("string")
                .countries("string")
                .localities("string")
                .objectType("string")
                .organizationalUnits("string")
                .organizations("string")
                .states("string")
                .build())
            .build())
        .classId("string")
        .enabled(false)
        .objectType("string")
        .build())
    .classId("string")
    .createTime("string")
    .description("string")
    .domainGroupMoid("string")
    .modTime("string")
    .moid("string")
    .name("string")
    .objectType("string")
    .organizations(CertificatemanagementPolicyOrganizationArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .owners("string")
    .parents(CertificatemanagementPolicyParentArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .permissionResources(CertificatemanagementPolicyPermissionResourceArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .profiles(CertificatemanagementPolicyProfileArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .sharedScope("string")
    .tags(CertificatemanagementPolicyTagArgs.builder()
        .additionalProperties("string")
        .key("string")
        .value("string")
        .build())
    .versionContexts(CertificatemanagementPolicyVersionContextArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .interestedMos(CertificatemanagementPolicyVersionContextInterestedMoArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .markedForDeletion(false)
        .nrVersion("string")
        .objectType("string")
        .refMos(CertificatemanagementPolicyVersionContextRefMoArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .timestamp("string")
        .versionType("string")
        .build())
    .build());
Copy
certificatemanagement_policy_resource = intersight.CertificatemanagementPolicy("certificatemanagementPolicyResource",
    account_moid="string",
    additional_properties="string",
    ancestors=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    certificatemanagement_policy_id="string",
    certificates=[{
        "additional_properties": "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",
        "enabled": False,
        "object_type": "string",
    }],
    class_id="string",
    create_time="string",
    description="string",
    domain_group_moid="string",
    mod_time="string",
    moid="string",
    name="string",
    object_type="string",
    organizations=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "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",
    }],
    profiles=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    shared_scope="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 certificatemanagementPolicyResource = new intersight.CertificatemanagementPolicy("certificatemanagementPolicyResource", {
    accountMoid: "string",
    additionalProperties: "string",
    ancestors: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    certificatemanagementPolicyId: "string",
    certificates: [{
        additionalProperties: "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",
        enabled: false,
        objectType: "string",
    }],
    classId: "string",
    createTime: "string",
    description: "string",
    domainGroupMoid: "string",
    modTime: "string",
    moid: "string",
    name: "string",
    objectType: "string",
    organizations: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "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",
    }],
    profiles: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    sharedScope: "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:CertificatemanagementPolicy
properties:
    accountMoid: string
    additionalProperties: string
    ancestors:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    certificatemanagementPolicyId: string
    certificates:
        - additionalProperties: 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
          enabled: false
          objectType: string
    classId: string
    createTime: string
    description: string
    domainGroupMoid: string
    modTime: string
    moid: string
    name: string
    objectType: string
    organizations:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: 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
    profiles:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    sharedScope: 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

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

AccountMoid string
(ReadOnly) The Account ID for this managed object.
AdditionalProperties string
Ancestors List<CertificatemanagementPolicyAncestor>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
CertificatemanagementPolicyId string
Certificates List<CertificatemanagementPolicyCertificate>
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.
Description string
Description of the policy.
DomainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
ModTime string
(ReadOnly) The time when this managed object was last modified.
Moid string
The unique identifier of this Managed Object instance.
Name string
Name of the concrete policy.
ObjectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
Organizations List<CertificatemanagementPolicyOrganization>
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
Owners List<string>
(Array of schema.TypeString) -(ReadOnly)
Parents List<CertificatemanagementPolicyParent>
(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<CertificatemanagementPolicyPermissionResource>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
Profiles List<CertificatemanagementPolicyProfile>
An array of relationships to policyAbstractConfigProfile 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.
Tags List<CertificatemanagementPolicyTag>
This complex property has following sub-properties:
VersionContexts List<CertificatemanagementPolicyVersionContext>
(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 []CertificatemanagementPolicyAncestorArgs
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
CertificatemanagementPolicyId string
Certificates []CertificatemanagementPolicyCertificateArgs
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.
Description string
Description of the policy.
DomainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
ModTime string
(ReadOnly) The time when this managed object was last modified.
Moid string
The unique identifier of this Managed Object instance.
Name string
Name of the concrete policy.
ObjectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
Organizations []CertificatemanagementPolicyOrganizationArgs
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
Owners []string
(Array of schema.TypeString) -(ReadOnly)
Parents []CertificatemanagementPolicyParentArgs
(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 []CertificatemanagementPolicyPermissionResourceArgs
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
Profiles []CertificatemanagementPolicyProfileArgs
An array of relationships to policyAbstractConfigProfile 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.
Tags []CertificatemanagementPolicyTagArgs
This complex property has following sub-properties:
VersionContexts []CertificatemanagementPolicyVersionContextArgs
(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<CertificatemanagementPolicyAncestor>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
certificatemanagementPolicyId String
certificates List<CertificatemanagementPolicyCertificate>
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.
description String
Description of the policy.
domainGroupMoid String
(ReadOnly) The DomainGroup ID for this managed object.
modTime String
(ReadOnly) The time when this managed object was last modified.
moid String
The unique identifier of this Managed Object instance.
name String
Name of the concrete policy.
objectType String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
organizations List<CertificatemanagementPolicyOrganization>
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
owners List<String>
(Array of schema.TypeString) -(ReadOnly)
parents List<CertificatemanagementPolicyParent>
(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<CertificatemanagementPolicyPermissionResource>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
profiles List<CertificatemanagementPolicyProfile>
An array of relationships to policyAbstractConfigProfile 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.
tags List<CertificatemanagementPolicyTag>
This complex property has following sub-properties:
versionContexts List<CertificatemanagementPolicyVersionContext>
(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 CertificatemanagementPolicyAncestor[]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
certificatemanagementPolicyId string
certificates CertificatemanagementPolicyCertificate[]
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.
description string
Description of the policy.
domainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
modTime string
(ReadOnly) The time when this managed object was last modified.
moid string
The unique identifier of this Managed Object instance.
name string
Name of the concrete policy.
objectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
organizations CertificatemanagementPolicyOrganization[]
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
owners string[]
(Array of schema.TypeString) -(ReadOnly)
parents CertificatemanagementPolicyParent[]
(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 CertificatemanagementPolicyPermissionResource[]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
profiles CertificatemanagementPolicyProfile[]
An array of relationships to policyAbstractConfigProfile 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.
tags CertificatemanagementPolicyTag[]
This complex property has following sub-properties:
versionContexts CertificatemanagementPolicyVersionContext[]
(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[CertificatemanagementPolicyAncestorArgs]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
certificatemanagement_policy_id str
certificates Sequence[CertificatemanagementPolicyCertificateArgs]
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.
description str
Description of the policy.
domain_group_moid str
(ReadOnly) The DomainGroup ID for this managed object.
mod_time str
(ReadOnly) The time when this managed object was last modified.
moid str
The unique identifier of this Managed Object instance.
name str
Name of the concrete policy.
object_type str
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
organizations Sequence[CertificatemanagementPolicyOrganizationArgs]
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
owners Sequence[str]
(Array of schema.TypeString) -(ReadOnly)
parents Sequence[CertificatemanagementPolicyParentArgs]
(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[CertificatemanagementPolicyPermissionResourceArgs]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
profiles Sequence[CertificatemanagementPolicyProfileArgs]
An array of relationships to policyAbstractConfigProfile 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.
tags Sequence[CertificatemanagementPolicyTagArgs]
This complex property has following sub-properties:
version_contexts Sequence[CertificatemanagementPolicyVersionContextArgs]
(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:
certificatemanagementPolicyId String
certificates List<Property Map>
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.
description String
Description of the policy.
domainGroupMoid String
(ReadOnly) The DomainGroup ID for this managed object.
modTime String
(ReadOnly) The time when this managed object was last modified.
moid String
The unique identifier of this Managed Object instance.
name String
Name of the concrete policy.
objectType String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
organizations List<Property Map>
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
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:
profiles List<Property Map>
An array of relationships to policyAbstractConfigProfile 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.
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 CertificatemanagementPolicy 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 CertificatemanagementPolicy Resource

Get an existing CertificatemanagementPolicy 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?: CertificatemanagementPolicyState, opts?: CustomResourceOptions): CertificatemanagementPolicy
@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[CertificatemanagementPolicyAncestorArgs]] = None,
        certificatemanagement_policy_id: Optional[str] = None,
        certificates: Optional[Sequence[CertificatemanagementPolicyCertificateArgs]] = None,
        class_id: Optional[str] = None,
        create_time: Optional[str] = None,
        description: Optional[str] = None,
        domain_group_moid: Optional[str] = None,
        mod_time: Optional[str] = None,
        moid: Optional[str] = None,
        name: Optional[str] = None,
        object_type: Optional[str] = None,
        organizations: Optional[Sequence[CertificatemanagementPolicyOrganizationArgs]] = None,
        owners: Optional[Sequence[str]] = None,
        parents: Optional[Sequence[CertificatemanagementPolicyParentArgs]] = None,
        permission_resources: Optional[Sequence[CertificatemanagementPolicyPermissionResourceArgs]] = None,
        profiles: Optional[Sequence[CertificatemanagementPolicyProfileArgs]] = None,
        shared_scope: Optional[str] = None,
        tags: Optional[Sequence[CertificatemanagementPolicyTagArgs]] = None,
        version_contexts: Optional[Sequence[CertificatemanagementPolicyVersionContextArgs]] = None) -> CertificatemanagementPolicy
func GetCertificatemanagementPolicy(ctx *Context, name string, id IDInput, state *CertificatemanagementPolicyState, opts ...ResourceOption) (*CertificatemanagementPolicy, error)
public static CertificatemanagementPolicy Get(string name, Input<string> id, CertificatemanagementPolicyState? state, CustomResourceOptions? opts = null)
public static CertificatemanagementPolicy get(String name, Output<String> id, CertificatemanagementPolicyState state, CustomResourceOptions options)
resources:  _:    type: intersight:CertificatemanagementPolicy    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<CertificatemanagementPolicyAncestor>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
CertificatemanagementPolicyId string
Certificates List<CertificatemanagementPolicyCertificate>
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.
Description string
Description of the policy.
DomainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
ModTime string
(ReadOnly) The time when this managed object was last modified.
Moid string
The unique identifier of this Managed Object instance.
Name string
Name of the concrete policy.
ObjectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
Organizations List<CertificatemanagementPolicyOrganization>
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
Owners List<string>
(Array of schema.TypeString) -(ReadOnly)
Parents List<CertificatemanagementPolicyParent>
(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<CertificatemanagementPolicyPermissionResource>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
Profiles List<CertificatemanagementPolicyProfile>
An array of relationships to policyAbstractConfigProfile 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.
Tags List<CertificatemanagementPolicyTag>
This complex property has following sub-properties:
VersionContexts List<CertificatemanagementPolicyVersionContext>
(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 []CertificatemanagementPolicyAncestorArgs
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
CertificatemanagementPolicyId string
Certificates []CertificatemanagementPolicyCertificateArgs
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.
Description string
Description of the policy.
DomainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
ModTime string
(ReadOnly) The time when this managed object was last modified.
Moid string
The unique identifier of this Managed Object instance.
Name string
Name of the concrete policy.
ObjectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
Organizations []CertificatemanagementPolicyOrganizationArgs
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
Owners []string
(Array of schema.TypeString) -(ReadOnly)
Parents []CertificatemanagementPolicyParentArgs
(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 []CertificatemanagementPolicyPermissionResourceArgs
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
Profiles []CertificatemanagementPolicyProfileArgs
An array of relationships to policyAbstractConfigProfile 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.
Tags []CertificatemanagementPolicyTagArgs
This complex property has following sub-properties:
VersionContexts []CertificatemanagementPolicyVersionContextArgs
(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<CertificatemanagementPolicyAncestor>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
certificatemanagementPolicyId String
certificates List<CertificatemanagementPolicyCertificate>
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.
description String
Description of the policy.
domainGroupMoid String
(ReadOnly) The DomainGroup ID for this managed object.
modTime String
(ReadOnly) The time when this managed object was last modified.
moid String
The unique identifier of this Managed Object instance.
name String
Name of the concrete policy.
objectType String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
organizations List<CertificatemanagementPolicyOrganization>
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
owners List<String>
(Array of schema.TypeString) -(ReadOnly)
parents List<CertificatemanagementPolicyParent>
(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<CertificatemanagementPolicyPermissionResource>
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
profiles List<CertificatemanagementPolicyProfile>
An array of relationships to policyAbstractConfigProfile 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.
tags List<CertificatemanagementPolicyTag>
This complex property has following sub-properties:
versionContexts List<CertificatemanagementPolicyVersionContext>
(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 CertificatemanagementPolicyAncestor[]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
certificatemanagementPolicyId string
certificates CertificatemanagementPolicyCertificate[]
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.
description string
Description of the policy.
domainGroupMoid string
(ReadOnly) The DomainGroup ID for this managed object.
modTime string
(ReadOnly) The time when this managed object was last modified.
moid string
The unique identifier of this Managed Object instance.
name string
Name of the concrete policy.
objectType string
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
organizations CertificatemanagementPolicyOrganization[]
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
owners string[]
(Array of schema.TypeString) -(ReadOnly)
parents CertificatemanagementPolicyParent[]
(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 CertificatemanagementPolicyPermissionResource[]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
profiles CertificatemanagementPolicyProfile[]
An array of relationships to policyAbstractConfigProfile 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.
tags CertificatemanagementPolicyTag[]
This complex property has following sub-properties:
versionContexts CertificatemanagementPolicyVersionContext[]
(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[CertificatemanagementPolicyAncestorArgs]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
certificatemanagement_policy_id str
certificates Sequence[CertificatemanagementPolicyCertificateArgs]
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.
description str
Description of the policy.
domain_group_moid str
(ReadOnly) The DomainGroup ID for this managed object.
mod_time str
(ReadOnly) The time when this managed object was last modified.
moid str
The unique identifier of this Managed Object instance.
name str
Name of the concrete policy.
object_type str
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
organizations Sequence[CertificatemanagementPolicyOrganizationArgs]
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
owners Sequence[str]
(Array of schema.TypeString) -(ReadOnly)
parents Sequence[CertificatemanagementPolicyParentArgs]
(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[CertificatemanagementPolicyPermissionResourceArgs]
(ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
profiles Sequence[CertificatemanagementPolicyProfileArgs]
An array of relationships to policyAbstractConfigProfile 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.
tags Sequence[CertificatemanagementPolicyTagArgs]
This complex property has following sub-properties:
version_contexts Sequence[CertificatemanagementPolicyVersionContextArgs]
(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:
certificatemanagementPolicyId String
certificates List<Property Map>
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.
description String
Description of the policy.
domainGroupMoid String
(ReadOnly) The DomainGroup ID for this managed object.
modTime String
(ReadOnly) The time when this managed object was last modified.
moid String
The unique identifier of this Managed Object instance.
name String
Name of the concrete policy.
objectType String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
organizations List<Property Map>
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
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:
profiles List<Property Map>
An array of relationships to policyAbstractConfigProfile 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.
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

CertificatemanagementPolicyAncestor
, CertificatemanagementPolicyAncestorArgs

AdditionalProperties This property is required. string
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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'.

CertificatemanagementPolicyCertificate
, CertificatemanagementPolicyCertificateArgs

AdditionalProperties This property is required. string
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
Certificates This property is required. List<CertificatemanagementPolicyCertificateCertificate>
Certificate that is used for verifying the authorization. This complex property has following sub-properties:
ClassId This property is required. string
Enabled This property is required. bool
Enable/Disable the certificate in Certificate Management policy.
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.The enum values provides the list of concrete types that can be instantiated from this abstract type.
AdditionalProperties This property is required. string
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
Certificates This property is required. []CertificatemanagementPolicyCertificateCertificate
Certificate that is used for verifying the authorization. This complex property has following sub-properties:
ClassId This property is required. string
Enabled This property is required. bool
Enable/Disable the certificate in Certificate Management policy.
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.The enum values provides the list of concrete types that can be instantiated from this abstract type.
additionalProperties This property is required. String
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
certificates This property is required. List<CertificatemanagementPolicyCertificateCertificate>
Certificate that is used for verifying the authorization. This complex property has following sub-properties:
classId This property is required. String
enabled This property is required. Boolean
Enable/Disable the certificate in Certificate Management policy.
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.The enum values provides the list of concrete types that can be instantiated from this abstract type.
additionalProperties This property is required. string
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
certificates This property is required. CertificatemanagementPolicyCertificateCertificate[]
Certificate that is used for verifying the authorization. This complex property has following sub-properties:
classId This property is required. string
enabled This property is required. boolean
Enable/Disable the certificate in Certificate Management policy.
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.The enum values provides the list of concrete types that can be instantiated from this abstract type.
additional_properties This property is required. str
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
certificates This property is required. Sequence[CertificatemanagementPolicyCertificateCertificate]
Certificate that is used for verifying the authorization. This complex property has following sub-properties:
class_id This property is required. str
enabled This property is required. bool
Enable/Disable the certificate in Certificate Management policy.
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.The enum values provides the list of concrete types that can be instantiated from this abstract type.
additionalProperties This property is required. String
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
certificates This property is required. List<Property Map>
Certificate that is used for verifying the authorization. This complex property has following sub-properties:
classId This property is required. String
enabled This property is required. Boolean
Enable/Disable the certificate in Certificate Management policy.
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.The enum values provides the list of concrete types that can be instantiated from this abstract type.

CertificatemanagementPolicyCertificateCertificate
, CertificatemanagementPolicyCertificateCertificateArgs

AdditionalProperties This property is required. string
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
ClassId This property is required. string
Issuers This property is required. List<CertificatemanagementPolicyCertificateCertificateIssuer>
(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<CertificatemanagementPolicyCertificateCertificateSubject>
(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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
ClassId This property is required. string
Issuers This property is required. []CertificatemanagementPolicyCertificateCertificateIssuer
(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. []CertificatemanagementPolicyCertificateCertificateSubject
(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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
classId This property is required. String
issuers This property is required. List<CertificatemanagementPolicyCertificateCertificateIssuer>
(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<CertificatemanagementPolicyCertificateCertificateSubject>
(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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
classId This property is required. string
issuers This property is required. CertificatemanagementPolicyCertificateCertificateIssuer[]
(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. CertificatemanagementPolicyCertificateCertificateSubject[]
(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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
class_id This property is required. str
issuers This property is required. Sequence[CertificatemanagementPolicyCertificateCertificateIssuer]
(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[CertificatemanagementPolicyCertificateCertificateSubject]
(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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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:

CertificatemanagementPolicyCertificateCertificateIssuer
, CertificatemanagementPolicyCertificateCertificateIssuerArgs

AdditionalProperties This property is required. string
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
ClassId This property is required. string
CommonName This property is required. string
Countries This property is required. List<string>
Localities This property is required. List<string>
ObjectType This property is required. string
OrganizationalUnits This property is required. List<string>
Organizations This property is required. List<string>
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
States This property is required. List<string>
AdditionalProperties This property is required. string
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
ClassId This property is required. string
CommonName This property is required. string
Countries This property is required. []string
Localities This property is required. []string
ObjectType This property is required. string
OrganizationalUnits This property is required. []string
Organizations This property is required. []string
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
States This property is required. []string
additionalProperties This property is required. String
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
classId This property is required. String
commonName This property is required. String
countries This property is required. List<String>
localities This property is required. List<String>
objectType This property is required. String
organizationalUnits This property is required. List<String>
organizations This property is required. List<String>
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
states This property is required. List<String>
additionalProperties This property is required. string
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
classId This property is required. string
commonName This property is required. string
countries This property is required. string[]
localities This property is required. string[]
objectType This property is required. string
organizationalUnits This property is required. string[]
organizations This property is required. string[]
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
states This property is required. string[]
additional_properties This property is required. str
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
class_id This property is required. str
common_name This property is required. str
countries This property is required. Sequence[str]
localities This property is required. Sequence[str]
object_type This property is required. str
organizational_units This property is required. Sequence[str]
organizations This property is required. Sequence[str]
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
states This property is required. Sequence[str]
additionalProperties This property is required. String
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
classId This property is required. String
commonName This property is required. String
countries This property is required. List<String>
localities This property is required. List<String>
objectType This property is required. String
organizationalUnits This property is required. List<String>
organizations This property is required. List<String>
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
states This property is required. List<String>

CertificatemanagementPolicyCertificateCertificateSubject
, CertificatemanagementPolicyCertificateCertificateSubjectArgs

AdditionalProperties This property is required. string
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
ClassId This property is required. string
CommonName This property is required. string
Countries This property is required. List<string>
Localities This property is required. List<string>
ObjectType This property is required. string
OrganizationalUnits This property is required. List<string>
Organizations This property is required. List<string>
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
States This property is required. List<string>
AdditionalProperties This property is required. string
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
ClassId This property is required. string
CommonName This property is required. string
Countries This property is required. []string
Localities This property is required. []string
ObjectType This property is required. string
OrganizationalUnits This property is required. []string
Organizations This property is required. []string
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
States This property is required. []string
additionalProperties This property is required. String
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
classId This property is required. String
commonName This property is required. String
countries This property is required. List<String>
localities This property is required. List<String>
objectType This property is required. String
organizationalUnits This property is required. List<String>
organizations This property is required. List<String>
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
states This property is required. List<String>
additionalProperties This property is required. string
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
classId This property is required. string
commonName This property is required. string
countries This property is required. string[]
localities This property is required. string[]
objectType This property is required. string
organizationalUnits This property is required. string[]
organizations This property is required. string[]
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
states This property is required. string[]
additional_properties This property is required. str
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
class_id This property is required. str
common_name This property is required. str
countries This property is required. Sequence[str]
localities This property is required. Sequence[str]
object_type This property is required. str
organizational_units This property is required. Sequence[str]
organizations This property is required. Sequence[str]
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
states This property is required. Sequence[str]
additionalProperties This property is required. String
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
classId This property is required. String
commonName This property is required. String
countries This property is required. List<String>
localities This property is required. List<String>
objectType This property is required. String
organizationalUnits This property is required. List<String>
organizations This property is required. List<String>
A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
states This property is required. List<String>

CertificatemanagementPolicyOrganization
, CertificatemanagementPolicyOrganizationArgs

AdditionalProperties This property is required. string
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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'.

CertificatemanagementPolicyParent
, CertificatemanagementPolicyParentArgs

AdditionalProperties This property is required. string
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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'.

CertificatemanagementPolicyPermissionResource
, CertificatemanagementPolicyPermissionResourceArgs

AdditionalProperties This property is required. string
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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'.

CertificatemanagementPolicyProfile
, CertificatemanagementPolicyProfileArgs

AdditionalProperties This property is required. string
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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'.

CertificatemanagementPolicyTag
, CertificatemanagementPolicyTagArgs

AdditionalProperties This property is required. string
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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.

CertificatemanagementPolicyVersionContext
, CertificatemanagementPolicyVersionContextArgs

AdditionalProperties This property is required. string
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
ClassId This property is required. string
InterestedMos This property is required. List<CertificatemanagementPolicyVersionContextInterestedMo>
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<CertificatemanagementPolicyVersionContextRefMo>
(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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
ClassId This property is required. string
InterestedMos This property is required. []CertificatemanagementPolicyVersionContextInterestedMo
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. []CertificatemanagementPolicyVersionContextRefMo
(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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
classId This property is required. String
interestedMos This property is required. List<CertificatemanagementPolicyVersionContextInterestedMo>
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<CertificatemanagementPolicyVersionContextRefMo>
(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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
classId This property is required. string
interestedMos This property is required. CertificatemanagementPolicyVersionContextInterestedMo[]
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. CertificatemanagementPolicyVersionContextRefMo[]
(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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
class_id This property is required. str
interested_mos This property is required. Sequence[CertificatemanagementPolicyVersionContextInterestedMo]
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[CertificatemanagementPolicyVersionContextRefMo]
(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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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.

CertificatemanagementPolicyVersionContextInterestedMo
, CertificatemanagementPolicyVersionContextInterestedMoArgs

AdditionalProperties This property is required. string
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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'.

CertificatemanagementPolicyVersionContextRefMo
, CertificatemanagementPolicyVersionContextRefMoArgs

AdditionalProperties This property is required. string
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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
Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
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_certificatemanagement_policy can be imported using the Moid of the object, e.g.

$ pulumi import intersight:index/certificatemanagementPolicy:CertificatemanagementPolicy 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.