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

intersight.CertificatemanagementPolicy

Explore with Pulumi AI

intersight logo
intersight 1.0.64 published on Wednesday, Apr 30, 2025 by ciscodevnet

    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());
    
        }
    }
    
    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}
    

    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 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 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 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 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 String
    The unique name of the resource.
    args 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",
            },
        },
    });
    
    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"),
    		},
    	},
    })
    
    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());
    
    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",
        }])
    
    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",
        }],
    });
    
    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
    

    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
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    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 string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 String
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 str
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 String
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    Certificates List<CertificatemanagementPolicyCertificateCertificate>
    Certificate that is used for verifying the authorization. This complex property has following sub-properties:
    ClassId string
    Enabled bool
    Enable/Disable the certificate in Certificate Management policy.
    ObjectType 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 string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    Certificates []CertificatemanagementPolicyCertificateCertificate
    Certificate that is used for verifying the authorization. This complex property has following sub-properties:
    ClassId string
    Enabled bool
    Enable/Disable the certificate in Certificate Management policy.
    ObjectType 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 String
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    certificates List<CertificatemanagementPolicyCertificateCertificate>
    Certificate that is used for verifying the authorization. This complex property has following sub-properties:
    classId String
    enabled Boolean
    Enable/Disable the certificate in Certificate Management policy.
    objectType 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 string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    certificates CertificatemanagementPolicyCertificateCertificate[]
    Certificate that is used for verifying the authorization. This complex property has following sub-properties:
    classId string
    enabled boolean
    Enable/Disable the certificate in Certificate Management policy.
    objectType 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 str
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    certificates Sequence[CertificatemanagementPolicyCertificateCertificate]
    Certificate that is used for verifying the authorization. This complex property has following sub-properties:
    class_id str
    enabled bool
    Enable/Disable the certificate in Certificate Management policy.
    object_type 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 String
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    certificates List<Property Map>
    Certificate that is used for verifying the authorization. This complex property has following sub-properties:
    classId String
    enabled Boolean
    Enable/Disable the certificate in Certificate Management policy.
    objectType 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 string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    ClassId string
    Issuers List<CertificatemanagementPolicyCertificateCertificateIssuer>
    (ReadOnly) The X.509 distinguished name of the issuer of this certificate. This complex property has following sub-properties:
    NotAfter string
    (ReadOnly) The date on which the certificate's validity period ends.
    NotBefore string
    (ReadOnly) The date on which the certificate's validity period begins.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    PemCertificate string
    The base64 encoded certificate in PEM format.
    Sha256Fingerprint string
    (ReadOnly) The computed SHA-256 fingerprint of the certificate. Equivalent to 'openssl x509 -fingerprint -sha256'.
    SignatureAlgorithm string
    (ReadOnly) Signature algorithm, as specified in RFC 5280.
    Subjects List<CertificatemanagementPolicyCertificateCertificateSubject>
    (ReadOnly) The X.509 distinguished name of the subject of this certificate. This complex property has following sub-properties:
    AdditionalProperties string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    ClassId string
    Issuers []CertificatemanagementPolicyCertificateCertificateIssuer
    (ReadOnly) The X.509 distinguished name of the issuer of this certificate. This complex property has following sub-properties:
    NotAfter string
    (ReadOnly) The date on which the certificate's validity period ends.
    NotBefore string
    (ReadOnly) The date on which the certificate's validity period begins.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    PemCertificate string
    The base64 encoded certificate in PEM format.
    Sha256Fingerprint string
    (ReadOnly) The computed SHA-256 fingerprint of the certificate. Equivalent to 'openssl x509 -fingerprint -sha256'.
    SignatureAlgorithm string
    (ReadOnly) Signature algorithm, as specified in RFC 5280.
    Subjects []CertificatemanagementPolicyCertificateCertificateSubject
    (ReadOnly) The X.509 distinguished name of the subject of this certificate. This complex property has following sub-properties:
    additionalProperties String
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId String
    issuers List<CertificatemanagementPolicyCertificateCertificateIssuer>
    (ReadOnly) The X.509 distinguished name of the issuer of this certificate. This complex property has following sub-properties:
    notAfter String
    (ReadOnly) The date on which the certificate's validity period ends.
    notBefore String
    (ReadOnly) The date on which the certificate's validity period begins.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    pemCertificate String
    The base64 encoded certificate in PEM format.
    sha256Fingerprint String
    (ReadOnly) The computed SHA-256 fingerprint of the certificate. Equivalent to 'openssl x509 -fingerprint -sha256'.
    signatureAlgorithm String
    (ReadOnly) Signature algorithm, as specified in RFC 5280.
    subjects List<CertificatemanagementPolicyCertificateCertificateSubject>
    (ReadOnly) The X.509 distinguished name of the subject of this certificate. This complex property has following sub-properties:
    additionalProperties string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId string
    issuers CertificatemanagementPolicyCertificateCertificateIssuer[]
    (ReadOnly) The X.509 distinguished name of the issuer of this certificate. This complex property has following sub-properties:
    notAfter string
    (ReadOnly) The date on which the certificate's validity period ends.
    notBefore string
    (ReadOnly) The date on which the certificate's validity period begins.
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    pemCertificate string
    The base64 encoded certificate in PEM format.
    sha256Fingerprint string
    (ReadOnly) The computed SHA-256 fingerprint of the certificate. Equivalent to 'openssl x509 -fingerprint -sha256'.
    signatureAlgorithm string
    (ReadOnly) Signature algorithm, as specified in RFC 5280.
    subjects CertificatemanagementPolicyCertificateCertificateSubject[]
    (ReadOnly) The X.509 distinguished name of the subject of this certificate. This complex property has following sub-properties:
    additional_properties str
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    class_id str
    issuers Sequence[CertificatemanagementPolicyCertificateCertificateIssuer]
    (ReadOnly) The X.509 distinguished name of the issuer of this certificate. This complex property has following sub-properties:
    not_after str
    (ReadOnly) The date on which the certificate's validity period ends.
    not_before str
    (ReadOnly) The date on which the certificate's validity period begins.
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    pem_certificate str
    The base64 encoded certificate in PEM format.
    sha256_fingerprint str
    (ReadOnly) The computed SHA-256 fingerprint of the certificate. Equivalent to 'openssl x509 -fingerprint -sha256'.
    signature_algorithm str
    (ReadOnly) Signature algorithm, as specified in RFC 5280.
    subjects Sequence[CertificatemanagementPolicyCertificateCertificateSubject]
    (ReadOnly) The X.509 distinguished name of the subject of this certificate. This complex property has following sub-properties:
    additionalProperties String
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId String
    issuers List<Property Map>
    (ReadOnly) The X.509 distinguished name of the issuer of this certificate. This complex property has following sub-properties:
    notAfter String
    (ReadOnly) The date on which the certificate's validity period ends.
    notBefore String
    (ReadOnly) The date on which the certificate's validity period begins.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    pemCertificate String
    The base64 encoded certificate in PEM format.
    sha256Fingerprint String
    (ReadOnly) The computed SHA-256 fingerprint of the certificate. Equivalent to 'openssl x509 -fingerprint -sha256'.
    signatureAlgorithm String
    (ReadOnly) Signature algorithm, as specified in RFC 5280.
    subjects 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 string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    ClassId string
    CommonName string
    Countries List<string>
    Localities List<string>
    ObjectType string
    OrganizationalUnits List<string>
    Organizations 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 List<string>
    AdditionalProperties string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    ClassId string
    CommonName string
    Countries []string
    Localities []string
    ObjectType string
    OrganizationalUnits []string
    Organizations []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 []string
    additionalProperties String
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId String
    commonName String
    countries List<String>
    localities List<String>
    objectType String
    organizationalUnits List<String>
    organizations 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 List<String>
    additionalProperties string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId string
    commonName string
    countries string[]
    localities string[]
    objectType string
    organizationalUnits string[]
    organizations 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 string[]
    additional_properties str
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    class_id str
    common_name str
    countries Sequence[str]
    localities Sequence[str]
    object_type str
    organizational_units Sequence[str]
    organizations 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 Sequence[str]
    additionalProperties String
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId String
    commonName String
    countries List<String>
    localities List<String>
    objectType String
    organizationalUnits List<String>
    organizations 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 List<String>

    CertificatemanagementPolicyCertificateCertificateSubject, CertificatemanagementPolicyCertificateCertificateSubjectArgs

    AdditionalProperties string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    ClassId string
    CommonName string
    Countries List<string>
    Localities List<string>
    ObjectType string
    OrganizationalUnits List<string>
    Organizations 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 List<string>
    AdditionalProperties string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    ClassId string
    CommonName string
    Countries []string
    Localities []string
    ObjectType string
    OrganizationalUnits []string
    Organizations []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 []string
    additionalProperties String
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId String
    commonName String
    countries List<String>
    localities List<String>
    objectType String
    organizationalUnits List<String>
    organizations 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 List<String>
    additionalProperties string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId string
    commonName string
    countries string[]
    localities string[]
    objectType string
    organizationalUnits string[]
    organizations 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 string[]
    additional_properties str
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    class_id str
    common_name str
    countries Sequence[str]
    localities Sequence[str]
    object_type str
    organizational_units Sequence[str]
    organizations 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 Sequence[str]
    additionalProperties String
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId String
    commonName String
    countries List<String>
    localities List<String>
    objectType String
    organizationalUnits List<String>
    organizations 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 List<String>

    CertificatemanagementPolicyOrganization, CertificatemanagementPolicyOrganizationArgs

    AdditionalProperties string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 String
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 str
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 String
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 String
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 str
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 String
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 String
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 str
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 String
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 String
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 str
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 String
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    Key string
    The string representation of a tag key.
    Value string
    The string representation of a tag value.
    AdditionalProperties string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    Key string
    The string representation of a tag key.
    Value string
    The string representation of a tag value.
    additionalProperties String
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    key String
    The string representation of a tag key.
    value String
    The string representation of a tag value.
    additionalProperties string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    key string
    The string representation of a tag key.
    value string
    The string representation of a tag value.
    additional_properties str
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    key str
    The string representation of a tag key.
    value str
    The string representation of a tag value.
    additionalProperties String
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    key String
    The string representation of a tag key.
    value String
    The string representation of a tag value.

    CertificatemanagementPolicyVersionContext, CertificatemanagementPolicyVersionContextArgs

    AdditionalProperties string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    ClassId string
    InterestedMos List<CertificatemanagementPolicyVersionContextInterestedMo>
    This complex property has following sub-properties:
    MarkedForDeletion 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 string
    (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    RefMos List<CertificatemanagementPolicyVersionContextRefMo>
    (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
    Timestamp string
    (ReadOnly) The time this versioned Managed Object was created.
    VersionType 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 string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    ClassId string
    InterestedMos []CertificatemanagementPolicyVersionContextInterestedMo
    This complex property has following sub-properties:
    MarkedForDeletion 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 string
    (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    RefMos []CertificatemanagementPolicyVersionContextRefMo
    (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
    Timestamp string
    (ReadOnly) The time this versioned Managed Object was created.
    VersionType 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 String
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId String
    interestedMos List<CertificatemanagementPolicyVersionContextInterestedMo>
    This complex property has following sub-properties:
    markedForDeletion 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 String
    (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    refMos List<CertificatemanagementPolicyVersionContextRefMo>
    (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
    timestamp String
    (ReadOnly) The time this versioned Managed Object was created.
    versionType 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 string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId string
    interestedMos CertificatemanagementPolicyVersionContextInterestedMo[]
    This complex property has following sub-properties:
    markedForDeletion 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 string
    (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    refMos CertificatemanagementPolicyVersionContextRefMo[]
    (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
    timestamp string
    (ReadOnly) The time this versioned Managed Object was created.
    versionType 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 str
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    class_id str
    interested_mos Sequence[CertificatemanagementPolicyVersionContextInterestedMo]
    This complex property has following sub-properties:
    marked_for_deletion 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 str
    (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    ref_mos Sequence[CertificatemanagementPolicyVersionContextRefMo]
    (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
    timestamp str
    (ReadOnly) The time this versioned Managed Object was created.
    version_type 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 String
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId String
    interestedMos List<Property Map>
    This complex property has following sub-properties:
    markedForDeletion 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 String
    (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    refMos List<Property Map>
    (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
    timestamp String
    (ReadOnly) The time this versioned Managed Object was created.
    versionType 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 string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 String
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 str
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 String
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector 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 String
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 string
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 str
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector 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 String
    Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: certificatemanagement.Imc certificatemanagement.RootCaCertificate
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector 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
    

    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.
    intersight logo
    intersight 1.0.64 published on Wednesday, Apr 30, 2025 by ciscodevnet