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

intersight.LicenseLicenseInfo

Explore with Pulumi AI

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

    License state information for a specific license entitlement. Essentials license entitlement is supported currently. licenseState attribute is used for license enforcement. When license state is one of TrialPeriod, Compliance, or OutOfCompliance, the feature set defined for the license entitlement is granted to the customer.

    Usage Example

    Resource Creation

    import * as pulumi from "@pulumi/pulumi";
    import * as intersight from "@pulumi/intersight";
    
    const licenseLicenseInfo1 = new intersight.LicenseLicenseInfo("licenseLicenseInfo1", {
        evaluationPeriod: 30,
        extraEvaluation: 15,
        tags: [{
            key: "main_license",
            value: "license_license_info1",
        }],
    });
    
    import pulumi
    import pulumi_intersight as intersight
    
    license_license_info1 = intersight.LicenseLicenseInfo("licenseLicenseInfo1",
        evaluation_period=30,
        extra_evaluation=15,
        tags=[{
            "key": "main_license",
            "value": "license_license_info1",
        }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/intersight/intersight"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := intersight.NewLicenseLicenseInfo(ctx, "licenseLicenseInfo1", &intersight.LicenseLicenseInfoArgs{
    			EvaluationPeriod: pulumi.Float64(30),
    			ExtraEvaluation:  pulumi.Float64(15),
    			Tags: intersight.LicenseLicenseInfoTagArray{
    				&intersight.LicenseLicenseInfoTagArgs{
    					Key:   pulumi.String("main_license"),
    					Value: pulumi.String("license_license_info1"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Intersight = Pulumi.Intersight;
    
    return await Deployment.RunAsync(() => 
    {
        var licenseLicenseInfo1 = new Intersight.LicenseLicenseInfo("licenseLicenseInfo1", new()
        {
            EvaluationPeriod = 30,
            ExtraEvaluation = 15,
            Tags = new[]
            {
                new Intersight.Inputs.LicenseLicenseInfoTagArgs
                {
                    Key = "main_license",
                    Value = "license_license_info1",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.intersight.LicenseLicenseInfo;
    import com.pulumi.intersight.LicenseLicenseInfoArgs;
    import com.pulumi.intersight.inputs.LicenseLicenseInfoTagArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var licenseLicenseInfo1 = new LicenseLicenseInfo("licenseLicenseInfo1", LicenseLicenseInfoArgs.builder()
                .evaluationPeriod(30)
                .extraEvaluation(15)
                .tags(LicenseLicenseInfoTagArgs.builder()
                    .key("main_license")
                    .value("license_license_info1")
                    .build())
                .build());
    
        }
    }
    
    resources:
      licenseLicenseInfo1:
        type: intersight:LicenseLicenseInfo
        properties:
          evaluationPeriod: 30
          extraEvaluation: 15
          tags:
            - key: main_license
              value: license_license_info1
    

    Create LicenseLicenseInfo Resource

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

    Constructor syntax

    new LicenseLicenseInfo(name: string, args?: LicenseLicenseInfoArgs, opts?: CustomResourceOptions);
    @overload
    def LicenseLicenseInfo(resource_name: str,
                           args: Optional[LicenseLicenseInfoArgs] = None,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def LicenseLicenseInfo(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           account_license_datas: Optional[Sequence[LicenseLicenseInfoAccountLicenseDataArgs]] = None,
                           account_moid: Optional[str] = None,
                           active_admin: Optional[bool] = None,
                           additional_properties: Optional[str] = None,
                           ancestors: Optional[Sequence[LicenseLicenseInfoAncestorArgs]] = None,
                           balance: Optional[float] = None,
                           class_id: Optional[str] = None,
                           create_time: Optional[str] = None,
                           days_left: Optional[float] = None,
                           domain_group_moid: Optional[str] = None,
                           end_time: Optional[str] = None,
                           enforce_mode: Optional[str] = None,
                           error_desc: Optional[str] = None,
                           evaluation_period: Optional[float] = None,
                           expire_time: Optional[str] = None,
                           extra_evaluation: Optional[float] = None,
                           license_count: Optional[float] = None,
                           license_count_purchased: Optional[float] = None,
                           license_license_info_id: Optional[str] = None,
                           license_state: Optional[str] = None,
                           license_type: Optional[str] = None,
                           mod_time: Optional[str] = None,
                           moid: Optional[str] = None,
                           net_substitution: Optional[float] = None,
                           object_type: Optional[str] = None,
                           owners: Optional[Sequence[str]] = None,
                           parents: Optional[Sequence[LicenseLicenseInfoParentArgs]] = None,
                           permission_resources: Optional[Sequence[LicenseLicenseInfoPermissionResourceArgs]] = None,
                           shared_scope: Optional[str] = None,
                           start_time: Optional[str] = None,
                           subscription_id: Optional[str] = None,
                           substituted_licenses: Optional[Sequence[LicenseLicenseInfoSubstitutedLicenseArgs]] = None,
                           tags: Optional[Sequence[LicenseLicenseInfoTagArgs]] = None,
                           trial_admin: Optional[bool] = None,
                           version_contexts: Optional[Sequence[LicenseLicenseInfoVersionContextArgs]] = None)
    func NewLicenseLicenseInfo(ctx *Context, name string, args *LicenseLicenseInfoArgs, opts ...ResourceOption) (*LicenseLicenseInfo, error)
    public LicenseLicenseInfo(string name, LicenseLicenseInfoArgs? args = null, CustomResourceOptions? opts = null)
    public LicenseLicenseInfo(String name, LicenseLicenseInfoArgs args)
    public LicenseLicenseInfo(String name, LicenseLicenseInfoArgs args, CustomResourceOptions options)
    
    type: intersight:LicenseLicenseInfo
    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 LicenseLicenseInfoArgs
    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 LicenseLicenseInfoArgs
    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 LicenseLicenseInfoArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LicenseLicenseInfoArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LicenseLicenseInfoArgs
    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 licenseLicenseInfoResource = new Intersight.LicenseLicenseInfo("licenseLicenseInfoResource", new()
    {
        AccountLicenseDatas = new[]
        {
            new Intersight.Inputs.LicenseLicenseInfoAccountLicenseDataArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        AccountMoid = "string",
        ActiveAdmin = false,
        AdditionalProperties = "string",
        Ancestors = new[]
        {
            new Intersight.Inputs.LicenseLicenseInfoAncestorArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        Balance = 0,
        ClassId = "string",
        CreateTime = "string",
        DaysLeft = 0,
        DomainGroupMoid = "string",
        EndTime = "string",
        EnforceMode = "string",
        ErrorDesc = "string",
        EvaluationPeriod = 0,
        ExpireTime = "string",
        ExtraEvaluation = 0,
        LicenseCount = 0,
        LicenseCountPurchased = 0,
        LicenseLicenseInfoId = "string",
        LicenseState = "string",
        LicenseType = "string",
        ModTime = "string",
        Moid = "string",
        NetSubstitution = 0,
        ObjectType = "string",
        Owners = new[]
        {
            "string",
        },
        Parents = new[]
        {
            new Intersight.Inputs.LicenseLicenseInfoParentArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        PermissionResources = new[]
        {
            new Intersight.Inputs.LicenseLicenseInfoPermissionResourceArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        SharedScope = "string",
        StartTime = "string",
        SubscriptionId = "string",
        SubstitutedLicenses = new[]
        {
            new Intersight.Inputs.LicenseLicenseInfoSubstitutedLicenseArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                ObjectType = "string",
                SubstitutedLicense = "string",
                SubstitutedQuantity = 0,
                SubstitutionType = "string",
            },
        },
        Tags = new[]
        {
            new Intersight.Inputs.LicenseLicenseInfoTagArgs
            {
                AdditionalProperties = "string",
                Key = "string",
                Value = "string",
            },
        },
        TrialAdmin = false,
        VersionContexts = new[]
        {
            new Intersight.Inputs.LicenseLicenseInfoVersionContextArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                InterestedMos = new[]
                {
                    new Intersight.Inputs.LicenseLicenseInfoVersionContextInterestedMoArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        Moid = "string",
                        ObjectType = "string",
                        Selector = "string",
                    },
                },
                MarkedForDeletion = false,
                NrVersion = "string",
                ObjectType = "string",
                RefMos = new[]
                {
                    new Intersight.Inputs.LicenseLicenseInfoVersionContextRefMoArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        Moid = "string",
                        ObjectType = "string",
                        Selector = "string",
                    },
                },
                Timestamp = "string",
                VersionType = "string",
            },
        },
    });
    
    example, err := intersight.NewLicenseLicenseInfo(ctx, "licenseLicenseInfoResource", &intersight.LicenseLicenseInfoArgs{
    	AccountLicenseDatas: intersight.LicenseLicenseInfoAccountLicenseDataArray{
    		&intersight.LicenseLicenseInfoAccountLicenseDataArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	AccountMoid:          pulumi.String("string"),
    	ActiveAdmin:          pulumi.Bool(false),
    	AdditionalProperties: pulumi.String("string"),
    	Ancestors: intersight.LicenseLicenseInfoAncestorArray{
    		&intersight.LicenseLicenseInfoAncestorArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	Balance:               pulumi.Float64(0),
    	ClassId:               pulumi.String("string"),
    	CreateTime:            pulumi.String("string"),
    	DaysLeft:              pulumi.Float64(0),
    	DomainGroupMoid:       pulumi.String("string"),
    	EndTime:               pulumi.String("string"),
    	EnforceMode:           pulumi.String("string"),
    	ErrorDesc:             pulumi.String("string"),
    	EvaluationPeriod:      pulumi.Float64(0),
    	ExpireTime:            pulumi.String("string"),
    	ExtraEvaluation:       pulumi.Float64(0),
    	LicenseCount:          pulumi.Float64(0),
    	LicenseCountPurchased: pulumi.Float64(0),
    	LicenseLicenseInfoId:  pulumi.String("string"),
    	LicenseState:          pulumi.String("string"),
    	LicenseType:           pulumi.String("string"),
    	ModTime:               pulumi.String("string"),
    	Moid:                  pulumi.String("string"),
    	NetSubstitution:       pulumi.Float64(0),
    	ObjectType:            pulumi.String("string"),
    	Owners: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Parents: intersight.LicenseLicenseInfoParentArray{
    		&intersight.LicenseLicenseInfoParentArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	PermissionResources: intersight.LicenseLicenseInfoPermissionResourceArray{
    		&intersight.LicenseLicenseInfoPermissionResourceArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	SharedScope:    pulumi.String("string"),
    	StartTime:      pulumi.String("string"),
    	SubscriptionId: pulumi.String("string"),
    	SubstitutedLicenses: intersight.LicenseLicenseInfoSubstitutedLicenseArray{
    		&intersight.LicenseLicenseInfoSubstitutedLicenseArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			SubstitutedLicense:   pulumi.String("string"),
    			SubstitutedQuantity:  pulumi.Float64(0),
    			SubstitutionType:     pulumi.String("string"),
    		},
    	},
    	Tags: intersight.LicenseLicenseInfoTagArray{
    		&intersight.LicenseLicenseInfoTagArgs{
    			AdditionalProperties: pulumi.String("string"),
    			Key:                  pulumi.String("string"),
    			Value:                pulumi.String("string"),
    		},
    	},
    	TrialAdmin: pulumi.Bool(false),
    	VersionContexts: intersight.LicenseLicenseInfoVersionContextArray{
    		&intersight.LicenseLicenseInfoVersionContextArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			InterestedMos: intersight.LicenseLicenseInfoVersionContextInterestedMoArray{
    				&intersight.LicenseLicenseInfoVersionContextInterestedMoArgs{
    					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.LicenseLicenseInfoVersionContextRefMoArray{
    				&intersight.LicenseLicenseInfoVersionContextRefMoArgs{
    					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 licenseLicenseInfoResource = new LicenseLicenseInfo("licenseLicenseInfoResource", LicenseLicenseInfoArgs.builder()
        .accountLicenseDatas(LicenseLicenseInfoAccountLicenseDataArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .accountMoid("string")
        .activeAdmin(false)
        .additionalProperties("string")
        .ancestors(LicenseLicenseInfoAncestorArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .balance(0)
        .classId("string")
        .createTime("string")
        .daysLeft(0)
        .domainGroupMoid("string")
        .endTime("string")
        .enforceMode("string")
        .errorDesc("string")
        .evaluationPeriod(0)
        .expireTime("string")
        .extraEvaluation(0)
        .licenseCount(0)
        .licenseCountPurchased(0)
        .licenseLicenseInfoId("string")
        .licenseState("string")
        .licenseType("string")
        .modTime("string")
        .moid("string")
        .netSubstitution(0)
        .objectType("string")
        .owners("string")
        .parents(LicenseLicenseInfoParentArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .permissionResources(LicenseLicenseInfoPermissionResourceArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .sharedScope("string")
        .startTime("string")
        .subscriptionId("string")
        .substitutedLicenses(LicenseLicenseInfoSubstitutedLicenseArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .objectType("string")
            .substitutedLicense("string")
            .substitutedQuantity(0)
            .substitutionType("string")
            .build())
        .tags(LicenseLicenseInfoTagArgs.builder()
            .additionalProperties("string")
            .key("string")
            .value("string")
            .build())
        .trialAdmin(false)
        .versionContexts(LicenseLicenseInfoVersionContextArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .interestedMos(LicenseLicenseInfoVersionContextInterestedMoArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .moid("string")
                .objectType("string")
                .selector("string")
                .build())
            .markedForDeletion(false)
            .nrVersion("string")
            .objectType("string")
            .refMos(LicenseLicenseInfoVersionContextRefMoArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .moid("string")
                .objectType("string")
                .selector("string")
                .build())
            .timestamp("string")
            .versionType("string")
            .build())
        .build());
    
    license_license_info_resource = intersight.LicenseLicenseInfo("licenseLicenseInfoResource",
        account_license_datas=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        account_moid="string",
        active_admin=False,
        additional_properties="string",
        ancestors=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        balance=0,
        class_id="string",
        create_time="string",
        days_left=0,
        domain_group_moid="string",
        end_time="string",
        enforce_mode="string",
        error_desc="string",
        evaluation_period=0,
        expire_time="string",
        extra_evaluation=0,
        license_count=0,
        license_count_purchased=0,
        license_license_info_id="string",
        license_state="string",
        license_type="string",
        mod_time="string",
        moid="string",
        net_substitution=0,
        object_type="string",
        owners=["string"],
        parents=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        permission_resources=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        shared_scope="string",
        start_time="string",
        subscription_id="string",
        substituted_licenses=[{
            "additional_properties": "string",
            "class_id": "string",
            "object_type": "string",
            "substituted_license": "string",
            "substituted_quantity": 0,
            "substitution_type": "string",
        }],
        tags=[{
            "additional_properties": "string",
            "key": "string",
            "value": "string",
        }],
        trial_admin=False,
        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 licenseLicenseInfoResource = new intersight.LicenseLicenseInfo("licenseLicenseInfoResource", {
        accountLicenseDatas: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        accountMoid: "string",
        activeAdmin: false,
        additionalProperties: "string",
        ancestors: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        balance: 0,
        classId: "string",
        createTime: "string",
        daysLeft: 0,
        domainGroupMoid: "string",
        endTime: "string",
        enforceMode: "string",
        errorDesc: "string",
        evaluationPeriod: 0,
        expireTime: "string",
        extraEvaluation: 0,
        licenseCount: 0,
        licenseCountPurchased: 0,
        licenseLicenseInfoId: "string",
        licenseState: "string",
        licenseType: "string",
        modTime: "string",
        moid: "string",
        netSubstitution: 0,
        objectType: "string",
        owners: ["string"],
        parents: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        permissionResources: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        sharedScope: "string",
        startTime: "string",
        subscriptionId: "string",
        substitutedLicenses: [{
            additionalProperties: "string",
            classId: "string",
            objectType: "string",
            substitutedLicense: "string",
            substitutedQuantity: 0,
            substitutionType: "string",
        }],
        tags: [{
            additionalProperties: "string",
            key: "string",
            value: "string",
        }],
        trialAdmin: false,
        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:LicenseLicenseInfo
    properties:
        accountLicenseDatas:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        accountMoid: string
        activeAdmin: false
        additionalProperties: string
        ancestors:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        balance: 0
        classId: string
        createTime: string
        daysLeft: 0
        domainGroupMoid: string
        endTime: string
        enforceMode: string
        errorDesc: string
        evaluationPeriod: 0
        expireTime: string
        extraEvaluation: 0
        licenseCount: 0
        licenseCountPurchased: 0
        licenseLicenseInfoId: string
        licenseState: string
        licenseType: string
        modTime: string
        moid: string
        netSubstitution: 0
        objectType: string
        owners:
            - string
        parents:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        permissionResources:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        sharedScope: string
        startTime: string
        subscriptionId: string
        substitutedLicenses:
            - additionalProperties: string
              classId: string
              objectType: string
              substitutedLicense: string
              substitutedQuantity: 0
              substitutionType: string
        tags:
            - additionalProperties: string
              key: string
              value: string
        trialAdmin: false
        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
    

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

    AccountLicenseDatas List<LicenseLicenseInfoAccountLicenseData>
    A reference to a licenseAccountLicenseData resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    ActiveAdmin bool
    (ReadOnly) The license administrative state.Set this property to 'true' to activate the license entitlements.
    AdditionalProperties string
    Ancestors List<LicenseLicenseInfoAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    Balance double
    (ReadOnly) The total balance we have for licenses.
    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.
    DaysLeft double
    (ReadOnly) The number of days left for licenseState to stay in TrialPeriod or OutOfCompliance state.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    EndTime string
    (ReadOnly) The date and time when the trial period expires.The value of the 'endTime' property is set when the account enters the TrialPeriod or OutOfCompliance state.
    EnforceMode string
    (ReadOnly) The entitlement mode reported by Cisco Smart Software Manager.
    ErrorDesc string
    (ReadOnly) The detailed error message when there is any error related to this licensing entitlement.
    EvaluationPeriod double
    The default Trial or Grace period customer is entitled to.
    ExpireTime string
    (ReadOnly) The date and time when the next expiration time of license subscription.
    ExtraEvaluation double
    The number of days the trial Trial or Grace period is extended.The trial or grace period can be extended once.
    LicenseCount double
    (ReadOnly) The total number of license consumed in the Intersight account.
    LicenseCountPurchased double
    (ReadOnly) The total number of license purchased from cisco.
    LicenseLicenseInfoId string
    LicenseState string
    (ReadOnly) The license state defined by Intersight.The value may be one of NotLicensed, TrialPeriod, OutOfCompliance, Compliance, GraceExpired, or TrialExpired.* NotLicensed - The license token is neither activated nor registered.* GraceExpired - The license grace period has expired.* TrialPeriod - The 90 days of trial period.* OutOfCompliance - The license is out of compliance.* Compliance - The license is in compliance.* TrialExpired - The trial period of 90 days has expired.
    LicenseType string
    (ReadOnly) The name of the Intersight license entitlement.For example, this property may be set to 'Essential'.* Base - Base as a License type. It is default license type.* Essential - Essential as a License type.* Standard - Standard as a License type.* Advantage - Advantage as a License type.* Premier - Premier as a License type.* IWO-Essential - IWO-Essential as a License type.* IWO-Advantage - IWO-Advantage as a License type.* IWO-Premier - IWO-Premier as a License type.* IKS-Advantage - IKS-Advantage as a License type.* INC-Premier-1GFixed - Premier 1G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-10GFixed - Premier 10G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-100GFixed - Premier 100G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-Mod4Slot - Premier Modular 4 slot license tier for Intersight Nexus Cloud.* INC-Premier-Mod8Slot - Premier Modular 8 slot license tier for Intersight Nexus Cloud.* INC-Premier-D2OpsFixed - Premier D2Ops fixed license tier for Intersight Nexus Cloud.* INC-Premier-D2OpsMod - Premier D2Ops modular license tier for Intersight Nexus Cloud.* INC-Premier-CentralizedMod8Slot - Premier modular license tier of switch type CentralizedMod8Slot for Intersight Nexus Cloud.* INC-Premier-DistributedMod8Slot - Premier modular license tier of switch type DistributedMod8Slot for Intersight Nexus Cloud.* ERP-Advantage - Advantage license tier for ERP workflows.* IntersightTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode Intersight tiers.* IWOTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode IKS tiers.* IKSTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode IWO tiers.* INCTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode Nexus tiers.
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    NetSubstitution double
    (ReadOnly) The total number of substituted licenses added or removed.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Owners List<string>
    (Array of schema.TypeString) -(ReadOnly)
    Parents List<LicenseLicenseInfoParent>
    (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<LicenseLicenseInfoPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    SharedScope string
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    StartTime string
    (ReadOnly) The date and time when the licenseState entered the TrialPeriod or OutOfCompliance state.
    SubscriptionId string
    (ReadOnly) The id of license subscription.
    SubstitutedLicenses List<LicenseLicenseInfoSubstitutedLicense>
    This complex property has following sub-properties:
    Tags List<LicenseLicenseInfoTag>
    This complex property has following sub-properties:
    TrialAdmin bool
    (ReadOnly) The administrative state of the trial license.When the LicenseState is set to 'NotLicensed', 'trialAdmin' can be set to true to start the trial period,i.e. licenseState is set to be TrialPeriod.
    VersionContexts List<LicenseLicenseInfoVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    AccountLicenseDatas []LicenseLicenseInfoAccountLicenseDataArgs
    A reference to a licenseAccountLicenseData resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    ActiveAdmin bool
    (ReadOnly) The license administrative state.Set this property to 'true' to activate the license entitlements.
    AdditionalProperties string
    Ancestors []LicenseLicenseInfoAncestorArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    Balance float64
    (ReadOnly) The total balance we have for licenses.
    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.
    DaysLeft float64
    (ReadOnly) The number of days left for licenseState to stay in TrialPeriod or OutOfCompliance state.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    EndTime string
    (ReadOnly) The date and time when the trial period expires.The value of the 'endTime' property is set when the account enters the TrialPeriod or OutOfCompliance state.
    EnforceMode string
    (ReadOnly) The entitlement mode reported by Cisco Smart Software Manager.
    ErrorDesc string
    (ReadOnly) The detailed error message when there is any error related to this licensing entitlement.
    EvaluationPeriod float64
    The default Trial or Grace period customer is entitled to.
    ExpireTime string
    (ReadOnly) The date and time when the next expiration time of license subscription.
    ExtraEvaluation float64
    The number of days the trial Trial or Grace period is extended.The trial or grace period can be extended once.
    LicenseCount float64
    (ReadOnly) The total number of license consumed in the Intersight account.
    LicenseCountPurchased float64
    (ReadOnly) The total number of license purchased from cisco.
    LicenseLicenseInfoId string
    LicenseState string
    (ReadOnly) The license state defined by Intersight.The value may be one of NotLicensed, TrialPeriod, OutOfCompliance, Compliance, GraceExpired, or TrialExpired.* NotLicensed - The license token is neither activated nor registered.* GraceExpired - The license grace period has expired.* TrialPeriod - The 90 days of trial period.* OutOfCompliance - The license is out of compliance.* Compliance - The license is in compliance.* TrialExpired - The trial period of 90 days has expired.
    LicenseType string
    (ReadOnly) The name of the Intersight license entitlement.For example, this property may be set to 'Essential'.* Base - Base as a License type. It is default license type.* Essential - Essential as a License type.* Standard - Standard as a License type.* Advantage - Advantage as a License type.* Premier - Premier as a License type.* IWO-Essential - IWO-Essential as a License type.* IWO-Advantage - IWO-Advantage as a License type.* IWO-Premier - IWO-Premier as a License type.* IKS-Advantage - IKS-Advantage as a License type.* INC-Premier-1GFixed - Premier 1G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-10GFixed - Premier 10G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-100GFixed - Premier 100G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-Mod4Slot - Premier Modular 4 slot license tier for Intersight Nexus Cloud.* INC-Premier-Mod8Slot - Premier Modular 8 slot license tier for Intersight Nexus Cloud.* INC-Premier-D2OpsFixed - Premier D2Ops fixed license tier for Intersight Nexus Cloud.* INC-Premier-D2OpsMod - Premier D2Ops modular license tier for Intersight Nexus Cloud.* INC-Premier-CentralizedMod8Slot - Premier modular license tier of switch type CentralizedMod8Slot for Intersight Nexus Cloud.* INC-Premier-DistributedMod8Slot - Premier modular license tier of switch type DistributedMod8Slot for Intersight Nexus Cloud.* ERP-Advantage - Advantage license tier for ERP workflows.* IntersightTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode Intersight tiers.* IWOTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode IKS tiers.* IKSTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode IWO tiers.* INCTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode Nexus tiers.
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    NetSubstitution float64
    (ReadOnly) The total number of substituted licenses added or removed.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Owners []string
    (Array of schema.TypeString) -(ReadOnly)
    Parents []LicenseLicenseInfoParentArgs
    (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 []LicenseLicenseInfoPermissionResourceArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    SharedScope string
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    StartTime string
    (ReadOnly) The date and time when the licenseState entered the TrialPeriod or OutOfCompliance state.
    SubscriptionId string
    (ReadOnly) The id of license subscription.
    SubstitutedLicenses []LicenseLicenseInfoSubstitutedLicenseArgs
    This complex property has following sub-properties:
    Tags []LicenseLicenseInfoTagArgs
    This complex property has following sub-properties:
    TrialAdmin bool
    (ReadOnly) The administrative state of the trial license.When the LicenseState is set to 'NotLicensed', 'trialAdmin' can be set to true to start the trial period,i.e. licenseState is set to be TrialPeriod.
    VersionContexts []LicenseLicenseInfoVersionContextArgs
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accountLicenseDatas List<LicenseLicenseInfoAccountLicenseData>
    A reference to a licenseAccountLicenseData resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    activeAdmin Boolean
    (ReadOnly) The license administrative state.Set this property to 'true' to activate the license entitlements.
    additionalProperties String
    ancestors List<LicenseLicenseInfoAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    balance Double
    (ReadOnly) The total balance we have for licenses.
    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.
    daysLeft Double
    (ReadOnly) The number of days left for licenseState to stay in TrialPeriod or OutOfCompliance state.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    endTime String
    (ReadOnly) The date and time when the trial period expires.The value of the 'endTime' property is set when the account enters the TrialPeriod or OutOfCompliance state.
    enforceMode String
    (ReadOnly) The entitlement mode reported by Cisco Smart Software Manager.
    errorDesc String
    (ReadOnly) The detailed error message when there is any error related to this licensing entitlement.
    evaluationPeriod Double
    The default Trial or Grace period customer is entitled to.
    expireTime String
    (ReadOnly) The date and time when the next expiration time of license subscription.
    extraEvaluation Double
    The number of days the trial Trial or Grace period is extended.The trial or grace period can be extended once.
    licenseCount Double
    (ReadOnly) The total number of license consumed in the Intersight account.
    licenseCountPurchased Double
    (ReadOnly) The total number of license purchased from cisco.
    licenseLicenseInfoId String
    licenseState String
    (ReadOnly) The license state defined by Intersight.The value may be one of NotLicensed, TrialPeriod, OutOfCompliance, Compliance, GraceExpired, or TrialExpired.* NotLicensed - The license token is neither activated nor registered.* GraceExpired - The license grace period has expired.* TrialPeriod - The 90 days of trial period.* OutOfCompliance - The license is out of compliance.* Compliance - The license is in compliance.* TrialExpired - The trial period of 90 days has expired.
    licenseType String
    (ReadOnly) The name of the Intersight license entitlement.For example, this property may be set to 'Essential'.* Base - Base as a License type. It is default license type.* Essential - Essential as a License type.* Standard - Standard as a License type.* Advantage - Advantage as a License type.* Premier - Premier as a License type.* IWO-Essential - IWO-Essential as a License type.* IWO-Advantage - IWO-Advantage as a License type.* IWO-Premier - IWO-Premier as a License type.* IKS-Advantage - IKS-Advantage as a License type.* INC-Premier-1GFixed - Premier 1G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-10GFixed - Premier 10G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-100GFixed - Premier 100G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-Mod4Slot - Premier Modular 4 slot license tier for Intersight Nexus Cloud.* INC-Premier-Mod8Slot - Premier Modular 8 slot license tier for Intersight Nexus Cloud.* INC-Premier-D2OpsFixed - Premier D2Ops fixed license tier for Intersight Nexus Cloud.* INC-Premier-D2OpsMod - Premier D2Ops modular license tier for Intersight Nexus Cloud.* INC-Premier-CentralizedMod8Slot - Premier modular license tier of switch type CentralizedMod8Slot for Intersight Nexus Cloud.* INC-Premier-DistributedMod8Slot - Premier modular license tier of switch type DistributedMod8Slot for Intersight Nexus Cloud.* ERP-Advantage - Advantage license tier for ERP workflows.* IntersightTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode Intersight tiers.* IWOTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode IKS tiers.* IKSTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode IWO tiers.* INCTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode Nexus tiers.
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    netSubstitution Double
    (ReadOnly) The total number of substituted licenses added or removed.
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    owners List<String>
    (Array of schema.TypeString) -(ReadOnly)
    parents List<LicenseLicenseInfoParent>
    (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<LicenseLicenseInfoPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    sharedScope String
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    startTime String
    (ReadOnly) The date and time when the licenseState entered the TrialPeriod or OutOfCompliance state.
    subscriptionId String
    (ReadOnly) The id of license subscription.
    substitutedLicenses List<LicenseLicenseInfoSubstitutedLicense>
    This complex property has following sub-properties:
    tags List<LicenseLicenseInfoTag>
    This complex property has following sub-properties:
    trialAdmin Boolean
    (ReadOnly) The administrative state of the trial license.When the LicenseState is set to 'NotLicensed', 'trialAdmin' can be set to true to start the trial period,i.e. licenseState is set to be TrialPeriod.
    versionContexts List<LicenseLicenseInfoVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accountLicenseDatas LicenseLicenseInfoAccountLicenseData[]
    A reference to a licenseAccountLicenseData resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    accountMoid string
    (ReadOnly) The Account ID for this managed object.
    activeAdmin boolean
    (ReadOnly) The license administrative state.Set this property to 'true' to activate the license entitlements.
    additionalProperties string
    ancestors LicenseLicenseInfoAncestor[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    balance number
    (ReadOnly) The total balance we have for licenses.
    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.
    daysLeft number
    (ReadOnly) The number of days left for licenseState to stay in TrialPeriod or OutOfCompliance state.
    domainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    endTime string
    (ReadOnly) The date and time when the trial period expires.The value of the 'endTime' property is set when the account enters the TrialPeriod or OutOfCompliance state.
    enforceMode string
    (ReadOnly) The entitlement mode reported by Cisco Smart Software Manager.
    errorDesc string
    (ReadOnly) The detailed error message when there is any error related to this licensing entitlement.
    evaluationPeriod number
    The default Trial or Grace period customer is entitled to.
    expireTime string
    (ReadOnly) The date and time when the next expiration time of license subscription.
    extraEvaluation number
    The number of days the trial Trial or Grace period is extended.The trial or grace period can be extended once.
    licenseCount number
    (ReadOnly) The total number of license consumed in the Intersight account.
    licenseCountPurchased number
    (ReadOnly) The total number of license purchased from cisco.
    licenseLicenseInfoId string
    licenseState string
    (ReadOnly) The license state defined by Intersight.The value may be one of NotLicensed, TrialPeriod, OutOfCompliance, Compliance, GraceExpired, or TrialExpired.* NotLicensed - The license token is neither activated nor registered.* GraceExpired - The license grace period has expired.* TrialPeriod - The 90 days of trial period.* OutOfCompliance - The license is out of compliance.* Compliance - The license is in compliance.* TrialExpired - The trial period of 90 days has expired.
    licenseType string
    (ReadOnly) The name of the Intersight license entitlement.For example, this property may be set to 'Essential'.* Base - Base as a License type. It is default license type.* Essential - Essential as a License type.* Standard - Standard as a License type.* Advantage - Advantage as a License type.* Premier - Premier as a License type.* IWO-Essential - IWO-Essential as a License type.* IWO-Advantage - IWO-Advantage as a License type.* IWO-Premier - IWO-Premier as a License type.* IKS-Advantage - IKS-Advantage as a License type.* INC-Premier-1GFixed - Premier 1G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-10GFixed - Premier 10G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-100GFixed - Premier 100G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-Mod4Slot - Premier Modular 4 slot license tier for Intersight Nexus Cloud.* INC-Premier-Mod8Slot - Premier Modular 8 slot license tier for Intersight Nexus Cloud.* INC-Premier-D2OpsFixed - Premier D2Ops fixed license tier for Intersight Nexus Cloud.* INC-Premier-D2OpsMod - Premier D2Ops modular license tier for Intersight Nexus Cloud.* INC-Premier-CentralizedMod8Slot - Premier modular license tier of switch type CentralizedMod8Slot for Intersight Nexus Cloud.* INC-Premier-DistributedMod8Slot - Premier modular license tier of switch type DistributedMod8Slot for Intersight Nexus Cloud.* ERP-Advantage - Advantage license tier for ERP workflows.* IntersightTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode Intersight tiers.* IWOTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode IKS tiers.* IKSTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode IWO tiers.* INCTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode Nexus tiers.
    modTime string
    (ReadOnly) The time when this managed object was last modified.
    moid string
    The unique identifier of this Managed Object instance.
    netSubstitution number
    (ReadOnly) The total number of substituted licenses added or removed.
    objectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    owners string[]
    (Array of schema.TypeString) -(ReadOnly)
    parents LicenseLicenseInfoParent[]
    (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 LicenseLicenseInfoPermissionResource[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    sharedScope string
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    startTime string
    (ReadOnly) The date and time when the licenseState entered the TrialPeriod or OutOfCompliance state.
    subscriptionId string
    (ReadOnly) The id of license subscription.
    substitutedLicenses LicenseLicenseInfoSubstitutedLicense[]
    This complex property has following sub-properties:
    tags LicenseLicenseInfoTag[]
    This complex property has following sub-properties:
    trialAdmin boolean
    (ReadOnly) The administrative state of the trial license.When the LicenseState is set to 'NotLicensed', 'trialAdmin' can be set to true to start the trial period,i.e. licenseState is set to be TrialPeriod.
    versionContexts LicenseLicenseInfoVersionContext[]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    account_license_datas Sequence[LicenseLicenseInfoAccountLicenseDataArgs]
    A reference to a licenseAccountLicenseData resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    account_moid str
    (ReadOnly) The Account ID for this managed object.
    active_admin bool
    (ReadOnly) The license administrative state.Set this property to 'true' to activate the license entitlements.
    additional_properties str
    ancestors Sequence[LicenseLicenseInfoAncestorArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    balance float
    (ReadOnly) The total balance we have for licenses.
    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.
    days_left float
    (ReadOnly) The number of days left for licenseState to stay in TrialPeriod or OutOfCompliance state.
    domain_group_moid str
    (ReadOnly) The DomainGroup ID for this managed object.
    end_time str
    (ReadOnly) The date and time when the trial period expires.The value of the 'endTime' property is set when the account enters the TrialPeriod or OutOfCompliance state.
    enforce_mode str
    (ReadOnly) The entitlement mode reported by Cisco Smart Software Manager.
    error_desc str
    (ReadOnly) The detailed error message when there is any error related to this licensing entitlement.
    evaluation_period float
    The default Trial or Grace period customer is entitled to.
    expire_time str
    (ReadOnly) The date and time when the next expiration time of license subscription.
    extra_evaluation float
    The number of days the trial Trial or Grace period is extended.The trial or grace period can be extended once.
    license_count float
    (ReadOnly) The total number of license consumed in the Intersight account.
    license_count_purchased float
    (ReadOnly) The total number of license purchased from cisco.
    license_license_info_id str
    license_state str
    (ReadOnly) The license state defined by Intersight.The value may be one of NotLicensed, TrialPeriod, OutOfCompliance, Compliance, GraceExpired, or TrialExpired.* NotLicensed - The license token is neither activated nor registered.* GraceExpired - The license grace period has expired.* TrialPeriod - The 90 days of trial period.* OutOfCompliance - The license is out of compliance.* Compliance - The license is in compliance.* TrialExpired - The trial period of 90 days has expired.
    license_type str
    (ReadOnly) The name of the Intersight license entitlement.For example, this property may be set to 'Essential'.* Base - Base as a License type. It is default license type.* Essential - Essential as a License type.* Standard - Standard as a License type.* Advantage - Advantage as a License type.* Premier - Premier as a License type.* IWO-Essential - IWO-Essential as a License type.* IWO-Advantage - IWO-Advantage as a License type.* IWO-Premier - IWO-Premier as a License type.* IKS-Advantage - IKS-Advantage as a License type.* INC-Premier-1GFixed - Premier 1G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-10GFixed - Premier 10G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-100GFixed - Premier 100G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-Mod4Slot - Premier Modular 4 slot license tier for Intersight Nexus Cloud.* INC-Premier-Mod8Slot - Premier Modular 8 slot license tier for Intersight Nexus Cloud.* INC-Premier-D2OpsFixed - Premier D2Ops fixed license tier for Intersight Nexus Cloud.* INC-Premier-D2OpsMod - Premier D2Ops modular license tier for Intersight Nexus Cloud.* INC-Premier-CentralizedMod8Slot - Premier modular license tier of switch type CentralizedMod8Slot for Intersight Nexus Cloud.* INC-Premier-DistributedMod8Slot - Premier modular license tier of switch type DistributedMod8Slot for Intersight Nexus Cloud.* ERP-Advantage - Advantage license tier for ERP workflows.* IntersightTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode Intersight tiers.* IWOTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode IKS tiers.* IKSTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode IWO tiers.* INCTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode Nexus tiers.
    mod_time str
    (ReadOnly) The time when this managed object was last modified.
    moid str
    The unique identifier of this Managed Object instance.
    net_substitution float
    (ReadOnly) The total number of substituted licenses added or removed.
    object_type str
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    owners Sequence[str]
    (Array of schema.TypeString) -(ReadOnly)
    parents Sequence[LicenseLicenseInfoParentArgs]
    (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[LicenseLicenseInfoPermissionResourceArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    shared_scope str
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    start_time str
    (ReadOnly) The date and time when the licenseState entered the TrialPeriod or OutOfCompliance state.
    subscription_id str
    (ReadOnly) The id of license subscription.
    substituted_licenses Sequence[LicenseLicenseInfoSubstitutedLicenseArgs]
    This complex property has following sub-properties:
    tags Sequence[LicenseLicenseInfoTagArgs]
    This complex property has following sub-properties:
    trial_admin bool
    (ReadOnly) The administrative state of the trial license.When the LicenseState is set to 'NotLicensed', 'trialAdmin' can be set to true to start the trial period,i.e. licenseState is set to be TrialPeriod.
    version_contexts Sequence[LicenseLicenseInfoVersionContextArgs]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accountLicenseDatas List<Property Map>
    A reference to a licenseAccountLicenseData resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    activeAdmin Boolean
    (ReadOnly) The license administrative state.Set this property to 'true' to activate the license entitlements.
    additionalProperties String
    ancestors List<Property Map>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    balance Number
    (ReadOnly) The total balance we have for licenses.
    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.
    daysLeft Number
    (ReadOnly) The number of days left for licenseState to stay in TrialPeriod or OutOfCompliance state.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    endTime String
    (ReadOnly) The date and time when the trial period expires.The value of the 'endTime' property is set when the account enters the TrialPeriod or OutOfCompliance state.
    enforceMode String
    (ReadOnly) The entitlement mode reported by Cisco Smart Software Manager.
    errorDesc String
    (ReadOnly) The detailed error message when there is any error related to this licensing entitlement.
    evaluationPeriod Number
    The default Trial or Grace period customer is entitled to.
    expireTime String
    (ReadOnly) The date and time when the next expiration time of license subscription.
    extraEvaluation Number
    The number of days the trial Trial or Grace period is extended.The trial or grace period can be extended once.
    licenseCount Number
    (ReadOnly) The total number of license consumed in the Intersight account.
    licenseCountPurchased Number
    (ReadOnly) The total number of license purchased from cisco.
    licenseLicenseInfoId String
    licenseState String
    (ReadOnly) The license state defined by Intersight.The value may be one of NotLicensed, TrialPeriod, OutOfCompliance, Compliance, GraceExpired, or TrialExpired.* NotLicensed - The license token is neither activated nor registered.* GraceExpired - The license grace period has expired.* TrialPeriod - The 90 days of trial period.* OutOfCompliance - The license is out of compliance.* Compliance - The license is in compliance.* TrialExpired - The trial period of 90 days has expired.
    licenseType String
    (ReadOnly) The name of the Intersight license entitlement.For example, this property may be set to 'Essential'.* Base - Base as a License type. It is default license type.* Essential - Essential as a License type.* Standard - Standard as a License type.* Advantage - Advantage as a License type.* Premier - Premier as a License type.* IWO-Essential - IWO-Essential as a License type.* IWO-Advantage - IWO-Advantage as a License type.* IWO-Premier - IWO-Premier as a License type.* IKS-Advantage - IKS-Advantage as a License type.* INC-Premier-1GFixed - Premier 1G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-10GFixed - Premier 10G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-100GFixed - Premier 100G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-Mod4Slot - Premier Modular 4 slot license tier for Intersight Nexus Cloud.* INC-Premier-Mod8Slot - Premier Modular 8 slot license tier for Intersight Nexus Cloud.* INC-Premier-D2OpsFixed - Premier D2Ops fixed license tier for Intersight Nexus Cloud.* INC-Premier-D2OpsMod - Premier D2Ops modular license tier for Intersight Nexus Cloud.* INC-Premier-CentralizedMod8Slot - Premier modular license tier of switch type CentralizedMod8Slot for Intersight Nexus Cloud.* INC-Premier-DistributedMod8Slot - Premier modular license tier of switch type DistributedMod8Slot for Intersight Nexus Cloud.* ERP-Advantage - Advantage license tier for ERP workflows.* IntersightTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode Intersight tiers.* IWOTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode IKS tiers.* IKSTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode IWO tiers.* INCTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode Nexus tiers.
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    netSubstitution Number
    (ReadOnly) The total number of substituted licenses added or removed.
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    owners List<String>
    (Array of schema.TypeString) -(ReadOnly)
    parents List<Property Map>
    (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    permissionResources List<Property Map>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    sharedScope String
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    startTime String
    (ReadOnly) The date and time when the licenseState entered the TrialPeriod or OutOfCompliance state.
    subscriptionId String
    (ReadOnly) The id of license subscription.
    substitutedLicenses List<Property Map>
    This complex property has following sub-properties:
    tags List<Property Map>
    This complex property has following sub-properties:
    trialAdmin Boolean
    (ReadOnly) The administrative state of the trial license.When the LicenseState is set to 'NotLicensed', 'trialAdmin' can be set to true to start the trial period,i.e. licenseState is set to be TrialPeriod.
    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 LicenseLicenseInfo 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 LicenseLicenseInfo Resource

    Get an existing LicenseLicenseInfo 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?: LicenseLicenseInfoState, opts?: CustomResourceOptions): LicenseLicenseInfo
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_license_datas: Optional[Sequence[LicenseLicenseInfoAccountLicenseDataArgs]] = None,
            account_moid: Optional[str] = None,
            active_admin: Optional[bool] = None,
            additional_properties: Optional[str] = None,
            ancestors: Optional[Sequence[LicenseLicenseInfoAncestorArgs]] = None,
            balance: Optional[float] = None,
            class_id: Optional[str] = None,
            create_time: Optional[str] = None,
            days_left: Optional[float] = None,
            domain_group_moid: Optional[str] = None,
            end_time: Optional[str] = None,
            enforce_mode: Optional[str] = None,
            error_desc: Optional[str] = None,
            evaluation_period: Optional[float] = None,
            expire_time: Optional[str] = None,
            extra_evaluation: Optional[float] = None,
            license_count: Optional[float] = None,
            license_count_purchased: Optional[float] = None,
            license_license_info_id: Optional[str] = None,
            license_state: Optional[str] = None,
            license_type: Optional[str] = None,
            mod_time: Optional[str] = None,
            moid: Optional[str] = None,
            net_substitution: Optional[float] = None,
            object_type: Optional[str] = None,
            owners: Optional[Sequence[str]] = None,
            parents: Optional[Sequence[LicenseLicenseInfoParentArgs]] = None,
            permission_resources: Optional[Sequence[LicenseLicenseInfoPermissionResourceArgs]] = None,
            shared_scope: Optional[str] = None,
            start_time: Optional[str] = None,
            subscription_id: Optional[str] = None,
            substituted_licenses: Optional[Sequence[LicenseLicenseInfoSubstitutedLicenseArgs]] = None,
            tags: Optional[Sequence[LicenseLicenseInfoTagArgs]] = None,
            trial_admin: Optional[bool] = None,
            version_contexts: Optional[Sequence[LicenseLicenseInfoVersionContextArgs]] = None) -> LicenseLicenseInfo
    func GetLicenseLicenseInfo(ctx *Context, name string, id IDInput, state *LicenseLicenseInfoState, opts ...ResourceOption) (*LicenseLicenseInfo, error)
    public static LicenseLicenseInfo Get(string name, Input<string> id, LicenseLicenseInfoState? state, CustomResourceOptions? opts = null)
    public static LicenseLicenseInfo get(String name, Output<String> id, LicenseLicenseInfoState state, CustomResourceOptions options)
    resources:  _:    type: intersight:LicenseLicenseInfo    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:
    AccountLicenseDatas List<LicenseLicenseInfoAccountLicenseData>
    A reference to a licenseAccountLicenseData resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    ActiveAdmin bool
    (ReadOnly) The license administrative state.Set this property to 'true' to activate the license entitlements.
    AdditionalProperties string
    Ancestors List<LicenseLicenseInfoAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    Balance double
    (ReadOnly) The total balance we have for licenses.
    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.
    DaysLeft double
    (ReadOnly) The number of days left for licenseState to stay in TrialPeriod or OutOfCompliance state.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    EndTime string
    (ReadOnly) The date and time when the trial period expires.The value of the 'endTime' property is set when the account enters the TrialPeriod or OutOfCompliance state.
    EnforceMode string
    (ReadOnly) The entitlement mode reported by Cisco Smart Software Manager.
    ErrorDesc string
    (ReadOnly) The detailed error message when there is any error related to this licensing entitlement.
    EvaluationPeriod double
    The default Trial or Grace period customer is entitled to.
    ExpireTime string
    (ReadOnly) The date and time when the next expiration time of license subscription.
    ExtraEvaluation double
    The number of days the trial Trial or Grace period is extended.The trial or grace period can be extended once.
    LicenseCount double
    (ReadOnly) The total number of license consumed in the Intersight account.
    LicenseCountPurchased double
    (ReadOnly) The total number of license purchased from cisco.
    LicenseLicenseInfoId string
    LicenseState string
    (ReadOnly) The license state defined by Intersight.The value may be one of NotLicensed, TrialPeriod, OutOfCompliance, Compliance, GraceExpired, or TrialExpired.* NotLicensed - The license token is neither activated nor registered.* GraceExpired - The license grace period has expired.* TrialPeriod - The 90 days of trial period.* OutOfCompliance - The license is out of compliance.* Compliance - The license is in compliance.* TrialExpired - The trial period of 90 days has expired.
    LicenseType string
    (ReadOnly) The name of the Intersight license entitlement.For example, this property may be set to 'Essential'.* Base - Base as a License type. It is default license type.* Essential - Essential as a License type.* Standard - Standard as a License type.* Advantage - Advantage as a License type.* Premier - Premier as a License type.* IWO-Essential - IWO-Essential as a License type.* IWO-Advantage - IWO-Advantage as a License type.* IWO-Premier - IWO-Premier as a License type.* IKS-Advantage - IKS-Advantage as a License type.* INC-Premier-1GFixed - Premier 1G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-10GFixed - Premier 10G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-100GFixed - Premier 100G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-Mod4Slot - Premier Modular 4 slot license tier for Intersight Nexus Cloud.* INC-Premier-Mod8Slot - Premier Modular 8 slot license tier for Intersight Nexus Cloud.* INC-Premier-D2OpsFixed - Premier D2Ops fixed license tier for Intersight Nexus Cloud.* INC-Premier-D2OpsMod - Premier D2Ops modular license tier for Intersight Nexus Cloud.* INC-Premier-CentralizedMod8Slot - Premier modular license tier of switch type CentralizedMod8Slot for Intersight Nexus Cloud.* INC-Premier-DistributedMod8Slot - Premier modular license tier of switch type DistributedMod8Slot for Intersight Nexus Cloud.* ERP-Advantage - Advantage license tier for ERP workflows.* IntersightTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode Intersight tiers.* IWOTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode IKS tiers.* IKSTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode IWO tiers.* INCTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode Nexus tiers.
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    NetSubstitution double
    (ReadOnly) The total number of substituted licenses added or removed.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Owners List<string>
    (Array of schema.TypeString) -(ReadOnly)
    Parents List<LicenseLicenseInfoParent>
    (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<LicenseLicenseInfoPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    SharedScope string
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    StartTime string
    (ReadOnly) The date and time when the licenseState entered the TrialPeriod or OutOfCompliance state.
    SubscriptionId string
    (ReadOnly) The id of license subscription.
    SubstitutedLicenses List<LicenseLicenseInfoSubstitutedLicense>
    This complex property has following sub-properties:
    Tags List<LicenseLicenseInfoTag>
    This complex property has following sub-properties:
    TrialAdmin bool
    (ReadOnly) The administrative state of the trial license.When the LicenseState is set to 'NotLicensed', 'trialAdmin' can be set to true to start the trial period,i.e. licenseState is set to be TrialPeriod.
    VersionContexts List<LicenseLicenseInfoVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    AccountLicenseDatas []LicenseLicenseInfoAccountLicenseDataArgs
    A reference to a licenseAccountLicenseData resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    ActiveAdmin bool
    (ReadOnly) The license administrative state.Set this property to 'true' to activate the license entitlements.
    AdditionalProperties string
    Ancestors []LicenseLicenseInfoAncestorArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    Balance float64
    (ReadOnly) The total balance we have for licenses.
    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.
    DaysLeft float64
    (ReadOnly) The number of days left for licenseState to stay in TrialPeriod or OutOfCompliance state.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    EndTime string
    (ReadOnly) The date and time when the trial period expires.The value of the 'endTime' property is set when the account enters the TrialPeriod or OutOfCompliance state.
    EnforceMode string
    (ReadOnly) The entitlement mode reported by Cisco Smart Software Manager.
    ErrorDesc string
    (ReadOnly) The detailed error message when there is any error related to this licensing entitlement.
    EvaluationPeriod float64
    The default Trial or Grace period customer is entitled to.
    ExpireTime string
    (ReadOnly) The date and time when the next expiration time of license subscription.
    ExtraEvaluation float64
    The number of days the trial Trial or Grace period is extended.The trial or grace period can be extended once.
    LicenseCount float64
    (ReadOnly) The total number of license consumed in the Intersight account.
    LicenseCountPurchased float64
    (ReadOnly) The total number of license purchased from cisco.
    LicenseLicenseInfoId string
    LicenseState string
    (ReadOnly) The license state defined by Intersight.The value may be one of NotLicensed, TrialPeriod, OutOfCompliance, Compliance, GraceExpired, or TrialExpired.* NotLicensed - The license token is neither activated nor registered.* GraceExpired - The license grace period has expired.* TrialPeriod - The 90 days of trial period.* OutOfCompliance - The license is out of compliance.* Compliance - The license is in compliance.* TrialExpired - The trial period of 90 days has expired.
    LicenseType string
    (ReadOnly) The name of the Intersight license entitlement.For example, this property may be set to 'Essential'.* Base - Base as a License type. It is default license type.* Essential - Essential as a License type.* Standard - Standard as a License type.* Advantage - Advantage as a License type.* Premier - Premier as a License type.* IWO-Essential - IWO-Essential as a License type.* IWO-Advantage - IWO-Advantage as a License type.* IWO-Premier - IWO-Premier as a License type.* IKS-Advantage - IKS-Advantage as a License type.* INC-Premier-1GFixed - Premier 1G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-10GFixed - Premier 10G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-100GFixed - Premier 100G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-Mod4Slot - Premier Modular 4 slot license tier for Intersight Nexus Cloud.* INC-Premier-Mod8Slot - Premier Modular 8 slot license tier for Intersight Nexus Cloud.* INC-Premier-D2OpsFixed - Premier D2Ops fixed license tier for Intersight Nexus Cloud.* INC-Premier-D2OpsMod - Premier D2Ops modular license tier for Intersight Nexus Cloud.* INC-Premier-CentralizedMod8Slot - Premier modular license tier of switch type CentralizedMod8Slot for Intersight Nexus Cloud.* INC-Premier-DistributedMod8Slot - Premier modular license tier of switch type DistributedMod8Slot for Intersight Nexus Cloud.* ERP-Advantage - Advantage license tier for ERP workflows.* IntersightTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode Intersight tiers.* IWOTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode IKS tiers.* IKSTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode IWO tiers.* INCTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode Nexus tiers.
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    NetSubstitution float64
    (ReadOnly) The total number of substituted licenses added or removed.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Owners []string
    (Array of schema.TypeString) -(ReadOnly)
    Parents []LicenseLicenseInfoParentArgs
    (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 []LicenseLicenseInfoPermissionResourceArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    SharedScope string
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    StartTime string
    (ReadOnly) The date and time when the licenseState entered the TrialPeriod or OutOfCompliance state.
    SubscriptionId string
    (ReadOnly) The id of license subscription.
    SubstitutedLicenses []LicenseLicenseInfoSubstitutedLicenseArgs
    This complex property has following sub-properties:
    Tags []LicenseLicenseInfoTagArgs
    This complex property has following sub-properties:
    TrialAdmin bool
    (ReadOnly) The administrative state of the trial license.When the LicenseState is set to 'NotLicensed', 'trialAdmin' can be set to true to start the trial period,i.e. licenseState is set to be TrialPeriod.
    VersionContexts []LicenseLicenseInfoVersionContextArgs
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accountLicenseDatas List<LicenseLicenseInfoAccountLicenseData>
    A reference to a licenseAccountLicenseData resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    activeAdmin Boolean
    (ReadOnly) The license administrative state.Set this property to 'true' to activate the license entitlements.
    additionalProperties String
    ancestors List<LicenseLicenseInfoAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    balance Double
    (ReadOnly) The total balance we have for licenses.
    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.
    daysLeft Double
    (ReadOnly) The number of days left for licenseState to stay in TrialPeriod or OutOfCompliance state.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    endTime String
    (ReadOnly) The date and time when the trial period expires.The value of the 'endTime' property is set when the account enters the TrialPeriod or OutOfCompliance state.
    enforceMode String
    (ReadOnly) The entitlement mode reported by Cisco Smart Software Manager.
    errorDesc String
    (ReadOnly) The detailed error message when there is any error related to this licensing entitlement.
    evaluationPeriod Double
    The default Trial or Grace period customer is entitled to.
    expireTime String
    (ReadOnly) The date and time when the next expiration time of license subscription.
    extraEvaluation Double
    The number of days the trial Trial or Grace period is extended.The trial or grace period can be extended once.
    licenseCount Double
    (ReadOnly) The total number of license consumed in the Intersight account.
    licenseCountPurchased Double
    (ReadOnly) The total number of license purchased from cisco.
    licenseLicenseInfoId String
    licenseState String
    (ReadOnly) The license state defined by Intersight.The value may be one of NotLicensed, TrialPeriod, OutOfCompliance, Compliance, GraceExpired, or TrialExpired.* NotLicensed - The license token is neither activated nor registered.* GraceExpired - The license grace period has expired.* TrialPeriod - The 90 days of trial period.* OutOfCompliance - The license is out of compliance.* Compliance - The license is in compliance.* TrialExpired - The trial period of 90 days has expired.
    licenseType String
    (ReadOnly) The name of the Intersight license entitlement.For example, this property may be set to 'Essential'.* Base - Base as a License type. It is default license type.* Essential - Essential as a License type.* Standard - Standard as a License type.* Advantage - Advantage as a License type.* Premier - Premier as a License type.* IWO-Essential - IWO-Essential as a License type.* IWO-Advantage - IWO-Advantage as a License type.* IWO-Premier - IWO-Premier as a License type.* IKS-Advantage - IKS-Advantage as a License type.* INC-Premier-1GFixed - Premier 1G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-10GFixed - Premier 10G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-100GFixed - Premier 100G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-Mod4Slot - Premier Modular 4 slot license tier for Intersight Nexus Cloud.* INC-Premier-Mod8Slot - Premier Modular 8 slot license tier for Intersight Nexus Cloud.* INC-Premier-D2OpsFixed - Premier D2Ops fixed license tier for Intersight Nexus Cloud.* INC-Premier-D2OpsMod - Premier D2Ops modular license tier for Intersight Nexus Cloud.* INC-Premier-CentralizedMod8Slot - Premier modular license tier of switch type CentralizedMod8Slot for Intersight Nexus Cloud.* INC-Premier-DistributedMod8Slot - Premier modular license tier of switch type DistributedMod8Slot for Intersight Nexus Cloud.* ERP-Advantage - Advantage license tier for ERP workflows.* IntersightTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode Intersight tiers.* IWOTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode IKS tiers.* IKSTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode IWO tiers.* INCTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode Nexus tiers.
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    netSubstitution Double
    (ReadOnly) The total number of substituted licenses added or removed.
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    owners List<String>
    (Array of schema.TypeString) -(ReadOnly)
    parents List<LicenseLicenseInfoParent>
    (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<LicenseLicenseInfoPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    sharedScope String
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    startTime String
    (ReadOnly) The date and time when the licenseState entered the TrialPeriod or OutOfCompliance state.
    subscriptionId String
    (ReadOnly) The id of license subscription.
    substitutedLicenses List<LicenseLicenseInfoSubstitutedLicense>
    This complex property has following sub-properties:
    tags List<LicenseLicenseInfoTag>
    This complex property has following sub-properties:
    trialAdmin Boolean
    (ReadOnly) The administrative state of the trial license.When the LicenseState is set to 'NotLicensed', 'trialAdmin' can be set to true to start the trial period,i.e. licenseState is set to be TrialPeriod.
    versionContexts List<LicenseLicenseInfoVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accountLicenseDatas LicenseLicenseInfoAccountLicenseData[]
    A reference to a licenseAccountLicenseData resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    accountMoid string
    (ReadOnly) The Account ID for this managed object.
    activeAdmin boolean
    (ReadOnly) The license administrative state.Set this property to 'true' to activate the license entitlements.
    additionalProperties string
    ancestors LicenseLicenseInfoAncestor[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    balance number
    (ReadOnly) The total balance we have for licenses.
    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.
    daysLeft number
    (ReadOnly) The number of days left for licenseState to stay in TrialPeriod or OutOfCompliance state.
    domainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    endTime string
    (ReadOnly) The date and time when the trial period expires.The value of the 'endTime' property is set when the account enters the TrialPeriod or OutOfCompliance state.
    enforceMode string
    (ReadOnly) The entitlement mode reported by Cisco Smart Software Manager.
    errorDesc string
    (ReadOnly) The detailed error message when there is any error related to this licensing entitlement.
    evaluationPeriod number
    The default Trial or Grace period customer is entitled to.
    expireTime string
    (ReadOnly) The date and time when the next expiration time of license subscription.
    extraEvaluation number
    The number of days the trial Trial or Grace period is extended.The trial or grace period can be extended once.
    licenseCount number
    (ReadOnly) The total number of license consumed in the Intersight account.
    licenseCountPurchased number
    (ReadOnly) The total number of license purchased from cisco.
    licenseLicenseInfoId string
    licenseState string
    (ReadOnly) The license state defined by Intersight.The value may be one of NotLicensed, TrialPeriod, OutOfCompliance, Compliance, GraceExpired, or TrialExpired.* NotLicensed - The license token is neither activated nor registered.* GraceExpired - The license grace period has expired.* TrialPeriod - The 90 days of trial period.* OutOfCompliance - The license is out of compliance.* Compliance - The license is in compliance.* TrialExpired - The trial period of 90 days has expired.
    licenseType string
    (ReadOnly) The name of the Intersight license entitlement.For example, this property may be set to 'Essential'.* Base - Base as a License type. It is default license type.* Essential - Essential as a License type.* Standard - Standard as a License type.* Advantage - Advantage as a License type.* Premier - Premier as a License type.* IWO-Essential - IWO-Essential as a License type.* IWO-Advantage - IWO-Advantage as a License type.* IWO-Premier - IWO-Premier as a License type.* IKS-Advantage - IKS-Advantage as a License type.* INC-Premier-1GFixed - Premier 1G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-10GFixed - Premier 10G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-100GFixed - Premier 100G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-Mod4Slot - Premier Modular 4 slot license tier for Intersight Nexus Cloud.* INC-Premier-Mod8Slot - Premier Modular 8 slot license tier for Intersight Nexus Cloud.* INC-Premier-D2OpsFixed - Premier D2Ops fixed license tier for Intersight Nexus Cloud.* INC-Premier-D2OpsMod - Premier D2Ops modular license tier for Intersight Nexus Cloud.* INC-Premier-CentralizedMod8Slot - Premier modular license tier of switch type CentralizedMod8Slot for Intersight Nexus Cloud.* INC-Premier-DistributedMod8Slot - Premier modular license tier of switch type DistributedMod8Slot for Intersight Nexus Cloud.* ERP-Advantage - Advantage license tier for ERP workflows.* IntersightTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode Intersight tiers.* IWOTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode IKS tiers.* IKSTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode IWO tiers.* INCTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode Nexus tiers.
    modTime string
    (ReadOnly) The time when this managed object was last modified.
    moid string
    The unique identifier of this Managed Object instance.
    netSubstitution number
    (ReadOnly) The total number of substituted licenses added or removed.
    objectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    owners string[]
    (Array of schema.TypeString) -(ReadOnly)
    parents LicenseLicenseInfoParent[]
    (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 LicenseLicenseInfoPermissionResource[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    sharedScope string
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    startTime string
    (ReadOnly) The date and time when the licenseState entered the TrialPeriod or OutOfCompliance state.
    subscriptionId string
    (ReadOnly) The id of license subscription.
    substitutedLicenses LicenseLicenseInfoSubstitutedLicense[]
    This complex property has following sub-properties:
    tags LicenseLicenseInfoTag[]
    This complex property has following sub-properties:
    trialAdmin boolean
    (ReadOnly) The administrative state of the trial license.When the LicenseState is set to 'NotLicensed', 'trialAdmin' can be set to true to start the trial period,i.e. licenseState is set to be TrialPeriod.
    versionContexts LicenseLicenseInfoVersionContext[]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    account_license_datas Sequence[LicenseLicenseInfoAccountLicenseDataArgs]
    A reference to a licenseAccountLicenseData resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    account_moid str
    (ReadOnly) The Account ID for this managed object.
    active_admin bool
    (ReadOnly) The license administrative state.Set this property to 'true' to activate the license entitlements.
    additional_properties str
    ancestors Sequence[LicenseLicenseInfoAncestorArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    balance float
    (ReadOnly) The total balance we have for licenses.
    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.
    days_left float
    (ReadOnly) The number of days left for licenseState to stay in TrialPeriod or OutOfCompliance state.
    domain_group_moid str
    (ReadOnly) The DomainGroup ID for this managed object.
    end_time str
    (ReadOnly) The date and time when the trial period expires.The value of the 'endTime' property is set when the account enters the TrialPeriod or OutOfCompliance state.
    enforce_mode str
    (ReadOnly) The entitlement mode reported by Cisco Smart Software Manager.
    error_desc str
    (ReadOnly) The detailed error message when there is any error related to this licensing entitlement.
    evaluation_period float
    The default Trial or Grace period customer is entitled to.
    expire_time str
    (ReadOnly) The date and time when the next expiration time of license subscription.
    extra_evaluation float
    The number of days the trial Trial or Grace period is extended.The trial or grace period can be extended once.
    license_count float
    (ReadOnly) The total number of license consumed in the Intersight account.
    license_count_purchased float
    (ReadOnly) The total number of license purchased from cisco.
    license_license_info_id str
    license_state str
    (ReadOnly) The license state defined by Intersight.The value may be one of NotLicensed, TrialPeriod, OutOfCompliance, Compliance, GraceExpired, or TrialExpired.* NotLicensed - The license token is neither activated nor registered.* GraceExpired - The license grace period has expired.* TrialPeriod - The 90 days of trial period.* OutOfCompliance - The license is out of compliance.* Compliance - The license is in compliance.* TrialExpired - The trial period of 90 days has expired.
    license_type str
    (ReadOnly) The name of the Intersight license entitlement.For example, this property may be set to 'Essential'.* Base - Base as a License type. It is default license type.* Essential - Essential as a License type.* Standard - Standard as a License type.* Advantage - Advantage as a License type.* Premier - Premier as a License type.* IWO-Essential - IWO-Essential as a License type.* IWO-Advantage - IWO-Advantage as a License type.* IWO-Premier - IWO-Premier as a License type.* IKS-Advantage - IKS-Advantage as a License type.* INC-Premier-1GFixed - Premier 1G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-10GFixed - Premier 10G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-100GFixed - Premier 100G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-Mod4Slot - Premier Modular 4 slot license tier for Intersight Nexus Cloud.* INC-Premier-Mod8Slot - Premier Modular 8 slot license tier for Intersight Nexus Cloud.* INC-Premier-D2OpsFixed - Premier D2Ops fixed license tier for Intersight Nexus Cloud.* INC-Premier-D2OpsMod - Premier D2Ops modular license tier for Intersight Nexus Cloud.* INC-Premier-CentralizedMod8Slot - Premier modular license tier of switch type CentralizedMod8Slot for Intersight Nexus Cloud.* INC-Premier-DistributedMod8Slot - Premier modular license tier of switch type DistributedMod8Slot for Intersight Nexus Cloud.* ERP-Advantage - Advantage license tier for ERP workflows.* IntersightTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode Intersight tiers.* IWOTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode IKS tiers.* IKSTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode IWO tiers.* INCTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode Nexus tiers.
    mod_time str
    (ReadOnly) The time when this managed object was last modified.
    moid str
    The unique identifier of this Managed Object instance.
    net_substitution float
    (ReadOnly) The total number of substituted licenses added or removed.
    object_type str
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    owners Sequence[str]
    (Array of schema.TypeString) -(ReadOnly)
    parents Sequence[LicenseLicenseInfoParentArgs]
    (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[LicenseLicenseInfoPermissionResourceArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    shared_scope str
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    start_time str
    (ReadOnly) The date and time when the licenseState entered the TrialPeriod or OutOfCompliance state.
    subscription_id str
    (ReadOnly) The id of license subscription.
    substituted_licenses Sequence[LicenseLicenseInfoSubstitutedLicenseArgs]
    This complex property has following sub-properties:
    tags Sequence[LicenseLicenseInfoTagArgs]
    This complex property has following sub-properties:
    trial_admin bool
    (ReadOnly) The administrative state of the trial license.When the LicenseState is set to 'NotLicensed', 'trialAdmin' can be set to true to start the trial period,i.e. licenseState is set to be TrialPeriod.
    version_contexts Sequence[LicenseLicenseInfoVersionContextArgs]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accountLicenseDatas List<Property Map>
    A reference to a licenseAccountLicenseData resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    activeAdmin Boolean
    (ReadOnly) The license administrative state.Set this property to 'true' to activate the license entitlements.
    additionalProperties String
    ancestors List<Property Map>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    balance Number
    (ReadOnly) The total balance we have for licenses.
    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.
    daysLeft Number
    (ReadOnly) The number of days left for licenseState to stay in TrialPeriod or OutOfCompliance state.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    endTime String
    (ReadOnly) The date and time when the trial period expires.The value of the 'endTime' property is set when the account enters the TrialPeriod or OutOfCompliance state.
    enforceMode String
    (ReadOnly) The entitlement mode reported by Cisco Smart Software Manager.
    errorDesc String
    (ReadOnly) The detailed error message when there is any error related to this licensing entitlement.
    evaluationPeriod Number
    The default Trial or Grace period customer is entitled to.
    expireTime String
    (ReadOnly) The date and time when the next expiration time of license subscription.
    extraEvaluation Number
    The number of days the trial Trial or Grace period is extended.The trial or grace period can be extended once.
    licenseCount Number
    (ReadOnly) The total number of license consumed in the Intersight account.
    licenseCountPurchased Number
    (ReadOnly) The total number of license purchased from cisco.
    licenseLicenseInfoId String
    licenseState String
    (ReadOnly) The license state defined by Intersight.The value may be one of NotLicensed, TrialPeriod, OutOfCompliance, Compliance, GraceExpired, or TrialExpired.* NotLicensed - The license token is neither activated nor registered.* GraceExpired - The license grace period has expired.* TrialPeriod - The 90 days of trial period.* OutOfCompliance - The license is out of compliance.* Compliance - The license is in compliance.* TrialExpired - The trial period of 90 days has expired.
    licenseType String
    (ReadOnly) The name of the Intersight license entitlement.For example, this property may be set to 'Essential'.* Base - Base as a License type. It is default license type.* Essential - Essential as a License type.* Standard - Standard as a License type.* Advantage - Advantage as a License type.* Premier - Premier as a License type.* IWO-Essential - IWO-Essential as a License type.* IWO-Advantage - IWO-Advantage as a License type.* IWO-Premier - IWO-Premier as a License type.* IKS-Advantage - IKS-Advantage as a License type.* INC-Premier-1GFixed - Premier 1G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-10GFixed - Premier 10G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-100GFixed - Premier 100G Fixed license tier for Intersight Nexus Cloud.* INC-Premier-Mod4Slot - Premier Modular 4 slot license tier for Intersight Nexus Cloud.* INC-Premier-Mod8Slot - Premier Modular 8 slot license tier for Intersight Nexus Cloud.* INC-Premier-D2OpsFixed - Premier D2Ops fixed license tier for Intersight Nexus Cloud.* INC-Premier-D2OpsMod - Premier D2Ops modular license tier for Intersight Nexus Cloud.* INC-Premier-CentralizedMod8Slot - Premier modular license tier of switch type CentralizedMod8Slot for Intersight Nexus Cloud.* INC-Premier-DistributedMod8Slot - Premier modular license tier of switch type DistributedMod8Slot for Intersight Nexus Cloud.* ERP-Advantage - Advantage license tier for ERP workflows.* IntersightTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode Intersight tiers.* IWOTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode IKS tiers.* IKSTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode IWO tiers.* INCTrial - Virtual dummy license type to indicate trial. Used for UI display of trial mode Nexus tiers.
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    netSubstitution Number
    (ReadOnly) The total number of substituted licenses added or removed.
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    owners List<String>
    (Array of schema.TypeString) -(ReadOnly)
    parents List<Property Map>
    (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
    permissionResources List<Property Map>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    sharedScope String
    (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
    startTime String
    (ReadOnly) The date and time when the licenseState entered the TrialPeriod or OutOfCompliance state.
    subscriptionId String
    (ReadOnly) The id of license subscription.
    substitutedLicenses List<Property Map>
    This complex property has following sub-properties:
    tags List<Property Map>
    This complex property has following sub-properties:
    trialAdmin Boolean
    (ReadOnly) The administrative state of the trial license.When the LicenseState is set to 'NotLicensed', 'trialAdmin' can be set to true to start the trial period,i.e. licenseState is set to be TrialPeriod.
    versionContexts List<Property Map>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:

    Supporting Types

    LicenseLicenseInfoAccountLicenseData, LicenseLicenseInfoAccountLicenseDataArgs

    AdditionalProperties string
    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
    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
    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
    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
    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
    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'.

    LicenseLicenseInfoAncestor, LicenseLicenseInfoAncestorArgs

    AdditionalProperties string
    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
    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
    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
    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
    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
    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'.

    LicenseLicenseInfoParent, LicenseLicenseInfoParentArgs

    AdditionalProperties string
    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
    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
    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
    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
    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
    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'.

    LicenseLicenseInfoPermissionResource, LicenseLicenseInfoPermissionResourceArgs

    AdditionalProperties string
    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
    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
    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
    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
    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
    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'.

    LicenseLicenseInfoSubstitutedLicense, LicenseLicenseInfoSubstitutedLicenseArgs

    AdditionalProperties string
    ClassId string
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    SubstitutedLicense string
    (ReadOnly) The substitute license that is used.
    SubstitutedQuantity double
    (ReadOnly) The number of substitute licenses that are used.
    SubstitutionType string
    (ReadOnly) The substitution from lower or from higher tier.
    AdditionalProperties string
    ClassId string
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    SubstitutedLicense string
    (ReadOnly) The substitute license that is used.
    SubstitutedQuantity float64
    (ReadOnly) The number of substitute licenses that are used.
    SubstitutionType string
    (ReadOnly) The substitution from lower or from higher tier.
    additionalProperties String
    classId String
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    substitutedLicense String
    (ReadOnly) The substitute license that is used.
    substitutedQuantity Double
    (ReadOnly) The number of substitute licenses that are used.
    substitutionType String
    (ReadOnly) The substitution from lower or from higher tier.
    additionalProperties string
    classId string
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    substitutedLicense string
    (ReadOnly) The substitute license that is used.
    substitutedQuantity number
    (ReadOnly) The number of substitute licenses that are used.
    substitutionType string
    (ReadOnly) The substitution from lower or from higher tier.
    additional_properties str
    class_id str
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    substituted_license str
    (ReadOnly) The substitute license that is used.
    substituted_quantity float
    (ReadOnly) The number of substitute licenses that are used.
    substitution_type str
    (ReadOnly) The substitution from lower or from higher tier.
    additionalProperties String
    classId String
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    substitutedLicense String
    (ReadOnly) The substitute license that is used.
    substitutedQuantity Number
    (ReadOnly) The number of substitute licenses that are used.
    substitutionType String
    (ReadOnly) The substitution from lower or from higher tier.

    LicenseLicenseInfoTag, LicenseLicenseInfoTagArgs

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

    LicenseLicenseInfoVersionContext, LicenseLicenseInfoVersionContextArgs

    AdditionalProperties string
    ClassId string
    InterestedMos List<LicenseLicenseInfoVersionContextInterestedMo>
    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<LicenseLicenseInfoVersionContextRefMo>
    (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
    ClassId string
    InterestedMos []LicenseLicenseInfoVersionContextInterestedMo
    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 []LicenseLicenseInfoVersionContextRefMo
    (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
    classId String
    interestedMos List<LicenseLicenseInfoVersionContextInterestedMo>
    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<LicenseLicenseInfoVersionContextRefMo>
    (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
    classId string
    interestedMos LicenseLicenseInfoVersionContextInterestedMo[]
    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 LicenseLicenseInfoVersionContextRefMo[]
    (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
    class_id str
    interested_mos Sequence[LicenseLicenseInfoVersionContextInterestedMo]
    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[LicenseLicenseInfoVersionContextRefMo]
    (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
    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.

    LicenseLicenseInfoVersionContextInterestedMo, LicenseLicenseInfoVersionContextInterestedMoArgs

    AdditionalProperties string
    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
    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
    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
    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
    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
    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'.

    LicenseLicenseInfoVersionContextRefMo, LicenseLicenseInfoVersionContextRefMoArgs

    AdditionalProperties string
    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
    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
    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
    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
    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
    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_license_license_info can be imported using the Moid of the object, e.g.

    $ pulumi import intersight:index/licenseLicenseInfo:LicenseLicenseInfo 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