meraki.organizations.LicensingCotermLicensesMove
Explore with Pulumi AI
~>Warning: This resource does not represent a real-world entity in Meraki Dashboard, therefore changing or deleting this resource on its own has no immediate effect. Instead, it is a task part of a Meraki Dashboard workflow. It is executed in Meraki without any additional verification. It does not check if it was executed before or if a similar configuration or action already existed previously.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as meraki from "@pulumi/meraki";
const example = new meraki.organizations.LicensingCotermLicensesMove("example", {
organizationId: "string",
parameters: {
destination: {
mode: "addDevices",
organizationId: "123",
},
licenses: [{
counts: [{
count: 5,
model: "MR Enterprise",
}],
key: "Z2AA-BBBB-CCCC",
}],
},
});
export const merakiOrganizationsLicensingCotermLicensesMoveExample = example;
import pulumi
import pulumi_meraki as meraki
example = meraki.organizations.LicensingCotermLicensesMove("example",
organization_id="string",
parameters={
"destination": {
"mode": "addDevices",
"organization_id": "123",
},
"licenses": [{
"counts": [{
"count": 5,
"model": "MR Enterprise",
}],
"key": "Z2AA-BBBB-CCCC",
}],
})
pulumi.export("merakiOrganizationsLicensingCotermLicensesMoveExample", example)
package main
import (
"github.com/pulumi/pulumi-meraki/sdk/go/meraki/organizations"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := organizations.NewLicensingCotermLicensesMove(ctx, "example", &organizations.LicensingCotermLicensesMoveArgs{
OrganizationId: pulumi.String("string"),
Parameters: &organizations.LicensingCotermLicensesMoveParametersArgs{
Destination: &organizations.LicensingCotermLicensesMoveParametersDestinationArgs{
Mode: pulumi.String("addDevices"),
OrganizationId: pulumi.String("123"),
},
Licenses: organizations.LicensingCotermLicensesMoveParametersLicenseArray{
&organizations.LicensingCotermLicensesMoveParametersLicenseArgs{
Counts: organizations.LicensingCotermLicensesMoveParametersLicenseCountArray{
&organizations.LicensingCotermLicensesMoveParametersLicenseCountArgs{
Count: pulumi.Int(5),
Model: pulumi.String("MR Enterprise"),
},
},
Key: pulumi.String("Z2AA-BBBB-CCCC"),
},
},
},
})
if err != nil {
return err
}
ctx.Export("merakiOrganizationsLicensingCotermLicensesMoveExample", example)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Meraki = Pulumi.Meraki;
return await Deployment.RunAsync(() =>
{
var example = new Meraki.Organizations.LicensingCotermLicensesMove("example", new()
{
OrganizationId = "string",
Parameters = new Meraki.Organizations.Inputs.LicensingCotermLicensesMoveParametersArgs
{
Destination = new Meraki.Organizations.Inputs.LicensingCotermLicensesMoveParametersDestinationArgs
{
Mode = "addDevices",
OrganizationId = "123",
},
Licenses = new[]
{
new Meraki.Organizations.Inputs.LicensingCotermLicensesMoveParametersLicenseArgs
{
Counts = new[]
{
new Meraki.Organizations.Inputs.LicensingCotermLicensesMoveParametersLicenseCountArgs
{
Count = 5,
Model = "MR Enterprise",
},
},
Key = "Z2AA-BBBB-CCCC",
},
},
},
});
return new Dictionary<string, object?>
{
["merakiOrganizationsLicensingCotermLicensesMoveExample"] = example,
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.meraki.organizations.LicensingCotermLicensesMove;
import com.pulumi.meraki.organizations.LicensingCotermLicensesMoveArgs;
import com.pulumi.meraki.organizations.inputs.LicensingCotermLicensesMoveParametersArgs;
import com.pulumi.meraki.organizations.inputs.LicensingCotermLicensesMoveParametersDestinationArgs;
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 example = new LicensingCotermLicensesMove("example", LicensingCotermLicensesMoveArgs.builder()
.organizationId("string")
.parameters(LicensingCotermLicensesMoveParametersArgs.builder()
.destination(LicensingCotermLicensesMoveParametersDestinationArgs.builder()
.mode("addDevices")
.organizationId("123")
.build())
.licenses(LicensingCotermLicensesMoveParametersLicenseArgs.builder()
.counts(LicensingCotermLicensesMoveParametersLicenseCountArgs.builder()
.count(5)
.model("MR Enterprise")
.build())
.key("Z2AA-BBBB-CCCC")
.build())
.build())
.build());
ctx.export("merakiOrganizationsLicensingCotermLicensesMoveExample", example);
}
}
resources:
example:
type: meraki:organizations:LicensingCotermLicensesMove
properties:
organizationId: string
parameters:
destination:
mode: addDevices
organizationId: '123'
licenses:
- counts:
- count: 5
model: MR Enterprise
key: Z2AA-BBBB-CCCC
outputs:
merakiOrganizationsLicensingCotermLicensesMoveExample: ${example}
Create LicensingCotermLicensesMove Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new LicensingCotermLicensesMove(name: string, args: LicensingCotermLicensesMoveArgs, opts?: CustomResourceOptions);
@overload
def LicensingCotermLicensesMove(resource_name: str,
args: LicensingCotermLicensesMoveArgs,
opts: Optional[ResourceOptions] = None)
@overload
def LicensingCotermLicensesMove(resource_name: str,
opts: Optional[ResourceOptions] = None,
organization_id: Optional[str] = None,
parameters: Optional[LicensingCotermLicensesMoveParametersArgs] = None)
func NewLicensingCotermLicensesMove(ctx *Context, name string, args LicensingCotermLicensesMoveArgs, opts ...ResourceOption) (*LicensingCotermLicensesMove, error)
public LicensingCotermLicensesMove(string name, LicensingCotermLicensesMoveArgs args, CustomResourceOptions? opts = null)
public LicensingCotermLicensesMove(String name, LicensingCotermLicensesMoveArgs args)
public LicensingCotermLicensesMove(String name, LicensingCotermLicensesMoveArgs args, CustomResourceOptions options)
type: meraki:organizations:LicensingCotermLicensesMove
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 LicensingCotermLicensesMoveArgs
- 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 LicensingCotermLicensesMoveArgs
- 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 LicensingCotermLicensesMoveArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LicensingCotermLicensesMoveArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LicensingCotermLicensesMoveArgs
- 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 licensingCotermLicensesMoveResource = new Meraki.Organizations.LicensingCotermLicensesMove("licensingCotermLicensesMoveResource", new()
{
OrganizationId = "string",
Parameters = new Meraki.Organizations.Inputs.LicensingCotermLicensesMoveParametersArgs
{
Destination = new Meraki.Organizations.Inputs.LicensingCotermLicensesMoveParametersDestinationArgs
{
Mode = "string",
OrganizationId = "string",
},
Licenses = new[]
{
new Meraki.Organizations.Inputs.LicensingCotermLicensesMoveParametersLicenseArgs
{
Counts = new[]
{
new Meraki.Organizations.Inputs.LicensingCotermLicensesMoveParametersLicenseCountArgs
{
Count = 0,
Model = "string",
},
},
Key = "string",
},
},
},
});
example, err := organizations.NewLicensingCotermLicensesMove(ctx, "licensingCotermLicensesMoveResource", &organizations.LicensingCotermLicensesMoveArgs{
OrganizationId: pulumi.String("string"),
Parameters: &organizations.LicensingCotermLicensesMoveParametersArgs{
Destination: &organizations.LicensingCotermLicensesMoveParametersDestinationArgs{
Mode: pulumi.String("string"),
OrganizationId: pulumi.String("string"),
},
Licenses: organizations.LicensingCotermLicensesMoveParametersLicenseArray{
&organizations.LicensingCotermLicensesMoveParametersLicenseArgs{
Counts: organizations.LicensingCotermLicensesMoveParametersLicenseCountArray{
&organizations.LicensingCotermLicensesMoveParametersLicenseCountArgs{
Count: pulumi.Int(0),
Model: pulumi.String("string"),
},
},
Key: pulumi.String("string"),
},
},
},
})
var licensingCotermLicensesMoveResource = new LicensingCotermLicensesMove("licensingCotermLicensesMoveResource", LicensingCotermLicensesMoveArgs.builder()
.organizationId("string")
.parameters(LicensingCotermLicensesMoveParametersArgs.builder()
.destination(LicensingCotermLicensesMoveParametersDestinationArgs.builder()
.mode("string")
.organizationId("string")
.build())
.licenses(LicensingCotermLicensesMoveParametersLicenseArgs.builder()
.counts(LicensingCotermLicensesMoveParametersLicenseCountArgs.builder()
.count(0)
.model("string")
.build())
.key("string")
.build())
.build())
.build());
licensing_coterm_licenses_move_resource = meraki.organizations.LicensingCotermLicensesMove("licensingCotermLicensesMoveResource",
organization_id="string",
parameters=meraki.organizations.LicensingCotermLicensesMoveParametersArgs(
destination=meraki.organizations.LicensingCotermLicensesMoveParametersDestinationArgs(
mode="string",
organization_id="string",
),
licenses=[meraki.organizations.LicensingCotermLicensesMoveParametersLicenseArgs(
counts=[meraki.organizations.LicensingCotermLicensesMoveParametersLicenseCountArgs(
count=0,
model="string",
)],
key="string",
)],
))
const licensingCotermLicensesMoveResource = new meraki.organizations.LicensingCotermLicensesMove("licensingCotermLicensesMoveResource", {
organizationId: "string",
parameters: {
destination: {
mode: "string",
organizationId: "string",
},
licenses: [{
counts: [{
count: 0,
model: "string",
}],
key: "string",
}],
},
});
type: meraki:organizations:LicensingCotermLicensesMove
properties:
organizationId: string
parameters:
destination:
mode: string
organizationId: string
licenses:
- counts:
- count: 0
model: string
key: string
LicensingCotermLicensesMove Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The LicensingCotermLicensesMove resource accepts the following input properties:
- Organization
Id string - organizationId path parameter. Organization ID
- Parameters
Licensing
Coterm Licenses Move Parameters
- Organization
Id string - organizationId path parameter. Organization ID
- Parameters
Licensing
Coterm Licenses Move Parameters Args
- organization
Id String - organizationId path parameter. Organization ID
- parameters
Licensing
Coterm Licenses Move Parameters
- organization
Id string - organizationId path parameter. Organization ID
- parameters
Licensing
Coterm Licenses Move Parameters
- organization_
id str - organizationId path parameter. Organization ID
- parameters
Licensing
Coterm Licenses Move Parameters Args
- organization
Id String - organizationId path parameter. Organization ID
- parameters Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the LicensingCotermLicensesMove resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Item
Licensing
Coterm Licenses Move Item
- Id string
- The provider-assigned unique ID for this managed resource.
- Item
Licensing
Coterm Licenses Move Item
- id String
- The provider-assigned unique ID for this managed resource.
- item
Licensing
Coterm Licenses Move Item
- id string
- The provider-assigned unique ID for this managed resource.
- item
Licensing
Coterm Licenses Move Item
- id str
- The provider-assigned unique ID for this managed resource.
- item
Licensing
Coterm Licenses Move Item
- id String
- The provider-assigned unique ID for this managed resource.
- item Property Map
Look up Existing LicensingCotermLicensesMove Resource
Get an existing LicensingCotermLicensesMove 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?: LicensingCotermLicensesMoveState, opts?: CustomResourceOptions): LicensingCotermLicensesMove
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
item: Optional[LicensingCotermLicensesMoveItemArgs] = None,
organization_id: Optional[str] = None,
parameters: Optional[LicensingCotermLicensesMoveParametersArgs] = None) -> LicensingCotermLicensesMove
func GetLicensingCotermLicensesMove(ctx *Context, name string, id IDInput, state *LicensingCotermLicensesMoveState, opts ...ResourceOption) (*LicensingCotermLicensesMove, error)
public static LicensingCotermLicensesMove Get(string name, Input<string> id, LicensingCotermLicensesMoveState? state, CustomResourceOptions? opts = null)
public static LicensingCotermLicensesMove get(String name, Output<String> id, LicensingCotermLicensesMoveState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Item
Licensing
Coterm Licenses Move Item - Organization
Id string - organizationId path parameter. Organization ID
- Parameters
Licensing
Coterm Licenses Move Parameters
- Item
Licensing
Coterm Licenses Move Item Args - Organization
Id string - organizationId path parameter. Organization ID
- Parameters
Licensing
Coterm Licenses Move Parameters Args
- item
Licensing
Coterm Licenses Move Item - organization
Id String - organizationId path parameter. Organization ID
- parameters
Licensing
Coterm Licenses Move Parameters
- item
Licensing
Coterm Licenses Move Item - organization
Id string - organizationId path parameter. Organization ID
- parameters
Licensing
Coterm Licenses Move Parameters
- item
Licensing
Coterm Licenses Move Item Args - organization_
id str - organizationId path parameter. Organization ID
- parameters
Licensing
Coterm Licenses Move Parameters Args
- item Property Map
- organization
Id String - organizationId path parameter. Organization ID
- parameters Property Map
Supporting Types
LicensingCotermLicensesMoveItem, LicensingCotermLicensesMoveItemArgs
- Moved
Licenses List<LicensingCoterm Licenses Move Item Moved License> - Newly moved licenses created in the destination organization of the license move operation
- Remainder
Licenses List<LicensingCoterm Licenses Move Item Remainder License> - Remainder licenses created in the source organization as a result of moving a subset of the counts of a license
- Moved
Licenses []LicensingCoterm Licenses Move Item Moved License - Newly moved licenses created in the destination organization of the license move operation
- Remainder
Licenses []LicensingCoterm Licenses Move Item Remainder License - Remainder licenses created in the source organization as a result of moving a subset of the counts of a license
- moved
Licenses List<LicensingCoterm Licenses Move Item Moved License> - Newly moved licenses created in the destination organization of the license move operation
- remainder
Licenses List<LicensingCoterm Licenses Move Item Remainder License> - Remainder licenses created in the source organization as a result of moving a subset of the counts of a license
- moved
Licenses LicensingCoterm Licenses Move Item Moved License[] - Newly moved licenses created in the destination organization of the license move operation
- remainder
Licenses LicensingCoterm Licenses Move Item Remainder License[] - Remainder licenses created in the source organization as a result of moving a subset of the counts of a license
- moved_
licenses Sequence[LicensingCoterm Licenses Move Item Moved License] - Newly moved licenses created in the destination organization of the license move operation
- remainder_
licenses Sequence[LicensingCoterm Licenses Move Item Remainder License] - Remainder licenses created in the source organization as a result of moving a subset of the counts of a license
- moved
Licenses List<Property Map> - Newly moved licenses created in the destination organization of the license move operation
- remainder
Licenses List<Property Map> - Remainder licenses created in the source organization as a result of moving a subset of the counts of a license
LicensingCotermLicensesMoveItemMovedLicense, LicensingCotermLicensesMoveItemMovedLicenseArgs
- Claimed
At string - When the license was claimed into the organization
- Counts
List<Licensing
Coterm Licenses Move Item Moved License Count> - The counts of the license by model type
- Duration int
- The duration (term length) of the license, measured in days
- Editions
List<Licensing
Coterm Licenses Move Item Moved License Edition> - The editions of the license for each relevant product type
- Expired bool
- Flag to indicate if the license is expired
- Invalidated bool
- Flag to indicated that the license is invalidated
- Invalidated
At string - When the license was invalidated. Will be null for active licenses
- Key string
- The key of the license
- Mode string
- The operation mode of the license when it was claimed
- Organization
Id string - The ID of the organization that the license is claimed in
- Started
At string - When the license's term began (approximately the date when the license was created)
- Claimed
At string - When the license was claimed into the organization
- Counts
[]Licensing
Coterm Licenses Move Item Moved License Count - The counts of the license by model type
- Duration int
- The duration (term length) of the license, measured in days
- Editions
[]Licensing
Coterm Licenses Move Item Moved License Edition - The editions of the license for each relevant product type
- Expired bool
- Flag to indicate if the license is expired
- Invalidated bool
- Flag to indicated that the license is invalidated
- Invalidated
At string - When the license was invalidated. Will be null for active licenses
- Key string
- The key of the license
- Mode string
- The operation mode of the license when it was claimed
- Organization
Id string - The ID of the organization that the license is claimed in
- Started
At string - When the license's term began (approximately the date when the license was created)
- claimed
At String - When the license was claimed into the organization
- counts
List<Licensing
Coterm Licenses Move Item Moved License Count> - The counts of the license by model type
- duration Integer
- The duration (term length) of the license, measured in days
- editions
List<Licensing
Coterm Licenses Move Item Moved License Edition> - The editions of the license for each relevant product type
- expired Boolean
- Flag to indicate if the license is expired
- invalidated Boolean
- Flag to indicated that the license is invalidated
- invalidated
At String - When the license was invalidated. Will be null for active licenses
- key String
- The key of the license
- mode String
- The operation mode of the license when it was claimed
- organization
Id String - The ID of the organization that the license is claimed in
- started
At String - When the license's term began (approximately the date when the license was created)
- claimed
At string - When the license was claimed into the organization
- counts
Licensing
Coterm Licenses Move Item Moved License Count[] - The counts of the license by model type
- duration number
- The duration (term length) of the license, measured in days
- editions
Licensing
Coterm Licenses Move Item Moved License Edition[] - The editions of the license for each relevant product type
- expired boolean
- Flag to indicate if the license is expired
- invalidated boolean
- Flag to indicated that the license is invalidated
- invalidated
At string - When the license was invalidated. Will be null for active licenses
- key string
- The key of the license
- mode string
- The operation mode of the license when it was claimed
- organization
Id string - The ID of the organization that the license is claimed in
- started
At string - When the license's term began (approximately the date when the license was created)
- claimed_
at str - When the license was claimed into the organization
- counts
Sequence[Licensing
Coterm Licenses Move Item Moved License Count] - The counts of the license by model type
- duration int
- The duration (term length) of the license, measured in days
- editions
Sequence[Licensing
Coterm Licenses Move Item Moved License Edition] - The editions of the license for each relevant product type
- expired bool
- Flag to indicate if the license is expired
- invalidated bool
- Flag to indicated that the license is invalidated
- invalidated_
at str - When the license was invalidated. Will be null for active licenses
- key str
- The key of the license
- mode str
- The operation mode of the license when it was claimed
- organization_
id str - The ID of the organization that the license is claimed in
- started_
at str - When the license's term began (approximately the date when the license was created)
- claimed
At String - When the license was claimed into the organization
- counts List<Property Map>
- The counts of the license by model type
- duration Number
- The duration (term length) of the license, measured in days
- editions List<Property Map>
- The editions of the license for each relevant product type
- expired Boolean
- Flag to indicate if the license is expired
- invalidated Boolean
- Flag to indicated that the license is invalidated
- invalidated
At String - When the license was invalidated. Will be null for active licenses
- key String
- The key of the license
- mode String
- The operation mode of the license when it was claimed
- organization
Id String - The ID of the organization that the license is claimed in
- started
At String - When the license's term began (approximately the date when the license was created)
LicensingCotermLicensesMoveItemMovedLicenseCount, LicensingCotermLicensesMoveItemMovedLicenseCountArgs
LicensingCotermLicensesMoveItemMovedLicenseEdition, LicensingCotermLicensesMoveItemMovedLicenseEditionArgs
- Edition string
- The name of the license edition
- Product
Type string - The product type of the license edition
- Edition string
- The name of the license edition
- Product
Type string - The product type of the license edition
- edition String
- The name of the license edition
- product
Type String - The product type of the license edition
- edition string
- The name of the license edition
- product
Type string - The product type of the license edition
- edition str
- The name of the license edition
- product_
type str - The product type of the license edition
- edition String
- The name of the license edition
- product
Type String - The product type of the license edition
LicensingCotermLicensesMoveItemRemainderLicense, LicensingCotermLicensesMoveItemRemainderLicenseArgs
- Claimed
At string - When the license was claimed into the organization
- Counts
List<Licensing
Coterm Licenses Move Item Remainder License Count> - The counts of the license by model type
- Duration int
- The duration (term length) of the license, measured in days
- Editions
List<Licensing
Coterm Licenses Move Item Remainder License Edition> - The editions of the license for each relevant product type
- Expired bool
- Flag to indicate if the license is expired
- Invalidated bool
- Flag to indicated that the license is invalidated
- Invalidated
At string - When the license was invalidated. Will be null for active licenses
- Key string
- The key of the license
- Mode string
- The operation mode of the license when it was claimed
- Organization
Id string - The ID of the organization that the license is claimed in
- Started
At string - When the license's term began (approximately the date when the license was created)
- Claimed
At string - When the license was claimed into the organization
- Counts
[]Licensing
Coterm Licenses Move Item Remainder License Count - The counts of the license by model type
- Duration int
- The duration (term length) of the license, measured in days
- Editions
[]Licensing
Coterm Licenses Move Item Remainder License Edition - The editions of the license for each relevant product type
- Expired bool
- Flag to indicate if the license is expired
- Invalidated bool
- Flag to indicated that the license is invalidated
- Invalidated
At string - When the license was invalidated. Will be null for active licenses
- Key string
- The key of the license
- Mode string
- The operation mode of the license when it was claimed
- Organization
Id string - The ID of the organization that the license is claimed in
- Started
At string - When the license's term began (approximately the date when the license was created)
- claimed
At String - When the license was claimed into the organization
- counts
List<Licensing
Coterm Licenses Move Item Remainder License Count> - The counts of the license by model type
- duration Integer
- The duration (term length) of the license, measured in days
- editions
List<Licensing
Coterm Licenses Move Item Remainder License Edition> - The editions of the license for each relevant product type
- expired Boolean
- Flag to indicate if the license is expired
- invalidated Boolean
- Flag to indicated that the license is invalidated
- invalidated
At String - When the license was invalidated. Will be null for active licenses
- key String
- The key of the license
- mode String
- The operation mode of the license when it was claimed
- organization
Id String - The ID of the organization that the license is claimed in
- started
At String - When the license's term began (approximately the date when the license was created)
- claimed
At string - When the license was claimed into the organization
- counts
Licensing
Coterm Licenses Move Item Remainder License Count[] - The counts of the license by model type
- duration number
- The duration (term length) of the license, measured in days
- editions
Licensing
Coterm Licenses Move Item Remainder License Edition[] - The editions of the license for each relevant product type
- expired boolean
- Flag to indicate if the license is expired
- invalidated boolean
- Flag to indicated that the license is invalidated
- invalidated
At string - When the license was invalidated. Will be null for active licenses
- key string
- The key of the license
- mode string
- The operation mode of the license when it was claimed
- organization
Id string - The ID of the organization that the license is claimed in
- started
At string - When the license's term began (approximately the date when the license was created)
- claimed_
at str - When the license was claimed into the organization
- counts
Sequence[Licensing
Coterm Licenses Move Item Remainder License Count] - The counts of the license by model type
- duration int
- The duration (term length) of the license, measured in days
- editions
Sequence[Licensing
Coterm Licenses Move Item Remainder License Edition] - The editions of the license for each relevant product type
- expired bool
- Flag to indicate if the license is expired
- invalidated bool
- Flag to indicated that the license is invalidated
- invalidated_
at str - When the license was invalidated. Will be null for active licenses
- key str
- The key of the license
- mode str
- The operation mode of the license when it was claimed
- organization_
id str - The ID of the organization that the license is claimed in
- started_
at str - When the license's term began (approximately the date when the license was created)
- claimed
At String - When the license was claimed into the organization
- counts List<Property Map>
- The counts of the license by model type
- duration Number
- The duration (term length) of the license, measured in days
- editions List<Property Map>
- The editions of the license for each relevant product type
- expired Boolean
- Flag to indicate if the license is expired
- invalidated Boolean
- Flag to indicated that the license is invalidated
- invalidated
At String - When the license was invalidated. Will be null for active licenses
- key String
- The key of the license
- mode String
- The operation mode of the license when it was claimed
- organization
Id String - The ID of the organization that the license is claimed in
- started
At String - When the license's term began (approximately the date when the license was created)
LicensingCotermLicensesMoveItemRemainderLicenseCount, LicensingCotermLicensesMoveItemRemainderLicenseCountArgs
LicensingCotermLicensesMoveItemRemainderLicenseEdition, LicensingCotermLicensesMoveItemRemainderLicenseEditionArgs
- Edition string
- The name of the license edition
- Product
Type string - The product type of the license edition
- Edition string
- The name of the license edition
- Product
Type string - The product type of the license edition
- edition String
- The name of the license edition
- product
Type String - The product type of the license edition
- edition string
- The name of the license edition
- product
Type string - The product type of the license edition
- edition str
- The name of the license edition
- product_
type str - The product type of the license edition
- edition String
- The name of the license edition
- product
Type String - The product type of the license edition
LicensingCotermLicensesMoveParameters, LicensingCotermLicensesMoveParametersArgs
- Destination
Licensing
Coterm Licenses Move Parameters Destination - Destination data for the license move
- Licenses
List<Licensing
Coterm Licenses Move Parameters License> - The list of licenses to move
- Destination
Licensing
Coterm Licenses Move Parameters Destination - Destination data for the license move
- Licenses
[]Licensing
Coterm Licenses Move Parameters License - The list of licenses to move
- destination
Licensing
Coterm Licenses Move Parameters Destination - Destination data for the license move
- licenses
List<Licensing
Coterm Licenses Move Parameters License> - The list of licenses to move
- destination
Licensing
Coterm Licenses Move Parameters Destination - Destination data for the license move
- licenses
Licensing
Coterm Licenses Move Parameters License[] - The list of licenses to move
- destination
Licensing
Coterm Licenses Move Parameters Destination - Destination data for the license move
- licenses
Sequence[Licensing
Coterm Licenses Move Parameters License] - The list of licenses to move
- destination Property Map
- Destination data for the license move
- licenses List<Property Map>
- The list of licenses to move
LicensingCotermLicensesMoveParametersDestination, LicensingCotermLicensesMoveParametersDestinationArgs
- Mode string
- The claim mode of the moved license
- Organization
Id string - The organization to move the license to
- Mode string
- The claim mode of the moved license
- Organization
Id string - The organization to move the license to
- mode String
- The claim mode of the moved license
- organization
Id String - The organization to move the license to
- mode string
- The claim mode of the moved license
- organization
Id string - The organization to move the license to
- mode str
- The claim mode of the moved license
- organization_
id str - The organization to move the license to
- mode String
- The claim mode of the moved license
- organization
Id String - The organization to move the license to
LicensingCotermLicensesMoveParametersLicense, LicensingCotermLicensesMoveParametersLicenseArgs
- Counts
List<Licensing
Coterm Licenses Move Parameters License Count> - The counts to move from the license by model type
- Key string
- The license key to move counts from
- Counts
[]Licensing
Coterm Licenses Move Parameters License Count - The counts to move from the license by model type
- Key string
- The license key to move counts from
- counts
List<Licensing
Coterm Licenses Move Parameters License Count> - The counts to move from the license by model type
- key String
- The license key to move counts from
- counts
Licensing
Coterm Licenses Move Parameters License Count[] - The counts to move from the license by model type
- key string
- The license key to move counts from
- counts
Sequence[Licensing
Coterm Licenses Move Parameters License Count] - The counts to move from the license by model type
- key str
- The license key to move counts from
- counts List<Property Map>
- The counts to move from the license by model type
- key String
- The license key to move counts from
LicensingCotermLicensesMoveParametersLicenseCount, LicensingCotermLicensesMoveParametersLicenseCountArgs
Package Details
- Repository
- meraki pulumi/pulumi-meraki
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
meraki
Terraform Provider.