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

meraki.organizations.getSummaryTopClientsManufacturersByUsage

Explore with Pulumi AI

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

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as meraki from "@pulumi/meraki";
    
    const example = meraki.organizations.getSummaryTopClientsManufacturersByUsage({
        organizationId: "string",
        t0: "string",
        t1: "string",
        timespan: 1,
    });
    export const merakiOrganizationsSummaryTopClientsManufacturersByUsageExample = example.then(example => example.items);
    
    import pulumi
    import pulumi_meraki as meraki
    
    example = meraki.organizations.get_summary_top_clients_manufacturers_by_usage(organization_id="string",
        t0="string",
        t1="string",
        timespan=1)
    pulumi.export("merakiOrganizationsSummaryTopClientsManufacturersByUsageExample", example.items)
    
    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.GetSummaryTopClientsManufacturersByUsage(ctx, &organizations.GetSummaryTopClientsManufacturersByUsageArgs{
    			OrganizationId: "string",
    			T0:             pulumi.StringRef("string"),
    			T1:             pulumi.StringRef("string"),
    			Timespan:       pulumi.Float64Ref(1),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("merakiOrganizationsSummaryTopClientsManufacturersByUsageExample", example.Items)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Meraki = Pulumi.Meraki;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Meraki.Organizations.GetSummaryTopClientsManufacturersByUsage.Invoke(new()
        {
            OrganizationId = "string",
            T0 = "string",
            T1 = "string",
            Timespan = 1,
        });
    
        return new Dictionary<string, object?>
        {
            ["merakiOrganizationsSummaryTopClientsManufacturersByUsageExample"] = example.Apply(getSummaryTopClientsManufacturersByUsageResult => getSummaryTopClientsManufacturersByUsageResult.Items),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.meraki.organizations.OrganizationsFunctions;
    import com.pulumi.meraki.organizations.inputs.GetSummaryTopClientsManufacturersByUsageArgs;
    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 = OrganizationsFunctions.getSummaryTopClientsManufacturersByUsage(GetSummaryTopClientsManufacturersByUsageArgs.builder()
                .organizationId("string")
                .t0("string")
                .t1("string")
                .timespan(1)
                .build());
    
            ctx.export("merakiOrganizationsSummaryTopClientsManufacturersByUsageExample", example.applyValue(getSummaryTopClientsManufacturersByUsageResult -> getSummaryTopClientsManufacturersByUsageResult.items()));
        }
    }
    
    variables:
      example:
        fn::invoke:
          Function: meraki:organizations:getSummaryTopClientsManufacturersByUsage
          Arguments:
            organizationId: string
            t0: string
            t1: string
            timespan: 1
    outputs:
      merakiOrganizationsSummaryTopClientsManufacturersByUsageExample: ${example.items}
    

    Using getSummaryTopClientsManufacturersByUsage

    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 getSummaryTopClientsManufacturersByUsage(args: GetSummaryTopClientsManufacturersByUsageArgs, opts?: InvokeOptions): Promise<GetSummaryTopClientsManufacturersByUsageResult>
    function getSummaryTopClientsManufacturersByUsageOutput(args: GetSummaryTopClientsManufacturersByUsageOutputArgs, opts?: InvokeOptions): Output<GetSummaryTopClientsManufacturersByUsageResult>
    def get_summary_top_clients_manufacturers_by_usage(organization_id: Optional[str] = None,
                                                       t0: Optional[str] = None,
                                                       t1: Optional[str] = None,
                                                       timespan: Optional[float] = None,
                                                       opts: Optional[InvokeOptions] = None) -> GetSummaryTopClientsManufacturersByUsageResult
    def get_summary_top_clients_manufacturers_by_usage_output(organization_id: Optional[pulumi.Input[str]] = None,
                                                       t0: Optional[pulumi.Input[str]] = None,
                                                       t1: Optional[pulumi.Input[str]] = None,
                                                       timespan: Optional[pulumi.Input[float]] = None,
                                                       opts: Optional[InvokeOptions] = None) -> Output[GetSummaryTopClientsManufacturersByUsageResult]
    func GetSummaryTopClientsManufacturersByUsage(ctx *Context, args *GetSummaryTopClientsManufacturersByUsageArgs, opts ...InvokeOption) (*GetSummaryTopClientsManufacturersByUsageResult, error)
    func GetSummaryTopClientsManufacturersByUsageOutput(ctx *Context, args *GetSummaryTopClientsManufacturersByUsageOutputArgs, opts ...InvokeOption) GetSummaryTopClientsManufacturersByUsageResultOutput

    > Note: This function is named GetSummaryTopClientsManufacturersByUsage in the Go SDK.

    public static class GetSummaryTopClientsManufacturersByUsage 
    {
        public static Task<GetSummaryTopClientsManufacturersByUsageResult> InvokeAsync(GetSummaryTopClientsManufacturersByUsageArgs args, InvokeOptions? opts = null)
        public static Output<GetSummaryTopClientsManufacturersByUsageResult> Invoke(GetSummaryTopClientsManufacturersByUsageInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetSummaryTopClientsManufacturersByUsageResult> getSummaryTopClientsManufacturersByUsage(GetSummaryTopClientsManufacturersByUsageArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: meraki:organizations/getSummaryTopClientsManufacturersByUsage:getSummaryTopClientsManufacturersByUsage
      arguments:
        # arguments dictionary

    The following arguments are supported:

    OrganizationId string
    organizationId path parameter. Organization ID
    T0 string
    t0 query parameter. The beginning of the timespan for the data.
    T1 string
    t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 days after t0.
    Timespan double
    timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
    OrganizationId string
    organizationId path parameter. Organization ID
    T0 string
    t0 query parameter. The beginning of the timespan for the data.
    T1 string
    t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 days after t0.
    Timespan float64
    timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
    organizationId String
    organizationId path parameter. Organization ID
    t0 String
    t0 query parameter. The beginning of the timespan for the data.
    t1 String
    t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 days after t0.
    timespan Double
    timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
    organizationId string
    organizationId path parameter. Organization ID
    t0 string
    t0 query parameter. The beginning of the timespan for the data.
    t1 string
    t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 days after t0.
    timespan number
    timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
    organization_id str
    organizationId path parameter. Organization ID
    t0 str
    t0 query parameter. The beginning of the timespan for the data.
    t1 str
    t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 days after t0.
    timespan float
    timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
    organizationId String
    organizationId path parameter. Organization ID
    t0 String
    t0 query parameter. The beginning of the timespan for the data.
    t1 String
    t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 days after t0.
    timespan Number
    timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.

    getSummaryTopClientsManufacturersByUsage Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Items List<GetSummaryTopClientsManufacturersByUsageItem>
    Array of ResponseOrganizationsGetOrganizationSummaryTopClientsManufacturersByUsage
    OrganizationId string
    organizationId path parameter. Organization ID
    T0 string
    t0 query parameter. The beginning of the timespan for the data.
    T1 string
    t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 days after t0.
    Timespan double
    timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
    Id string
    The provider-assigned unique ID for this managed resource.
    Items []GetSummaryTopClientsManufacturersByUsageItem
    Array of ResponseOrganizationsGetOrganizationSummaryTopClientsManufacturersByUsage
    OrganizationId string
    organizationId path parameter. Organization ID
    T0 string
    t0 query parameter. The beginning of the timespan for the data.
    T1 string
    t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 days after t0.
    Timespan float64
    timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
    id String
    The provider-assigned unique ID for this managed resource.
    items List<GetSummaryTopClientsManufacturersByUsageItem>
    Array of ResponseOrganizationsGetOrganizationSummaryTopClientsManufacturersByUsage
    organizationId String
    organizationId path parameter. Organization ID
    t0 String
    t0 query parameter. The beginning of the timespan for the data.
    t1 String
    t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 days after t0.
    timespan Double
    timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
    id string
    The provider-assigned unique ID for this managed resource.
    items GetSummaryTopClientsManufacturersByUsageItem[]
    Array of ResponseOrganizationsGetOrganizationSummaryTopClientsManufacturersByUsage
    organizationId string
    organizationId path parameter. Organization ID
    t0 string
    t0 query parameter. The beginning of the timespan for the data.
    t1 string
    t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 days after t0.
    timespan number
    timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
    id str
    The provider-assigned unique ID for this managed resource.
    items Sequence[GetSummaryTopClientsManufacturersByUsageItem]
    Array of ResponseOrganizationsGetOrganizationSummaryTopClientsManufacturersByUsage
    organization_id str
    organizationId path parameter. Organization ID
    t0 str
    t0 query parameter. The beginning of the timespan for the data.
    t1 str
    t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 days after t0.
    timespan float
    timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
    id String
    The provider-assigned unique ID for this managed resource.
    items List<Property Map>
    Array of ResponseOrganizationsGetOrganizationSummaryTopClientsManufacturersByUsage
    organizationId String
    organizationId path parameter. Organization ID
    t0 String
    t0 query parameter. The beginning of the timespan for the data.
    t1 String
    t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 31 days after t0.
    timespan Number
    timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.

    Supporting Types

    GetSummaryTopClientsManufacturersByUsageItem

    clients Property Map
    Clients info
    name String
    Name of the manufacturer
    usage Property Map
    Clients usage

    GetSummaryTopClientsManufacturersByUsageItemClients

    counts Property Map
    Counts of clients

    GetSummaryTopClientsManufacturersByUsageItemClientsCounts

    Total int
    Total counts of clients
    Total int
    Total counts of clients
    total Integer
    Total counts of clients
    total number
    Total counts of clients
    total int
    Total counts of clients
    total Number
    Total counts of clients

    GetSummaryTopClientsManufacturersByUsageItemUsage

    Downstream double
    Downstream data usage by client
    Total double
    Total data usage by client
    Upstream double
    Upstream data usage by client
    Downstream float64
    Downstream data usage by client
    Total float64
    Total data usage by client
    Upstream float64
    Upstream data usage by client
    downstream Double
    Downstream data usage by client
    total Double
    Total data usage by client
    upstream Double
    Upstream data usage by client
    downstream number
    Downstream data usage by client
    total number
    Total data usage by client
    upstream number
    Upstream data usage by client
    downstream float
    Downstream data usage by client
    total float
    Total data usage by client
    upstream float
    Upstream data usage by client
    downstream Number
    Downstream data usage by client
    total Number
    Total data usage by client
    upstream Number
    Upstream data usage by client

    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