Cisco Meraki v0.3.2 published on Tuesday, Sep 24, 2024 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)
// Output-based functions aren't available in Java yet
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
Get
Licensing Subscription Subscriptions Item Counts - Numeric breakdown of network and entitlement counts
- Description string
- Subscription description
- End
Date string - Subscription expiration date
- Entitlements
List<Get
Licensing Subscription Subscriptions Item Entitlement> - Entitlement info
- Name string
- Subscription name
- Product
Types List<string> - Products the subscription has entitlements for
- Start
Date string - Subscription start date
- Status string
- Subscription status
- Subscription
Id string - Subscription's ID
- Web
Order stringId - Web order id
- Counts
Get
Licensing Subscription Subscriptions Item Counts - Numeric breakdown of network and entitlement counts
- Description string
- Subscription description
- End
Date string - Subscription expiration date
- Entitlements
[]Get
Licensing Subscription Subscriptions Item Entitlement - Entitlement info
- Name string
- Subscription name
- Product
Types []string - Products the subscription has entitlements for
- Start
Date string - Subscription start date
- Status string
- Subscription status
- Subscription
Id string - Subscription's ID
- Web
Order stringId - Web order id
- counts
Get
Licensing Subscription Subscriptions Item Counts - Numeric breakdown of network and entitlement counts
- description String
- Subscription description
- end
Date String - Subscription expiration date
- entitlements
List<Get
Licensing Subscription Subscriptions Item Entitlement> - Entitlement info
- name String
- Subscription name
- product
Types List<String> - Products the subscription has entitlements for
- start
Date String - Subscription start date
- status String
- Subscription status
- subscription
Id String - Subscription's ID
- web
Order StringId - Web order id
- counts
Get
Licensing Subscription Subscriptions Item Counts - Numeric breakdown of network and entitlement counts
- description string
- Subscription description
- end
Date string - Subscription expiration date
- entitlements
Get
Licensing Subscription Subscriptions Item Entitlement[] - Entitlement info
- name string
- Subscription name
- product
Types string[] - Products the subscription has entitlements for
- start
Date string - Subscription start date
- status string
- Subscription status
- subscription
Id string - Subscription's ID
- web
Order stringId - Web order id
- counts
Get
Licensing Subscription Subscriptions Item Counts - Numeric breakdown of network and entitlement counts
- description str
- Subscription description
- end_
date str - Subscription expiration date
- entitlements
Sequence[Get
Licensing Subscription Subscriptions Item Entitlement] - Entitlement info
- name str
- Subscription name
- product_
types Sequence[str] - Products the subscription has entitlements for
- start_
date str - Subscription start date
- status str
- Subscription status
- subscription_
id str - Subscription's ID
- web_
order_ strid - Web order id
- counts Property Map
- Numeric breakdown of network and entitlement counts
- description String
- Subscription description
- end
Date String - Subscription expiration date
- entitlements List<Property Map>
- Entitlement info
- name String
- Subscription name
- product
Types List<String> - Products the subscription has entitlements for
- start
Date String - Subscription start date
- status String
- Subscription status
- subscription
Id String - Subscription's ID
- web
Order StringId - Web order id
GetLicensingSubscriptionSubscriptionsItemCounts
- Networks int
- Number of networks bound to this subscription
- Seats
Get
Licensing Subscription Subscriptions Item Counts Seats - Seat distribution
- Networks int
- Number of networks bound to this subscription
- Seats
Get
Licensing Subscription Subscriptions Item Counts Seats - Seat distribution
- networks Integer
- Number of networks bound to this subscription
- seats
Get
Licensing Subscription Subscriptions Item Counts Seats - Seat distribution
- networks number
- Number of networks bound to this subscription
- seats
Get
Licensing Subscription Subscriptions Item Counts Seats - Seat distribution
- networks int
- Number of networks bound to this subscription
- seats
Get
Licensing Subscription Subscriptions Item Counts Seats - Seat distribution
- networks Number
- Number of networks bound to this subscription
- seats Property Map
- Seat distribution
GetLicensingSubscriptionSubscriptionsItemCountsSeats
GetLicensingSubscriptionSubscriptionsItemEntitlement
- Seats
Get
Licensing Subscription Subscriptions Item Entitlement Seats - Seat distribution
- Sku string
- SKU of the required product
- Seats
Get
Licensing Subscription Subscriptions Item Entitlement Seats - Seat distribution
- Sku string
- SKU of the required product
- seats
Get
Licensing Subscription Subscriptions Item Entitlement Seats - Seat distribution
- sku String
- SKU of the required product
- seats
Get
Licensing Subscription Subscriptions Item Entitlement Seats - Seat distribution
- sku string
- SKU of the required product
- seats
Get
Licensing Subscription Subscriptions Item Entitlement Seats - Seat distribution
- sku str
- SKU of the required product
- seats Property Map
- Seat distribution
- sku 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.