intersight.LicenseLicenseInfo
Explore with Pulumi AI
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:
- Account
License List<LicenseDatas License Info Account License Data> - 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 string - (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 string - Ancestors
List<License
License Info Ancestor> - (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.
- Class
Id 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.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Days
Left double - (ReadOnly) The number of days left for licenseState to stay in TrialPeriod or OutOfCompliance state.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- End
Time 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.
- Enforce
Mode string - (ReadOnly) The entitlement mode reported by Cisco Smart Software Manager.
- Error
Desc string - (ReadOnly) The detailed error message when there is any error related to this licensing entitlement.
- Evaluation
Period double - The default Trial or Grace period customer is entitled to.
- Expire
Time string - (ReadOnly) The date and time when the next expiration time of license subscription.
- Extra
Evaluation double - The number of days the trial Trial or Grace period is extended.The trial or grace period can be extended once.
- License
Count double - (ReadOnly) The total number of license consumed in the Intersight account.
- License
Count doublePurchased - (ReadOnly) The total number of license purchased from cisco.
- License
License stringInfo Id - License
State 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. - License
Type 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. - Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Net
Substitution double - (ReadOnly) The total number of substituted licenses added or removed.
- Object
Type 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<License
License Info Parent> - (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 List<LicenseLicense Info Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- 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.
- Start
Time string - (ReadOnly) The date and time when the licenseState entered the TrialPeriod or OutOfCompliance state.
- Subscription
Id string - (ReadOnly) The id of license subscription.
- Substituted
Licenses List<LicenseLicense Info Substituted License> - This complex property has following sub-properties:
- List<License
License Info Tag> - 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 List<LicenseLicense Info Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Account
License []LicenseDatas License Info Account License Data Args - 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 string - (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 string - Ancestors
[]License
License Info Ancestor Args - (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.
- Class
Id 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.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Days
Left float64 - (ReadOnly) The number of days left for licenseState to stay in TrialPeriod or OutOfCompliance state.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- End
Time 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.
- Enforce
Mode string - (ReadOnly) The entitlement mode reported by Cisco Smart Software Manager.
- Error
Desc string - (ReadOnly) The detailed error message when there is any error related to this licensing entitlement.
- Evaluation
Period float64 - The default Trial or Grace period customer is entitled to.
- Expire
Time string - (ReadOnly) The date and time when the next expiration time of license subscription.
- Extra
Evaluation float64 - The number of days the trial Trial or Grace period is extended.The trial or grace period can be extended once.
- License
Count float64 - (ReadOnly) The total number of license consumed in the Intersight account.
- License
Count float64Purchased - (ReadOnly) The total number of license purchased from cisco.
- License
License stringInfo Id - License
State 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. - License
Type 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. - Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Net
Substitution float64 - (ReadOnly) The total number of substituted licenses added or removed.
- Object
Type 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
[]License
License Info Parent Args - (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 []LicenseLicense Info Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- 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.
- Start
Time string - (ReadOnly) The date and time when the licenseState entered the TrialPeriod or OutOfCompliance state.
- Subscription
Id string - (ReadOnly) The id of license subscription.
- Substituted
Licenses []LicenseLicense Info Substituted License Args - This complex property has following sub-properties:
- []License
License Info Tag Args - 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 []LicenseLicense Info Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
License List<LicenseDatas License Info Account License Data> - 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 String - (ReadOnly) The Account ID for this managed object.
- active
Admin Boolean - (ReadOnly) The license administrative state.Set this property to 'true' to activate the license entitlements.
- additional
Properties String - ancestors
List<License
License Info Ancestor> - (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.
- class
Id 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.
- create
Time String - (ReadOnly) The time when this managed object was created.
- days
Left Double - (ReadOnly) The number of days left for licenseState to stay in TrialPeriod or OutOfCompliance state.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- end
Time 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.
- enforce
Mode String - (ReadOnly) The entitlement mode reported by Cisco Smart Software Manager.
- error
Desc String - (ReadOnly) The detailed error message when there is any error related to this licensing entitlement.
- evaluation
Period Double - The default Trial or Grace period customer is entitled to.
- expire
Time String - (ReadOnly) The date and time when the next expiration time of license subscription.
- extra
Evaluation Double - The number of days the trial Trial or Grace period is extended.The trial or grace period can be extended once.
- license
Count Double - (ReadOnly) The total number of license consumed in the Intersight account.
- license
Count DoublePurchased - (ReadOnly) The total number of license purchased from cisco.
- license
License StringInfo Id - license
State 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. - license
Type 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. - mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- net
Substitution Double - (ReadOnly) The total number of substituted licenses added or removed.
- object
Type 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<License
License Info Parent> - (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 List<LicenseLicense Info Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- 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.
- start
Time String - (ReadOnly) The date and time when the licenseState entered the TrialPeriod or OutOfCompliance state.
- subscription
Id String - (ReadOnly) The id of license subscription.
- substituted
Licenses List<LicenseLicense Info Substituted License> - This complex property has following sub-properties:
- List<License
License Info Tag> - This complex property has following sub-properties:
- trial
Admin 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.
- version
Contexts List<LicenseLicense Info Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
License LicenseDatas License Info Account License Data[] - 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 string - (ReadOnly) The Account ID for this managed object.
- active
Admin boolean - (ReadOnly) The license administrative state.Set this property to 'true' to activate the license entitlements.
- additional
Properties string - ancestors
License
License Info Ancestor[] - (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.
- class
Id 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.
- create
Time string - (ReadOnly) The time when this managed object was created.
- days
Left number - (ReadOnly) The number of days left for licenseState to stay in TrialPeriod or OutOfCompliance state.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- end
Time 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.
- enforce
Mode string - (ReadOnly) The entitlement mode reported by Cisco Smart Software Manager.
- error
Desc string - (ReadOnly) The detailed error message when there is any error related to this licensing entitlement.
- evaluation
Period number - The default Trial or Grace period customer is entitled to.
- expire
Time string - (ReadOnly) The date and time when the next expiration time of license subscription.
- extra
Evaluation number - The number of days the trial Trial or Grace period is extended.The trial or grace period can be extended once.
- license
Count number - (ReadOnly) The total number of license consumed in the Intersight account.
- license
Count numberPurchased - (ReadOnly) The total number of license purchased from cisco.
- license
License stringInfo Id - license
State 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. - license
Type 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. - mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- net
Substitution number - (ReadOnly) The total number of substituted licenses added or removed.
- object
Type 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
License
License Info Parent[] - (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 LicenseLicense Info Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- 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.
- start
Time string - (ReadOnly) The date and time when the licenseState entered the TrialPeriod or OutOfCompliance state.
- subscription
Id string - (ReadOnly) The id of license subscription.
- substituted
Licenses LicenseLicense Info Substituted License[] - This complex property has following sub-properties:
- License
License Info Tag[] - This complex property has following sub-properties:
- trial
Admin 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.
- version
Contexts LicenseLicense Info Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account_
license_ Sequence[Licensedatas License Info Account License Data Args] - 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[License
License Info Ancestor Args] - (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_ strmoid - (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_ floatpurchased - (ReadOnly) The total number of license purchased from cisco.
- license_
license_ strinfo_ id - 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[License
License Info Parent Args] - (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[LicenseLicense Info Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- 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[LicenseLicense Info Substituted License Args] - This complex property has following sub-properties:
- Sequence[License
License Info Tag Args] - 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[LicenseLicense Info Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
License List<Property Map>Datas - 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 String - (ReadOnly) The Account ID for this managed object.
- active
Admin Boolean - (ReadOnly) The license administrative state.Set this property to 'true' to activate the license entitlements.
- additional
Properties 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.
- class
Id 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.
- create
Time String - (ReadOnly) The time when this managed object was created.
- days
Left Number - (ReadOnly) The number of days left for licenseState to stay in TrialPeriod or OutOfCompliance state.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- end
Time 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.
- enforce
Mode String - (ReadOnly) The entitlement mode reported by Cisco Smart Software Manager.
- error
Desc String - (ReadOnly) The detailed error message when there is any error related to this licensing entitlement.
- evaluation
Period Number - The default Trial or Grace period customer is entitled to.
- expire
Time String - (ReadOnly) The date and time when the next expiration time of license subscription.
- extra
Evaluation Number - The number of days the trial Trial or Grace period is extended.The trial or grace period can be extended once.
- license
Count Number - (ReadOnly) The total number of license consumed in the Intersight account.
- license
Count NumberPurchased - (ReadOnly) The total number of license purchased from cisco.
- license
License StringInfo Id - license
State 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. - license
Type 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. - mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- net
Substitution Number - (ReadOnly) The total number of substituted licenses added or removed.
- object
Type 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:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- 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.
- start
Time String - (ReadOnly) The date and time when the licenseState entered the TrialPeriod or OutOfCompliance state.
- subscription
Id String - (ReadOnly) The id of license subscription.
- substituted
Licenses List<Property Map> - This complex property has following sub-properties:
- List<Property Map>
- This complex property has following sub-properties:
- trial
Admin 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.
- version
Contexts 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.
- Account
License List<LicenseDatas License Info Account License Data> - 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 string - (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 string - Ancestors
List<License
License Info Ancestor> - (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.
- Class
Id 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.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Days
Left double - (ReadOnly) The number of days left for licenseState to stay in TrialPeriod or OutOfCompliance state.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- End
Time 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.
- Enforce
Mode string - (ReadOnly) The entitlement mode reported by Cisco Smart Software Manager.
- Error
Desc string - (ReadOnly) The detailed error message when there is any error related to this licensing entitlement.
- Evaluation
Period double - The default Trial or Grace period customer is entitled to.
- Expire
Time string - (ReadOnly) The date and time when the next expiration time of license subscription.
- Extra
Evaluation double - The number of days the trial Trial or Grace period is extended.The trial or grace period can be extended once.
- License
Count double - (ReadOnly) The total number of license consumed in the Intersight account.
- License
Count doublePurchased - (ReadOnly) The total number of license purchased from cisco.
- License
License stringInfo Id - License
State 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. - License
Type 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. - Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Net
Substitution double - (ReadOnly) The total number of substituted licenses added or removed.
- Object
Type 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<License
License Info Parent> - (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 List<LicenseLicense Info Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- 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.
- Start
Time string - (ReadOnly) The date and time when the licenseState entered the TrialPeriod or OutOfCompliance state.
- Subscription
Id string - (ReadOnly) The id of license subscription.
- Substituted
Licenses List<LicenseLicense Info Substituted License> - This complex property has following sub-properties:
- List<License
License Info Tag> - 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 List<LicenseLicense Info Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Account
License []LicenseDatas License Info Account License Data Args - 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 string - (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 string - Ancestors
[]License
License Info Ancestor Args - (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.
- Class
Id 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.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Days
Left float64 - (ReadOnly) The number of days left for licenseState to stay in TrialPeriod or OutOfCompliance state.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- End
Time 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.
- Enforce
Mode string - (ReadOnly) The entitlement mode reported by Cisco Smart Software Manager.
- Error
Desc string - (ReadOnly) The detailed error message when there is any error related to this licensing entitlement.
- Evaluation
Period float64 - The default Trial or Grace period customer is entitled to.
- Expire
Time string - (ReadOnly) The date and time when the next expiration time of license subscription.
- Extra
Evaluation float64 - The number of days the trial Trial or Grace period is extended.The trial or grace period can be extended once.
- License
Count float64 - (ReadOnly) The total number of license consumed in the Intersight account.
- License
Count float64Purchased - (ReadOnly) The total number of license purchased from cisco.
- License
License stringInfo Id - License
State 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. - License
Type 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. - Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Net
Substitution float64 - (ReadOnly) The total number of substituted licenses added or removed.
- Object
Type 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
[]License
License Info Parent Args - (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 []LicenseLicense Info Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- 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.
- Start
Time string - (ReadOnly) The date and time when the licenseState entered the TrialPeriod or OutOfCompliance state.
- Subscription
Id string - (ReadOnly) The id of license subscription.
- Substituted
Licenses []LicenseLicense Info Substituted License Args - This complex property has following sub-properties:
- []License
License Info Tag Args - 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 []LicenseLicense Info Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
License List<LicenseDatas License Info Account License Data> - 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 String - (ReadOnly) The Account ID for this managed object.
- active
Admin Boolean - (ReadOnly) The license administrative state.Set this property to 'true' to activate the license entitlements.
- additional
Properties String - ancestors
List<License
License Info Ancestor> - (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.
- class
Id 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.
- create
Time String - (ReadOnly) The time when this managed object was created.
- days
Left Double - (ReadOnly) The number of days left for licenseState to stay in TrialPeriod or OutOfCompliance state.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- end
Time 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.
- enforce
Mode String - (ReadOnly) The entitlement mode reported by Cisco Smart Software Manager.
- error
Desc String - (ReadOnly) The detailed error message when there is any error related to this licensing entitlement.
- evaluation
Period Double - The default Trial or Grace period customer is entitled to.
- expire
Time String - (ReadOnly) The date and time when the next expiration time of license subscription.
- extra
Evaluation Double - The number of days the trial Trial or Grace period is extended.The trial or grace period can be extended once.
- license
Count Double - (ReadOnly) The total number of license consumed in the Intersight account.
- license
Count DoublePurchased - (ReadOnly) The total number of license purchased from cisco.
- license
License StringInfo Id - license
State 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. - license
Type 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. - mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- net
Substitution Double - (ReadOnly) The total number of substituted licenses added or removed.
- object
Type 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<License
License Info Parent> - (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 List<LicenseLicense Info Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- 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.
- start
Time String - (ReadOnly) The date and time when the licenseState entered the TrialPeriod or OutOfCompliance state.
- subscription
Id String - (ReadOnly) The id of license subscription.
- substituted
Licenses List<LicenseLicense Info Substituted License> - This complex property has following sub-properties:
- List<License
License Info Tag> - This complex property has following sub-properties:
- trial
Admin 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.
- version
Contexts List<LicenseLicense Info Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
License LicenseDatas License Info Account License Data[] - 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 string - (ReadOnly) The Account ID for this managed object.
- active
Admin boolean - (ReadOnly) The license administrative state.Set this property to 'true' to activate the license entitlements.
- additional
Properties string - ancestors
License
License Info Ancestor[] - (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.
- class
Id 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.
- create
Time string - (ReadOnly) The time when this managed object was created.
- days
Left number - (ReadOnly) The number of days left for licenseState to stay in TrialPeriod or OutOfCompliance state.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- end
Time 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.
- enforce
Mode string - (ReadOnly) The entitlement mode reported by Cisco Smart Software Manager.
- error
Desc string - (ReadOnly) The detailed error message when there is any error related to this licensing entitlement.
- evaluation
Period number - The default Trial or Grace period customer is entitled to.
- expire
Time string - (ReadOnly) The date and time when the next expiration time of license subscription.
- extra
Evaluation number - The number of days the trial Trial or Grace period is extended.The trial or grace period can be extended once.
- license
Count number - (ReadOnly) The total number of license consumed in the Intersight account.
- license
Count numberPurchased - (ReadOnly) The total number of license purchased from cisco.
- license
License stringInfo Id - license
State 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. - license
Type 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. - mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- net
Substitution number - (ReadOnly) The total number of substituted licenses added or removed.
- object
Type 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
License
License Info Parent[] - (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 LicenseLicense Info Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- 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.
- start
Time string - (ReadOnly) The date and time when the licenseState entered the TrialPeriod or OutOfCompliance state.
- subscription
Id string - (ReadOnly) The id of license subscription.
- substituted
Licenses LicenseLicense Info Substituted License[] - This complex property has following sub-properties:
- License
License Info Tag[] - This complex property has following sub-properties:
- trial
Admin 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.
- version
Contexts LicenseLicense Info Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account_
license_ Sequence[Licensedatas License Info Account License Data Args] - 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[License
License Info Ancestor Args] - (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_ strmoid - (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_ floatpurchased - (ReadOnly) The total number of license purchased from cisco.
- license_
license_ strinfo_ id - 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[License
License Info Parent Args] - (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[LicenseLicense Info Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- 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[LicenseLicense Info Substituted License Args] - This complex property has following sub-properties:
- Sequence[License
License Info Tag Args] - 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[LicenseLicense Info Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
License List<Property Map>Datas - 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 String - (ReadOnly) The Account ID for this managed object.
- active
Admin Boolean - (ReadOnly) The license administrative state.Set this property to 'true' to activate the license entitlements.
- additional
Properties 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.
- class
Id 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.
- create
Time String - (ReadOnly) The time when this managed object was created.
- days
Left Number - (ReadOnly) The number of days left for licenseState to stay in TrialPeriod or OutOfCompliance state.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- end
Time 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.
- enforce
Mode String - (ReadOnly) The entitlement mode reported by Cisco Smart Software Manager.
- error
Desc String - (ReadOnly) The detailed error message when there is any error related to this licensing entitlement.
- evaluation
Period Number - The default Trial or Grace period customer is entitled to.
- expire
Time String - (ReadOnly) The date and time when the next expiration time of license subscription.
- extra
Evaluation Number - The number of days the trial Trial or Grace period is extended.The trial or grace period can be extended once.
- license
Count Number - (ReadOnly) The total number of license consumed in the Intersight account.
- license
Count NumberPurchased - (ReadOnly) The total number of license purchased from cisco.
- license
License StringInfo Id - license
State 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. - license
Type 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. - mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- net
Substitution Number - (ReadOnly) The total number of substituted licenses added or removed.
- object
Type 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:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- 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.
- start
Time String - (ReadOnly) The date and time when the licenseState entered the TrialPeriod or OutOfCompliance state.
- subscription
Id String - (ReadOnly) The id of license subscription.
- substituted
Licenses List<Property Map> - This complex property has following sub-properties:
- List<Property Map>
- This complex property has following sub-properties:
- trial
Admin 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.
- version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
Supporting Types
LicenseLicenseInfoAccountLicenseData, LicenseLicenseInfoAccountLicenseDataArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type 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 string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type 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 String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type 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 string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type 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'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type 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 string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type 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 String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type 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 string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type 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'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type 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 string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type 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 String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type 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 string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type 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'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type 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 string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type 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 String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type 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 string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type 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'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type 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
- Additional
Properties string - Class
Id string - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Substituted
License string - (ReadOnly) The substitute license that is used.
- Substituted
Quantity double - (ReadOnly) The number of substitute licenses that are used.
- Substitution
Type string - (ReadOnly) The substitution from lower or from higher tier.
- Additional
Properties string - Class
Id string - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Substituted
License string - (ReadOnly) The substitute license that is used.
- Substituted
Quantity float64 - (ReadOnly) The number of substitute licenses that are used.
- Substitution
Type string - (ReadOnly) The substitution from lower or from higher tier.
- additional
Properties String - class
Id String - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- substituted
License String - (ReadOnly) The substitute license that is used.
- substituted
Quantity Double - (ReadOnly) The number of substitute licenses that are used.
- substitution
Type String - (ReadOnly) The substitution from lower or from higher tier.
- additional
Properties string - class
Id string - object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- substituted
License string - (ReadOnly) The substitute license that is used.
- substituted
Quantity number - (ReadOnly) The number of substitute licenses that are used.
- substitution
Type 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.
- additional
Properties String - class
Id String - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- substituted
License String - (ReadOnly) The substitute license that is used.
- substituted
Quantity Number - (ReadOnly) The number of substitute licenses that are used.
- substitution
Type String - (ReadOnly) The substitution from lower or from higher tier.
LicenseLicenseInfoTag, LicenseLicenseInfoTagArgs
- Additional
Properties string - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- Additional
Properties string - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- additional
Properties String - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
- additional
Properties 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.
- additional
Properties String - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
LicenseLicenseInfoVersionContext, LicenseLicenseInfoVersionContextArgs
- Additional
Properties string - Class
Id string - Interested
Mos List<LicenseLicense Info Version Context Interested Mo> - This complex property has following sub-properties:
- Marked
For boolDeletion - (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 string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos List<LicenseLicense Info Version Context Ref Mo> - (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.
- Version
Type 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 string - Class
Id string - Interested
Mos []LicenseLicense Info Version Context Interested Mo - This complex property has following sub-properties:
- Marked
For boolDeletion - (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 string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos []LicenseLicense Info Version Context Ref Mo - (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.
- Version
Type 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 String - class
Id String - interested
Mos List<LicenseLicense Info Version Context Interested Mo> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (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 String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<LicenseLicense Info Version Context Ref Mo> - (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.
- version
Type 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 string - class
Id string - interested
Mos LicenseLicense Info Version Context Interested Mo[] - This complex property has following sub-properties:
- marked
For booleanDeletion - (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 string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos LicenseLicense Info Version Context Ref Mo[] - (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.
- version
Type 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[LicenseLicense Info Version Context Interested Mo] - This complex property has following sub-properties:
- marked_
for_ booldeletion - (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[LicenseLicense Info Version Context Ref Mo] - (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.
- additional
Properties String - class
Id String - interested
Mos List<Property Map> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (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 String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos 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.
- version
Type 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type 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 string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type 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 String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type 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 string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type 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'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type 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
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type 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 string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type 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 String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type 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 string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type 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'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type 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.