1. Packages
  2. Cisco Meraki
  3. API Docs
  4. organizations
  5. LicensesMoveSeats
Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi

meraki.organizations.LicensesMoveSeats

Explore with Pulumi AI

meraki logo
Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi

    ~>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

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.meraki.organizations.LicensesMoveSeats;
    import com.pulumi.meraki.organizations.LicensesMoveSeatsArgs;
    import com.pulumi.meraki.organizations.inputs.LicensesMoveSeatsParametersArgs;
    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 LicensesMoveSeats("example", LicensesMoveSeatsArgs.builder()
                .organizationId("string")
                .parameters(LicensesMoveSeatsParametersArgs.builder()
                    .dest_organization_id("2930418")
                    .license_id("1234")
                    .seat_count(20)
                    .build())
                .build());
    
            ctx.export("merakiOrganizationsLicensesMoveSeatsExample", example);
        }
    }
    
    resources:
      example:
        type: meraki:organizations:LicensesMoveSeats
        properties:
          organizationId: string
          parameters:
            dest_organization_id: '2930418'
            license_id: '1234'
            seat_count: 20
    outputs:
      merakiOrganizationsLicensesMoveSeatsExample: ${example}
    

    Create LicensesMoveSeats Resource

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

    Constructor syntax

    new LicensesMoveSeats(name: string, args: LicensesMoveSeatsArgs, opts?: CustomResourceOptions);
    @overload
    def LicensesMoveSeats(resource_name: str,
                          args: LicensesMoveSeatsArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def LicensesMoveSeats(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          organization_id: Optional[str] = None,
                          parameters: Optional[LicensesMoveSeatsParametersArgs] = None)
    func NewLicensesMoveSeats(ctx *Context, name string, args LicensesMoveSeatsArgs, opts ...ResourceOption) (*LicensesMoveSeats, error)
    public LicensesMoveSeats(string name, LicensesMoveSeatsArgs args, CustomResourceOptions? opts = null)
    public LicensesMoveSeats(String name, LicensesMoveSeatsArgs args)
    public LicensesMoveSeats(String name, LicensesMoveSeatsArgs args, CustomResourceOptions options)
    
    type: meraki:organizations:LicensesMoveSeats
    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 LicensesMoveSeatsArgs
    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 LicensesMoveSeatsArgs
    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 LicensesMoveSeatsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LicensesMoveSeatsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LicensesMoveSeatsArgs
    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 licensesMoveSeatsResource = new Meraki.Organizations.LicensesMoveSeats("licensesMoveSeatsResource", new()
    {
        OrganizationId = "string",
        Parameters = new Meraki.Organizations.Inputs.LicensesMoveSeatsParametersArgs
        {
            DestOrganizationId = "string",
            LicenseId = "string",
            SeatCount = 0,
        },
    });
    
    example, err := organizations.NewLicensesMoveSeats(ctx, "licensesMoveSeatsResource", &organizations.LicensesMoveSeatsArgs{
    	OrganizationId: pulumi.String("string"),
    	Parameters: &organizations.LicensesMoveSeatsParametersArgs{
    		DestOrganizationId: pulumi.String("string"),
    		LicenseId:          pulumi.String("string"),
    		SeatCount:          pulumi.Int(0),
    	},
    })
    
    var licensesMoveSeatsResource = new LicensesMoveSeats("licensesMoveSeatsResource", LicensesMoveSeatsArgs.builder()
        .organizationId("string")
        .parameters(LicensesMoveSeatsParametersArgs.builder()
            .destOrganizationId("string")
            .licenseId("string")
            .seatCount(0)
            .build())
        .build());
    
    licenses_move_seats_resource = meraki.organizations.LicensesMoveSeats("licensesMoveSeatsResource",
        organization_id="string",
        parameters=meraki.organizations.LicensesMoveSeatsParametersArgs(
            dest_organization_id="string",
            license_id="string",
            seat_count=0,
        ))
    
    const licensesMoveSeatsResource = new meraki.organizations.LicensesMoveSeats("licensesMoveSeatsResource", {
        organizationId: "string",
        parameters: {
            destOrganizationId: "string",
            licenseId: "string",
            seatCount: 0,
        },
    });
    
    type: meraki:organizations:LicensesMoveSeats
    properties:
        organizationId: string
        parameters:
            destOrganizationId: string
            licenseId: string
            seatCount: 0
    

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

    OrganizationId string
    organizationId path parameter. Organization ID
    Parameters LicensesMoveSeatsParameters
    OrganizationId string
    organizationId path parameter. Organization ID
    Parameters LicensesMoveSeatsParametersArgs
    organizationId String
    organizationId path parameter. Organization ID
    parameters LicensesMoveSeatsParameters
    organizationId string
    organizationId path parameter. Organization ID
    parameters LicensesMoveSeatsParameters
    organization_id str
    organizationId path parameter. Organization ID
    parameters LicensesMoveSeatsParametersArgs
    organizationId String
    organizationId path parameter. Organization ID
    parameters Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the LicensesMoveSeats resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Item LicensesMoveSeatsItem
    Id string
    The provider-assigned unique ID for this managed resource.
    Item LicensesMoveSeatsItem
    id String
    The provider-assigned unique ID for this managed resource.
    item LicensesMoveSeatsItem
    id string
    The provider-assigned unique ID for this managed resource.
    item LicensesMoveSeatsItem
    id str
    The provider-assigned unique ID for this managed resource.
    item LicensesMoveSeatsItem
    id String
    The provider-assigned unique ID for this managed resource.
    item Property Map

    Look up Existing LicensesMoveSeats Resource

    Get an existing LicensesMoveSeats 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?: LicensesMoveSeatsState, opts?: CustomResourceOptions): LicensesMoveSeats
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            item: Optional[LicensesMoveSeatsItemArgs] = None,
            organization_id: Optional[str] = None,
            parameters: Optional[LicensesMoveSeatsParametersArgs] = None) -> LicensesMoveSeats
    func GetLicensesMoveSeats(ctx *Context, name string, id IDInput, state *LicensesMoveSeatsState, opts ...ResourceOption) (*LicensesMoveSeats, error)
    public static LicensesMoveSeats Get(string name, Input<string> id, LicensesMoveSeatsState? state, CustomResourceOptions? opts = null)
    public static LicensesMoveSeats get(String name, Output<String> id, LicensesMoveSeatsState 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.
    The following state arguments are supported:
    Item LicensesMoveSeatsItem
    OrganizationId string
    organizationId path parameter. Organization ID
    Parameters LicensesMoveSeatsParameters
    item LicensesMoveSeatsItem
    organizationId String
    organizationId path parameter. Organization ID
    parameters LicensesMoveSeatsParameters
    item LicensesMoveSeatsItem
    organizationId string
    organizationId path parameter. Organization ID
    parameters LicensesMoveSeatsParameters
    item Property Map
    organizationId String
    organizationId path parameter. Organization ID
    parameters Property Map

    Supporting Types

    LicensesMoveSeatsItem, LicensesMoveSeatsItemArgs

    DestOrganizationId string
    The ID of the organization to move the SM seats to
    LicenseId string
    The ID of the SM license to move the seats from
    SeatCount int
    The number of seats to move to the new organization. Must be less than or equal to the total number of seats of the license
    DestOrganizationId string
    The ID of the organization to move the SM seats to
    LicenseId string
    The ID of the SM license to move the seats from
    SeatCount int
    The number of seats to move to the new organization. Must be less than or equal to the total number of seats of the license
    destOrganizationId String
    The ID of the organization to move the SM seats to
    licenseId String
    The ID of the SM license to move the seats from
    seatCount Integer
    The number of seats to move to the new organization. Must be less than or equal to the total number of seats of the license
    destOrganizationId string
    The ID of the organization to move the SM seats to
    licenseId string
    The ID of the SM license to move the seats from
    seatCount number
    The number of seats to move to the new organization. Must be less than or equal to the total number of seats of the license
    dest_organization_id str
    The ID of the organization to move the SM seats to
    license_id str
    The ID of the SM license to move the seats from
    seat_count int
    The number of seats to move to the new organization. Must be less than or equal to the total number of seats of the license
    destOrganizationId String
    The ID of the organization to move the SM seats to
    licenseId String
    The ID of the SM license to move the seats from
    seatCount Number
    The number of seats to move to the new organization. Must be less than or equal to the total number of seats of the license

    LicensesMoveSeatsParameters, LicensesMoveSeatsParametersArgs

    DestOrganizationId string
    The ID of the organization to move the SM seats to
    LicenseId string
    The ID of the SM license to move the seats from
    SeatCount int
    The number of seats to move to the new organization. Must be less than or equal to the total number of seats of the license
    DestOrganizationId string
    The ID of the organization to move the SM seats to
    LicenseId string
    The ID of the SM license to move the seats from
    SeatCount int
    The number of seats to move to the new organization. Must be less than or equal to the total number of seats of the license
    destOrganizationId String
    The ID of the organization to move the SM seats to
    licenseId String
    The ID of the SM license to move the seats from
    seatCount Integer
    The number of seats to move to the new organization. Must be less than or equal to the total number of seats of the license
    destOrganizationId string
    The ID of the organization to move the SM seats to
    licenseId string
    The ID of the SM license to move the seats from
    seatCount number
    The number of seats to move to the new organization. Must be less than or equal to the total number of seats of the license
    dest_organization_id str
    The ID of the organization to move the SM seats to
    license_id str
    The ID of the SM license to move the seats from
    seat_count int
    The number of seats to move to the new organization. Must be less than or equal to the total number of seats of the license
    destOrganizationId String
    The ID of the organization to move the SM seats to
    licenseId String
    The ID of the SM license to move the seats from
    seatCount Number
    The number of seats to move to the new organization. Must be less than or equal to the total number of seats of the license

    Package Details

    Repository
    meraki pulumi/pulumi-meraki
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the meraki Terraform Provider.
    meraki logo
    Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi