Cisco Meraki v0.4.1 published on Saturday, Mar 15, 2025 by Pulumi
meraki.administered.getLicensingSubscriptionSubscriptions
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as meraki from "@pulumi/meraki";
const example = meraki.administered.getLicensingSubscriptionSubscriptions({
endDate: "string",
endingBefore: "string",
organizationIds: ["string"],
perPage: 1,
productTypes: ["string"],
startDate: "string",
startingAfter: "string",
statuses: ["string"],
subscriptionIds: ["string"],
});
export const merakiAdministeredLicensingSubscriptionSubscriptionsExample = example.then(example => example.items);
import pulumi
import pulumi_meraki as meraki
example = meraki.administered.get_licensing_subscription_subscriptions(end_date="string",
ending_before="string",
organization_ids=["string"],
per_page=1,
product_types=["string"],
start_date="string",
starting_after="string",
statuses=["string"],
subscription_ids=["string"])
pulumi.export("merakiAdministeredLicensingSubscriptionSubscriptionsExample", example.items)
package main
import (
"github.com/pulumi/pulumi-meraki/sdk/go/meraki/administered"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := administered.GetLicensingSubscriptionSubscriptions(ctx, &administered.GetLicensingSubscriptionSubscriptionsArgs{
EndDate: pulumi.StringRef("string"),
EndingBefore: pulumi.StringRef("string"),
OrganizationIds: []string{
"string",
},
PerPage: pulumi.IntRef(1),
ProductTypes: []string{
"string",
},
StartDate: pulumi.StringRef("string"),
StartingAfter: pulumi.StringRef("string"),
Statuses: []string{
"string",
},
SubscriptionIds: []string{
"string",
},
}, nil)
if err != nil {
return err
}
ctx.Export("merakiAdministeredLicensingSubscriptionSubscriptionsExample", example.Items)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Meraki = Pulumi.Meraki;
return await Deployment.RunAsync(() =>
{
var example = Meraki.Administered.GetLicensingSubscriptionSubscriptions.Invoke(new()
{
EndDate = "string",
EndingBefore = "string",
OrganizationIds = new[]
{
"string",
},
PerPage = 1,
ProductTypes = new[]
{
"string",
},
StartDate = "string",
StartingAfter = "string",
Statuses = new[]
{
"string",
},
SubscriptionIds = new[]
{
"string",
},
});
return new Dictionary<string, object?>
{
["merakiAdministeredLicensingSubscriptionSubscriptionsExample"] = example.Apply(getLicensingSubscriptionSubscriptionsResult => getLicensingSubscriptionSubscriptionsResult.Items),
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.meraki.administered.AdministeredFunctions;
import com.pulumi.meraki.administered.inputs.GetLicensingSubscriptionSubscriptionsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var example = AdministeredFunctions.getLicensingSubscriptionSubscriptions(GetLicensingSubscriptionSubscriptionsArgs.builder()
.endDate("string")
.endingBefore("string")
.organizationIds("string")
.perPage(1)
.productTypes("string")
.startDate("string")
.startingAfter("string")
.statuses("string")
.subscriptionIds("string")
.build());
ctx.export("merakiAdministeredLicensingSubscriptionSubscriptionsExample", example.applyValue(getLicensingSubscriptionSubscriptionsResult -> getLicensingSubscriptionSubscriptionsResult.items()));
}
}
variables:
example:
fn::invoke:
function: meraki:administered:getLicensingSubscriptionSubscriptions
arguments:
endDate: string
endingBefore: string
organizationIds:
- string
perPage: 1
productTypes:
- string
startDate: string
startingAfter: string
statuses:
- string
subscriptionIds:
- string
outputs:
merakiAdministeredLicensingSubscriptionSubscriptionsExample: ${example.items}
Using getLicensingSubscriptionSubscriptions
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getLicensingSubscriptionSubscriptions(args: GetLicensingSubscriptionSubscriptionsArgs, opts?: InvokeOptions): Promise<GetLicensingSubscriptionSubscriptionsResult>
function getLicensingSubscriptionSubscriptionsOutput(args: GetLicensingSubscriptionSubscriptionsOutputArgs, opts?: InvokeOptions): Output<GetLicensingSubscriptionSubscriptionsResult>
def get_licensing_subscription_subscriptions(end_date: Optional[str] = None,
ending_before: Optional[str] = None,
organization_ids: Optional[Sequence[str]] = None,
per_page: Optional[int] = None,
product_types: Optional[Sequence[str]] = None,
start_date: Optional[str] = None,
starting_after: Optional[str] = None,
statuses: Optional[Sequence[str]] = None,
subscription_ids: Optional[Sequence[str]] = None,
opts: Optional[InvokeOptions] = None) -> GetLicensingSubscriptionSubscriptionsResult
def get_licensing_subscription_subscriptions_output(end_date: Optional[pulumi.Input[str]] = None,
ending_before: Optional[pulumi.Input[str]] = None,
organization_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
per_page: Optional[pulumi.Input[int]] = None,
product_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
start_date: Optional[pulumi.Input[str]] = None,
starting_after: Optional[pulumi.Input[str]] = None,
statuses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
subscription_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetLicensingSubscriptionSubscriptionsResult]
func GetLicensingSubscriptionSubscriptions(ctx *Context, args *GetLicensingSubscriptionSubscriptionsArgs, opts ...InvokeOption) (*GetLicensingSubscriptionSubscriptionsResult, error)
func GetLicensingSubscriptionSubscriptionsOutput(ctx *Context, args *GetLicensingSubscriptionSubscriptionsOutputArgs, opts ...InvokeOption) GetLicensingSubscriptionSubscriptionsResultOutput
> Note: This function is named GetLicensingSubscriptionSubscriptions
in the Go SDK.
public static class GetLicensingSubscriptionSubscriptions
{
public static Task<GetLicensingSubscriptionSubscriptionsResult> InvokeAsync(GetLicensingSubscriptionSubscriptionsArgs args, InvokeOptions? opts = null)
public static Output<GetLicensingSubscriptionSubscriptionsResult> Invoke(GetLicensingSubscriptionSubscriptionsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetLicensingSubscriptionSubscriptionsResult> getLicensingSubscriptionSubscriptions(GetLicensingSubscriptionSubscriptionsArgs args, InvokeOptions options)
public static Output<GetLicensingSubscriptionSubscriptionsResult> getLicensingSubscriptionSubscriptions(GetLicensingSubscriptionSubscriptionsArgs args, InvokeOptions options)
fn::invoke:
function: meraki:administered/getLicensingSubscriptionSubscriptions:getLicensingSubscriptionSubscriptions
arguments:
# arguments dictionary
The following arguments are supported:
- End
Date string - endDate query parameter. Filter subscriptions by end date, ISO 8601 format. To filter with a range of dates, use 'endDate[ ]=?' in the request. Accepted options include lt, gt, lte, gte.
- Ending
Before string - endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- Organization
Ids List<string> - organizationIds query parameter. Organizations to get associated subscriptions for
- Per
Page int - perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- Product
Types List<string> - productTypes query parameter. List of product types that returned subscriptions need to have entitlements for.
- Start
Date string - startDate query parameter. Filter subscriptions by start date, ISO 8601 format. To filter with a range of dates, use 'startDate[ ]=?' in the request. Accepted options include lt, gt, lte, gte.
- Starting
After string - startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- Statuses List<string>
- statuses query parameter. List of statuses that returned subscriptions can have
- Subscription
Ids List<string> - subscriptionIds query parameter. List of subscription ids to fetch
- End
Date string - endDate query parameter. Filter subscriptions by end date, ISO 8601 format. To filter with a range of dates, use 'endDate[ ]=?' in the request. Accepted options include lt, gt, lte, gte.
- Ending
Before string - endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- Organization
Ids []string - organizationIds query parameter. Organizations to get associated subscriptions for
- Per
Page int - perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- Product
Types []string - productTypes query parameter. List of product types that returned subscriptions need to have entitlements for.
- Start
Date string - startDate query parameter. Filter subscriptions by start date, ISO 8601 format. To filter with a range of dates, use 'startDate[ ]=?' in the request. Accepted options include lt, gt, lte, gte.
- Starting
After string - startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- Statuses []string
- statuses query parameter. List of statuses that returned subscriptions can have
- Subscription
Ids []string - subscriptionIds query parameter. List of subscription ids to fetch
- end
Date String - endDate query parameter. Filter subscriptions by end date, ISO 8601 format. To filter with a range of dates, use 'endDate[ ]=?' in the request. Accepted options include lt, gt, lte, gte.
- ending
Before String - endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- organization
Ids List<String> - organizationIds query parameter. Organizations to get associated subscriptions for
- per
Page Integer - perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- product
Types List<String> - productTypes query parameter. List of product types that returned subscriptions need to have entitlements for.
- start
Date String - startDate query parameter. Filter subscriptions by start date, ISO 8601 format. To filter with a range of dates, use 'startDate[ ]=?' in the request. Accepted options include lt, gt, lte, gte.
- starting
After String - startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- statuses List<String>
- statuses query parameter. List of statuses that returned subscriptions can have
- subscription
Ids List<String> - subscriptionIds query parameter. List of subscription ids to fetch
- end
Date string - endDate query parameter. Filter subscriptions by end date, ISO 8601 format. To filter with a range of dates, use 'endDate[ ]=?' in the request. Accepted options include lt, gt, lte, gte.
- ending
Before string - endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- organization
Ids string[] - organizationIds query parameter. Organizations to get associated subscriptions for
- per
Page number - perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- product
Types string[] - productTypes query parameter. List of product types that returned subscriptions need to have entitlements for.
- start
Date string - startDate query parameter. Filter subscriptions by start date, ISO 8601 format. To filter with a range of dates, use 'startDate[ ]=?' in the request. Accepted options include lt, gt, lte, gte.
- starting
After string - startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- statuses string[]
- statuses query parameter. List of statuses that returned subscriptions can have
- subscription
Ids string[] - subscriptionIds query parameter. List of subscription ids to fetch
- end_
date str - endDate query parameter. Filter subscriptions by end date, ISO 8601 format. To filter with a range of dates, use 'endDate[ ]=?' in the request. Accepted options include lt, gt, lte, gte.
- ending_
before str - endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- organization_
ids Sequence[str] - organizationIds query parameter. Organizations to get associated subscriptions for
- per_
page int - perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- product_
types Sequence[str] - productTypes query parameter. List of product types that returned subscriptions need to have entitlements for.
- start_
date str - startDate query parameter. Filter subscriptions by start date, ISO 8601 format. To filter with a range of dates, use 'startDate[ ]=?' in the request. Accepted options include lt, gt, lte, gte.
- starting_
after str - startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- statuses Sequence[str]
- statuses query parameter. List of statuses that returned subscriptions can have
- subscription_
ids Sequence[str] - subscriptionIds query parameter. List of subscription ids to fetch
- end
Date String - endDate query parameter. Filter subscriptions by end date, ISO 8601 format. To filter with a range of dates, use 'endDate[ ]=?' in the request. Accepted options include lt, gt, lte, gte.
- ending
Before String - endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- organization
Ids List<String> - organizationIds query parameter. Organizations to get associated subscriptions for
- per
Page Number - perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- product
Types List<String> - productTypes query parameter. List of product types that returned subscriptions need to have entitlements for.
- start
Date String - startDate query parameter. Filter subscriptions by start date, ISO 8601 format. To filter with a range of dates, use 'startDate[ ]=?' in the request. Accepted options include lt, gt, lte, gte.
- starting
After String - startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- statuses List<String>
- statuses query parameter. List of statuses that returned subscriptions can have
- subscription
Ids List<String> - subscriptionIds query parameter. List of subscription ids to fetch
getLicensingSubscriptionSubscriptions Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
List<Get
Licensing Subscription Subscriptions Item> - Array of ResponseLicensingGetAdministeredLicensingSubscriptionSubscriptions
- End
Date string - endDate query parameter. Filter subscriptions by end date, ISO 8601 format. To filter with a range of dates, use 'endDate[ ]=?' in the request. Accepted options include lt, gt, lte, gte.
- Ending
Before string - endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- Organization
Ids List<string> - organizationIds query parameter. Organizations to get associated subscriptions for
- Per
Page int - perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- Product
Types List<string> - productTypes query parameter. List of product types that returned subscriptions need to have entitlements for.
- Start
Date string - startDate query parameter. Filter subscriptions by start date, ISO 8601 format. To filter with a range of dates, use 'startDate[ ]=?' in the request. Accepted options include lt, gt, lte, gte.
- Starting
After string - startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- Statuses List<string>
- statuses query parameter. List of statuses that returned subscriptions can have
- Subscription
Ids List<string> - subscriptionIds query parameter. List of subscription ids to fetch
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
[]Get
Licensing Subscription Subscriptions Item - Array of ResponseLicensingGetAdministeredLicensingSubscriptionSubscriptions
- End
Date string - endDate query parameter. Filter subscriptions by end date, ISO 8601 format. To filter with a range of dates, use 'endDate[ ]=?' in the request. Accepted options include lt, gt, lte, gte.
- Ending
Before string - endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- Organization
Ids []string - organizationIds query parameter. Organizations to get associated subscriptions for
- Per
Page int - perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- Product
Types []string - productTypes query parameter. List of product types that returned subscriptions need to have entitlements for.
- Start
Date string - startDate query parameter. Filter subscriptions by start date, ISO 8601 format. To filter with a range of dates, use 'startDate[ ]=?' in the request. Accepted options include lt, gt, lte, gte.
- Starting
After string - startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- Statuses []string
- statuses query parameter. List of statuses that returned subscriptions can have
- Subscription
Ids []string - subscriptionIds query parameter. List of subscription ids to fetch
- id String
- The provider-assigned unique ID for this managed resource.
- items
List<Get
Licensing Subscription Subscriptions Item> - Array of ResponseLicensingGetAdministeredLicensingSubscriptionSubscriptions
- end
Date String - endDate query parameter. Filter subscriptions by end date, ISO 8601 format. To filter with a range of dates, use 'endDate[ ]=?' in the request. Accepted options include lt, gt, lte, gte.
- ending
Before String - endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- organization
Ids List<String> - organizationIds query parameter. Organizations to get associated subscriptions for
- per
Page Integer - perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- product
Types List<String> - productTypes query parameter. List of product types that returned subscriptions need to have entitlements for.
- start
Date String - startDate query parameter. Filter subscriptions by start date, ISO 8601 format. To filter with a range of dates, use 'startDate[ ]=?' in the request. Accepted options include lt, gt, lte, gte.
- starting
After String - startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- statuses List<String>
- statuses query parameter. List of statuses that returned subscriptions can have
- subscription
Ids List<String> - subscriptionIds query parameter. List of subscription ids to fetch
- id string
- The provider-assigned unique ID for this managed resource.
- items
Get
Licensing Subscription Subscriptions Item[] - Array of ResponseLicensingGetAdministeredLicensingSubscriptionSubscriptions
- end
Date string - endDate query parameter. Filter subscriptions by end date, ISO 8601 format. To filter with a range of dates, use 'endDate[ ]=?' in the request. Accepted options include lt, gt, lte, gte.
- ending
Before string - endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- organization
Ids string[] - organizationIds query parameter. Organizations to get associated subscriptions for
- per
Page number - perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- product
Types string[] - productTypes query parameter. List of product types that returned subscriptions need to have entitlements for.
- start
Date string - startDate query parameter. Filter subscriptions by start date, ISO 8601 format. To filter with a range of dates, use 'startDate[ ]=?' in the request. Accepted options include lt, gt, lte, gte.
- starting
After string - startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- statuses string[]
- statuses query parameter. List of statuses that returned subscriptions can have
- subscription
Ids string[] - subscriptionIds query parameter. List of subscription ids to fetch
- id str
- The provider-assigned unique ID for this managed resource.
- items
Sequence[Get
Licensing Subscription Subscriptions Item] - Array of ResponseLicensingGetAdministeredLicensingSubscriptionSubscriptions
- end_
date str - endDate query parameter. Filter subscriptions by end date, ISO 8601 format. To filter with a range of dates, use 'endDate[ ]=?' in the request. Accepted options include lt, gt, lte, gte.
- ending_
before str - endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- organization_
ids Sequence[str] - organizationIds query parameter. Organizations to get associated subscriptions for
- per_
page int - perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- product_
types Sequence[str] - productTypes query parameter. List of product types that returned subscriptions need to have entitlements for.
- start_
date str - startDate query parameter. Filter subscriptions by start date, ISO 8601 format. To filter with a range of dates, use 'startDate[ ]=?' in the request. Accepted options include lt, gt, lte, gte.
- starting_
after str - startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- statuses Sequence[str]
- statuses query parameter. List of statuses that returned subscriptions can have
- subscription_
ids Sequence[str] - subscriptionIds query parameter. List of subscription ids to fetch
- id String
- The provider-assigned unique ID for this managed resource.
- items List<Property Map>
- Array of ResponseLicensingGetAdministeredLicensingSubscriptionSubscriptions
- end
Date String - endDate query parameter. Filter subscriptions by end date, ISO 8601 format. To filter with a range of dates, use 'endDate[ ]=?' in the request. Accepted options include lt, gt, lte, gte.
- ending
Before String - endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- organization
Ids List<String> - organizationIds query parameter. Organizations to get associated subscriptions for
- per
Page Number - perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
- product
Types List<String> - productTypes query parameter. List of product types that returned subscriptions need to have entitlements for.
- start
Date String - startDate query parameter. Filter subscriptions by start date, ISO 8601 format. To filter with a range of dates, use 'startDate[ ]=?' in the request. Accepted options include lt, gt, lte, gte.
- starting
After String - startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
- statuses List<String>
- statuses query parameter. List of statuses that returned subscriptions can have
- subscription
Ids List<String> - subscriptionIds query parameter. List of subscription ids to fetch
Supporting Types
GetLicensingSubscriptionSubscriptionsItem
- Counts
This property is required. GetLicensing Subscription Subscriptions Item Counts - Numeric breakdown of network and entitlement counts
- Description
This property is required. string - Subscription description
- End
Date This property is required. string - Subscription expiration date
- Entitlements
This property is required. List<GetLicensing Subscription Subscriptions Item Entitlement> - Entitlement info
- Name
This property is required. string - Subscription name
- Product
Types This property is required. List<string> - Products the subscription has entitlements for
- Start
Date This property is required. string - Subscription start date
- Status
This property is required. string - Subscription status
- Subscription
Id This property is required. string - Subscription's ID
- Web
Order Id This property is required. string - Web order id
- Counts
This property is required. GetLicensing Subscription Subscriptions Item Counts - Numeric breakdown of network and entitlement counts
- Description
This property is required. string - Subscription description
- End
Date This property is required. string - Subscription expiration date
- Entitlements
This property is required. []GetLicensing Subscription Subscriptions Item Entitlement - Entitlement info
- Name
This property is required. string - Subscription name
- Product
Types This property is required. []string - Products the subscription has entitlements for
- Start
Date This property is required. string - Subscription start date
- Status
This property is required. string - Subscription status
- Subscription
Id This property is required. string - Subscription's ID
- Web
Order Id This property is required. string - Web order id
- counts
This property is required. GetLicensing Subscription Subscriptions Item Counts - Numeric breakdown of network and entitlement counts
- description
This property is required. String - Subscription description
- end
Date This property is required. String - Subscription expiration date
- entitlements
This property is required. List<GetLicensing Subscription Subscriptions Item Entitlement> - Entitlement info
- name
This property is required. String - Subscription name
- product
Types This property is required. List<String> - Products the subscription has entitlements for
- start
Date This property is required. String - Subscription start date
- status
This property is required. String - Subscription status
- subscription
Id This property is required. String - Subscription's ID
- web
Order Id This property is required. String - Web order id
- counts
This property is required. GetLicensing Subscription Subscriptions Item Counts - Numeric breakdown of network and entitlement counts
- description
This property is required. string - Subscription description
- end
Date This property is required. string - Subscription expiration date
- entitlements
This property is required. GetLicensing Subscription Subscriptions Item Entitlement[] - Entitlement info
- name
This property is required. string - Subscription name
- product
Types This property is required. string[] - Products the subscription has entitlements for
- start
Date This property is required. string - Subscription start date
- status
This property is required. string - Subscription status
- subscription
Id This property is required. string - Subscription's ID
- web
Order Id This property is required. string - Web order id
- counts
This property is required. GetLicensing Subscription Subscriptions Item Counts - Numeric breakdown of network and entitlement counts
- description
This property is required. str - Subscription description
- end_
date This property is required. str - Subscription expiration date
- entitlements
This property is required. Sequence[GetLicensing Subscription Subscriptions Item Entitlement] - Entitlement info
- name
This property is required. str - Subscription name
- product_
types This property is required. Sequence[str] - Products the subscription has entitlements for
- start_
date This property is required. str - Subscription start date
- status
This property is required. str - Subscription status
- subscription_
id This property is required. str - Subscription's ID
- web_
order_ id This property is required. str - Web order id
- counts
This property is required. Property Map - Numeric breakdown of network and entitlement counts
- description
This property is required. String - Subscription description
- end
Date This property is required. String - Subscription expiration date
- entitlements
This property is required. List<Property Map> - Entitlement info
- name
This property is required. String - Subscription name
- product
Types This property is required. List<String> - Products the subscription has entitlements for
- start
Date This property is required. String - Subscription start date
- status
This property is required. String - Subscription status
- subscription
Id This property is required. String - Subscription's ID
- web
Order Id This property is required. String - Web order id
GetLicensingSubscriptionSubscriptionsItemCounts
- Networks
This property is required. int - Number of networks bound to this subscription
- Seats
This property is required. GetLicensing Subscription Subscriptions Item Counts Seats - Seat distribution
- Networks
This property is required. int - Number of networks bound to this subscription
- Seats
This property is required. GetLicensing Subscription Subscriptions Item Counts Seats - Seat distribution
- networks
This property is required. Integer - Number of networks bound to this subscription
- seats
This property is required. GetLicensing Subscription Subscriptions Item Counts Seats - Seat distribution
- networks
This property is required. number - Number of networks bound to this subscription
- seats
This property is required. GetLicensing Subscription Subscriptions Item Counts Seats - Seat distribution
- networks
This property is required. int - Number of networks bound to this subscription
- seats
This property is required. GetLicensing Subscription Subscriptions Item Counts Seats - Seat distribution
- networks
This property is required. Number - Number of networks bound to this subscription
- seats
This property is required. Property Map - Seat distribution
GetLicensingSubscriptionSubscriptionsItemCountsSeats
GetLicensingSubscriptionSubscriptionsItemEntitlement
- Seats
This property is required. GetLicensing Subscription Subscriptions Item Entitlement Seats - Seat distribution
- Sku
This property is required. string - SKU of the required product
- Seats
This property is required. GetLicensing Subscription Subscriptions Item Entitlement Seats - Seat distribution
- Sku
This property is required. string - SKU of the required product
- seats
This property is required. GetLicensing Subscription Subscriptions Item Entitlement Seats - Seat distribution
- sku
This property is required. String - SKU of the required product
- seats
This property is required. GetLicensing Subscription Subscriptions Item Entitlement Seats - Seat distribution
- sku
This property is required. string - SKU of the required product
- seats
This property is required. GetLicensing Subscription Subscriptions Item Entitlement Seats - Seat distribution
- sku
This property is required. str - SKU of the required product
- seats
This property is required. Property Map - Seat distribution
- sku
This property is required. String - SKU of the required product
GetLicensingSubscriptionSubscriptionsItemEntitlementSeats
Package Details
- Repository
- meraki pulumi/pulumi-meraki
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
meraki
Terraform Provider.