Cisco Meraki v0.3.2 published on Tuesday, Sep 24, 2024 by Pulumi
meraki.organizations.getSummaryTopAppliancesByUtilization
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as meraki from "@pulumi/meraki";
const example = meraki.organizations.getSummaryTopAppliancesByUtilization({
organizationId: "string",
t0: "string",
t1: "string",
timespan: 1,
});
export const merakiOrganizationsSummaryTopAppliancesByUtilizationExample = example.then(example => example.items);
import pulumi
import pulumi_meraki as meraki
example = meraki.organizations.get_summary_top_appliances_by_utilization(organization_id="string",
t0="string",
t1="string",
timespan=1)
pulumi.export("merakiOrganizationsSummaryTopAppliancesByUtilizationExample", 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.GetSummaryTopAppliancesByUtilization(ctx, &organizations.GetSummaryTopAppliancesByUtilizationArgs{
OrganizationId: "string",
T0: pulumi.StringRef("string"),
T1: pulumi.StringRef("string"),
Timespan: pulumi.Float64Ref(1),
}, nil)
if err != nil {
return err
}
ctx.Export("merakiOrganizationsSummaryTopAppliancesByUtilizationExample", 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.GetSummaryTopAppliancesByUtilization.Invoke(new()
{
OrganizationId = "string",
T0 = "string",
T1 = "string",
Timespan = 1,
});
return new Dictionary<string, object?>
{
["merakiOrganizationsSummaryTopAppliancesByUtilizationExample"] = example.Apply(getSummaryTopAppliancesByUtilizationResult => getSummaryTopAppliancesByUtilizationResult.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.GetSummaryTopAppliancesByUtilizationArgs;
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.getSummaryTopAppliancesByUtilization(GetSummaryTopAppliancesByUtilizationArgs.builder()
.organizationId("string")
.t0("string")
.t1("string")
.timespan(1)
.build());
ctx.export("merakiOrganizationsSummaryTopAppliancesByUtilizationExample", example.applyValue(getSummaryTopAppliancesByUtilizationResult -> getSummaryTopAppliancesByUtilizationResult.items()));
}
}
variables:
example:
fn::invoke:
Function: meraki:organizations:getSummaryTopAppliancesByUtilization
Arguments:
organizationId: string
t0: string
t1: string
timespan: 1
outputs:
merakiOrganizationsSummaryTopAppliancesByUtilizationExample: ${example.items}
Using getSummaryTopAppliancesByUtilization
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 getSummaryTopAppliancesByUtilization(args: GetSummaryTopAppliancesByUtilizationArgs, opts?: InvokeOptions): Promise<GetSummaryTopAppliancesByUtilizationResult>
function getSummaryTopAppliancesByUtilizationOutput(args: GetSummaryTopAppliancesByUtilizationOutputArgs, opts?: InvokeOptions): Output<GetSummaryTopAppliancesByUtilizationResult>
def get_summary_top_appliances_by_utilization(organization_id: Optional[str] = None,
t0: Optional[str] = None,
t1: Optional[str] = None,
timespan: Optional[float] = None,
opts: Optional[InvokeOptions] = None) -> GetSummaryTopAppliancesByUtilizationResult
def get_summary_top_appliances_by_utilization_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[GetSummaryTopAppliancesByUtilizationResult]
func GetSummaryTopAppliancesByUtilization(ctx *Context, args *GetSummaryTopAppliancesByUtilizationArgs, opts ...InvokeOption) (*GetSummaryTopAppliancesByUtilizationResult, error)
func GetSummaryTopAppliancesByUtilizationOutput(ctx *Context, args *GetSummaryTopAppliancesByUtilizationOutputArgs, opts ...InvokeOption) GetSummaryTopAppliancesByUtilizationResultOutput
> Note: This function is named GetSummaryTopAppliancesByUtilization
in the Go SDK.
public static class GetSummaryTopAppliancesByUtilization
{
public static Task<GetSummaryTopAppliancesByUtilizationResult> InvokeAsync(GetSummaryTopAppliancesByUtilizationArgs args, InvokeOptions? opts = null)
public static Output<GetSummaryTopAppliancesByUtilizationResult> Invoke(GetSummaryTopAppliancesByUtilizationInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetSummaryTopAppliancesByUtilizationResult> getSummaryTopAppliancesByUtilization(GetSummaryTopAppliancesByUtilizationArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: meraki:organizations/getSummaryTopAppliancesByUtilization:getSummaryTopAppliancesByUtilization
arguments:
# arguments dictionary
The following arguments are supported:
- Organization
Id 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 greater than or equal to 25 minutes and be less than or equal to 31 days. The default is 1 day.
- Organization
Id 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 greater than or equal to 25 minutes and be less than or equal to 31 days. The default is 1 day.
- organization
Id 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 greater than or equal to 25 minutes and be less than or equal to 31 days. The default is 1 day.
- organization
Id 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 greater than or equal to 25 minutes 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 greater than or equal to 25 minutes and be less than or equal to 31 days. The default is 1 day.
- organization
Id 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 greater than or equal to 25 minutes and be less than or equal to 31 days. The default is 1 day.
getSummaryTopAppliancesByUtilization Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
List<Get
Summary Top Appliances By Utilization Item> - Array of ResponseOrganizationsGetOrganizationSummaryTopAppliancesByUtilization
- Organization
Id 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 greater than or equal to 25 minutes 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
[]Get
Summary Top Appliances By Utilization Item - Array of ResponseOrganizationsGetOrganizationSummaryTopAppliancesByUtilization
- Organization
Id 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 greater than or equal to 25 minutes 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<Get
Summary Top Appliances By Utilization Item> - Array of ResponseOrganizationsGetOrganizationSummaryTopAppliancesByUtilization
- organization
Id 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 greater than or equal to 25 minutes 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
Get
Summary Top Appliances By Utilization Item[] - Array of ResponseOrganizationsGetOrganizationSummaryTopAppliancesByUtilization
- organization
Id 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 greater than or equal to 25 minutes 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[Get
Summary Top Appliances By Utilization Item] - Array of ResponseOrganizationsGetOrganizationSummaryTopAppliancesByUtilization
- 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 greater than or equal to 25 minutes 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 ResponseOrganizationsGetOrganizationSummaryTopAppliancesByUtilization
- organization
Id 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 greater than or equal to 25 minutes and be less than or equal to 31 days. The default is 1 day.
Supporting Types
GetSummaryTopAppliancesByUtilizationItem
- Mac string
- Mac address of the appliance
- Model string
- Model of the appliance
- Name string
- Name of the appliance
- Network
Get
Summary Top Appliances By Utilization Item Network - Network info
- Serial string
- Serial number of the appliance
- Utilization
Get
Summary Top Appliances By Utilization Item Utilization - Utilization of the appliance
- Mac string
- Mac address of the appliance
- Model string
- Model of the appliance
- Name string
- Name of the appliance
- Network
Get
Summary Top Appliances By Utilization Item Network - Network info
- Serial string
- Serial number of the appliance
- Utilization
Get
Summary Top Appliances By Utilization Item Utilization - Utilization of the appliance
- mac String
- Mac address of the appliance
- model String
- Model of the appliance
- name String
- Name of the appliance
- network
Get
Summary Top Appliances By Utilization Item Network - Network info
- serial String
- Serial number of the appliance
- utilization
Get
Summary Top Appliances By Utilization Item Utilization - Utilization of the appliance
- mac string
- Mac address of the appliance
- model string
- Model of the appliance
- name string
- Name of the appliance
- network
Get
Summary Top Appliances By Utilization Item Network - Network info
- serial string
- Serial number of the appliance
- utilization
Get
Summary Top Appliances By Utilization Item Utilization - Utilization of the appliance
- mac str
- Mac address of the appliance
- model str
- Model of the appliance
- name str
- Name of the appliance
- network
Get
Summary Top Appliances By Utilization Item Network - Network info
- serial str
- Serial number of the appliance
- utilization
Get
Summary Top Appliances By Utilization Item Utilization - Utilization of the appliance
- mac String
- Mac address of the appliance
- model String
- Model of the appliance
- name String
- Name of the appliance
- network Property Map
- Network info
- serial String
- Serial number of the appliance
- utilization Property Map
- Utilization of the appliance
GetSummaryTopAppliancesByUtilizationItemNetwork
GetSummaryTopAppliancesByUtilizationItemUtilization
- Average
Get
Summary Top Appliances By Utilization Item Utilization Average - Average utilization of the appliance
- Average
Get
Summary Top Appliances By Utilization Item Utilization Average - Average utilization of the appliance
- average
Get
Summary Top Appliances By Utilization Item Utilization Average - Average utilization of the appliance
- average
Get
Summary Top Appliances By Utilization Item Utilization Average - Average utilization of the appliance
- average
Get
Summary Top Appliances By Utilization Item Utilization Average - Average utilization of the appliance
- average Property Map
- Average utilization of the appliance
GetSummaryTopAppliancesByUtilizationItemUtilizationAverage
- Percentage double
- Average percentage utilization of the appliance
- Percentage float64
- Average percentage utilization of the appliance
- percentage Double
- Average percentage utilization of the appliance
- percentage number
- Average percentage utilization of the appliance
- percentage float
- Average percentage utilization of the appliance
- percentage Number
- Average percentage utilization of the appliance
Package Details
- Repository
- meraki pulumi/pulumi-meraki
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
meraki
Terraform Provider.