1. Packages
  2. Cisco Meraki Provider
  3. API Docs
  4. networks
  5. getInsightApplicationsHealthByTime
Cisco Meraki v0.4.1 published on Saturday, Mar 15, 2025 by Pulumi

meraki.networks.getInsightApplicationsHealthByTime

Explore with Pulumi AI

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as meraki from "@pulumi/meraki";

const example = meraki.networks.getInsightApplicationsHealthByTime({
    applicationId: "string",
    networkId: "string",
    resolution: 1,
    t0: "string",
    t1: "string",
    timespan: 1,
});
export const merakiNetworksInsightApplicationsHealthByTimeExample = example.then(example => example.items);
Copy
import pulumi
import pulumi_meraki as meraki

example = meraki.networks.get_insight_applications_health_by_time(application_id="string",
    network_id="string",
    resolution=1,
    t0="string",
    t1="string",
    timespan=1)
pulumi.export("merakiNetworksInsightApplicationsHealthByTimeExample", example.items)
Copy
package main

import (
	"github.com/pulumi/pulumi-meraki/sdk/go/meraki/networks"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := networks.GetInsightApplicationsHealthByTime(ctx, &networks.GetInsightApplicationsHealthByTimeArgs{
			ApplicationId: "string",
			NetworkId:     "string",
			Resolution:    pulumi.IntRef(1),
			T0:            pulumi.StringRef("string"),
			T1:            pulumi.StringRef("string"),
			Timespan:      pulumi.Float64Ref(1),
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("merakiNetworksInsightApplicationsHealthByTimeExample", example.Items)
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Meraki = Pulumi.Meraki;

return await Deployment.RunAsync(() => 
{
    var example = Meraki.Networks.GetInsightApplicationsHealthByTime.Invoke(new()
    {
        ApplicationId = "string",
        NetworkId = "string",
        Resolution = 1,
        T0 = "string",
        T1 = "string",
        Timespan = 1,
    });

    return new Dictionary<string, object?>
    {
        ["merakiNetworksInsightApplicationsHealthByTimeExample"] = example.Apply(getInsightApplicationsHealthByTimeResult => getInsightApplicationsHealthByTimeResult.Items),
    };
});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.meraki.networks.NetworksFunctions;
import com.pulumi.meraki.networks.inputs.GetInsightApplicationsHealthByTimeArgs;
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 = NetworksFunctions.getInsightApplicationsHealthByTime(GetInsightApplicationsHealthByTimeArgs.builder()
            .applicationId("string")
            .networkId("string")
            .resolution(1)
            .t0("string")
            .t1("string")
            .timespan(1)
            .build());

        ctx.export("merakiNetworksInsightApplicationsHealthByTimeExample", example.applyValue(getInsightApplicationsHealthByTimeResult -> getInsightApplicationsHealthByTimeResult.items()));
    }
}
Copy
variables:
  example:
    fn::invoke:
      function: meraki:networks:getInsightApplicationsHealthByTime
      arguments:
        applicationId: string
        networkId: string
        resolution: 1
        t0: string
        t1: string
        timespan: 1
outputs:
  merakiNetworksInsightApplicationsHealthByTimeExample: ${example.items}
Copy

Using getInsightApplicationsHealthByTime

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 getInsightApplicationsHealthByTime(args: GetInsightApplicationsHealthByTimeArgs, opts?: InvokeOptions): Promise<GetInsightApplicationsHealthByTimeResult>
function getInsightApplicationsHealthByTimeOutput(args: GetInsightApplicationsHealthByTimeOutputArgs, opts?: InvokeOptions): Output<GetInsightApplicationsHealthByTimeResult>
Copy
def get_insight_applications_health_by_time(application_id: Optional[str] = None,
                                            network_id: Optional[str] = None,
                                            resolution: Optional[int] = None,
                                            t0: Optional[str] = None,
                                            t1: Optional[str] = None,
                                            timespan: Optional[float] = None,
                                            opts: Optional[InvokeOptions] = None) -> GetInsightApplicationsHealthByTimeResult
def get_insight_applications_health_by_time_output(application_id: Optional[pulumi.Input[str]] = None,
                                            network_id: Optional[pulumi.Input[str]] = None,
                                            resolution: Optional[pulumi.Input[int]] = None,
                                            t0: Optional[pulumi.Input[str]] = None,
                                            t1: Optional[pulumi.Input[str]] = None,
                                            timespan: Optional[pulumi.Input[float]] = None,
                                            opts: Optional[InvokeOptions] = None) -> Output[GetInsightApplicationsHealthByTimeResult]
Copy
func GetInsightApplicationsHealthByTime(ctx *Context, args *GetInsightApplicationsHealthByTimeArgs, opts ...InvokeOption) (*GetInsightApplicationsHealthByTimeResult, error)
func GetInsightApplicationsHealthByTimeOutput(ctx *Context, args *GetInsightApplicationsHealthByTimeOutputArgs, opts ...InvokeOption) GetInsightApplicationsHealthByTimeResultOutput
Copy

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

public static class GetInsightApplicationsHealthByTime 
{
    public static Task<GetInsightApplicationsHealthByTimeResult> InvokeAsync(GetInsightApplicationsHealthByTimeArgs args, InvokeOptions? opts = null)
    public static Output<GetInsightApplicationsHealthByTimeResult> Invoke(GetInsightApplicationsHealthByTimeInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetInsightApplicationsHealthByTimeResult> getInsightApplicationsHealthByTime(GetInsightApplicationsHealthByTimeArgs args, InvokeOptions options)
public static Output<GetInsightApplicationsHealthByTimeResult> getInsightApplicationsHealthByTime(GetInsightApplicationsHealthByTimeArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: meraki:networks/getInsightApplicationsHealthByTime:getInsightApplicationsHealthByTime
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

ApplicationId This property is required. string
applicationId path parameter. Application ID
NetworkId This property is required. string
networkId path parameter. Network ID
Resolution int
resolution query parameter. The time resolution in seconds for returned data. The valid resolutions are: 60, 300, 3600, 86400. The default is 300.
T0 string
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 7 days from today.
T1 string
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 7 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 7 days. The default is 2 hours.
ApplicationId This property is required. string
applicationId path parameter. Application ID
NetworkId This property is required. string
networkId path parameter. Network ID
Resolution int
resolution query parameter. The time resolution in seconds for returned data. The valid resolutions are: 60, 300, 3600, 86400. The default is 300.
T0 string
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 7 days from today.
T1 string
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 7 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 7 days. The default is 2 hours.
applicationId This property is required. String
applicationId path parameter. Application ID
networkId This property is required. String
networkId path parameter. Network ID
resolution Integer
resolution query parameter. The time resolution in seconds for returned data. The valid resolutions are: 60, 300, 3600, 86400. The default is 300.
t0 String
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 7 days from today.
t1 String
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 7 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 7 days. The default is 2 hours.
applicationId This property is required. string
applicationId path parameter. Application ID
networkId This property is required. string
networkId path parameter. Network ID
resolution number
resolution query parameter. The time resolution in seconds for returned data. The valid resolutions are: 60, 300, 3600, 86400. The default is 300.
t0 string
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 7 days from today.
t1 string
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 7 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 7 days. The default is 2 hours.
application_id This property is required. str
applicationId path parameter. Application ID
network_id This property is required. str
networkId path parameter. Network ID
resolution int
resolution query parameter. The time resolution in seconds for returned data. The valid resolutions are: 60, 300, 3600, 86400. The default is 300.
t0 str
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 7 days from today.
t1 str
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 7 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 7 days. The default is 2 hours.
applicationId This property is required. String
applicationId path parameter. Application ID
networkId This property is required. String
networkId path parameter. Network ID
resolution Number
resolution query parameter. The time resolution in seconds for returned data. The valid resolutions are: 60, 300, 3600, 86400. The default is 300.
t0 String
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 7 days from today.
t1 String
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 7 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 7 days. The default is 2 hours.

getInsightApplicationsHealthByTime Result

The following output properties are available:

ApplicationId string
applicationId path parameter. Application ID
Id string
The provider-assigned unique ID for this managed resource.
Items List<GetInsightApplicationsHealthByTimeItem>
Array of ResponseInsightGetNetworkInsightApplicationHealthByTime
NetworkId string
networkId path parameter. Network ID
Resolution int
resolution query parameter. The time resolution in seconds for returned data. The valid resolutions are: 60, 300, 3600, 86400. The default is 300.
T0 string
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 7 days from today.
T1 string
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 7 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 7 days. The default is 2 hours.
ApplicationId string
applicationId path parameter. Application ID
Id string
The provider-assigned unique ID for this managed resource.
Items []GetInsightApplicationsHealthByTimeItem
Array of ResponseInsightGetNetworkInsightApplicationHealthByTime
NetworkId string
networkId path parameter. Network ID
Resolution int
resolution query parameter. The time resolution in seconds for returned data. The valid resolutions are: 60, 300, 3600, 86400. The default is 300.
T0 string
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 7 days from today.
T1 string
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 7 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 7 days. The default is 2 hours.
applicationId String
applicationId path parameter. Application ID
id String
The provider-assigned unique ID for this managed resource.
items List<GetInsightApplicationsHealthByTimeItem>
Array of ResponseInsightGetNetworkInsightApplicationHealthByTime
networkId String
networkId path parameter. Network ID
resolution Integer
resolution query parameter. The time resolution in seconds for returned data. The valid resolutions are: 60, 300, 3600, 86400. The default is 300.
t0 String
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 7 days from today.
t1 String
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 7 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 7 days. The default is 2 hours.
applicationId string
applicationId path parameter. Application ID
id string
The provider-assigned unique ID for this managed resource.
items GetInsightApplicationsHealthByTimeItem[]
Array of ResponseInsightGetNetworkInsightApplicationHealthByTime
networkId string
networkId path parameter. Network ID
resolution number
resolution query parameter. The time resolution in seconds for returned data. The valid resolutions are: 60, 300, 3600, 86400. The default is 300.
t0 string
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 7 days from today.
t1 string
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 7 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 7 days. The default is 2 hours.
application_id str
applicationId path parameter. Application ID
id str
The provider-assigned unique ID for this managed resource.
items Sequence[GetInsightApplicationsHealthByTimeItem]
Array of ResponseInsightGetNetworkInsightApplicationHealthByTime
network_id str
networkId path parameter. Network ID
resolution int
resolution query parameter. The time resolution in seconds for returned data. The valid resolutions are: 60, 300, 3600, 86400. The default is 300.
t0 str
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 7 days from today.
t1 str
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 7 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 7 days. The default is 2 hours.
applicationId String
applicationId path parameter. Application ID
id String
The provider-assigned unique ID for this managed resource.
items List<Property Map>
Array of ResponseInsightGetNetworkInsightApplicationHealthByTime
networkId String
networkId path parameter. Network ID
resolution Number
resolution query parameter. The time resolution in seconds for returned data. The valid resolutions are: 60, 300, 3600, 86400. The default is 300.
t0 String
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 7 days from today.
t1 String
t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 7 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 7 days. The default is 2 hours.

Supporting Types

GetInsightApplicationsHealthByTimeItem

EndTs This property is required. string
The end time of the query range
LanGoodput This property is required. int
LAN goodput (Number of useful information bits delivered over a LAN per unit of time)
LanLatencyMs This property is required. double
LAN latency in milliseconds
LanLossPercent This property is required. double
LAN loss percentage
NumClients This property is required. int
Number of clients
Recv This property is required. int
Received kilobytes-per-second
ResponseDuration This property is required. int
Duration of the response, in milliseconds
Sent This property is required. int
Sent kilobytes-per-second
StartTs This property is required. string
The start time of the query range
WanGoodput This property is required. int
WAN goodput (Number of useful information bits delivered over a WAN per unit of time)
WanLatencyMs This property is required. double
WAN latency in milliseconds
WanLossPercent This property is required. double
WAN loss percentage
EndTs This property is required. string
The end time of the query range
LanGoodput This property is required. int
LAN goodput (Number of useful information bits delivered over a LAN per unit of time)
LanLatencyMs This property is required. float64
LAN latency in milliseconds
LanLossPercent This property is required. float64
LAN loss percentage
NumClients This property is required. int
Number of clients
Recv This property is required. int
Received kilobytes-per-second
ResponseDuration This property is required. int
Duration of the response, in milliseconds
Sent This property is required. int
Sent kilobytes-per-second
StartTs This property is required. string
The start time of the query range
WanGoodput This property is required. int
WAN goodput (Number of useful information bits delivered over a WAN per unit of time)
WanLatencyMs This property is required. float64
WAN latency in milliseconds
WanLossPercent This property is required. float64
WAN loss percentage
endTs This property is required. String
The end time of the query range
lanGoodput This property is required. Integer
LAN goodput (Number of useful information bits delivered over a LAN per unit of time)
lanLatencyMs This property is required. Double
LAN latency in milliseconds
lanLossPercent This property is required. Double
LAN loss percentage
numClients This property is required. Integer
Number of clients
recv This property is required. Integer
Received kilobytes-per-second
responseDuration This property is required. Integer
Duration of the response, in milliseconds
sent This property is required. Integer
Sent kilobytes-per-second
startTs This property is required. String
The start time of the query range
wanGoodput This property is required. Integer
WAN goodput (Number of useful information bits delivered over a WAN per unit of time)
wanLatencyMs This property is required. Double
WAN latency in milliseconds
wanLossPercent This property is required. Double
WAN loss percentage
endTs This property is required. string
The end time of the query range
lanGoodput This property is required. number
LAN goodput (Number of useful information bits delivered over a LAN per unit of time)
lanLatencyMs This property is required. number
LAN latency in milliseconds
lanLossPercent This property is required. number
LAN loss percentage
numClients This property is required. number
Number of clients
recv This property is required. number
Received kilobytes-per-second
responseDuration This property is required. number
Duration of the response, in milliseconds
sent This property is required. number
Sent kilobytes-per-second
startTs This property is required. string
The start time of the query range
wanGoodput This property is required. number
WAN goodput (Number of useful information bits delivered over a WAN per unit of time)
wanLatencyMs This property is required. number
WAN latency in milliseconds
wanLossPercent This property is required. number
WAN loss percentage
end_ts This property is required. str
The end time of the query range
lan_goodput This property is required. int
LAN goodput (Number of useful information bits delivered over a LAN per unit of time)
lan_latency_ms This property is required. float
LAN latency in milliseconds
lan_loss_percent This property is required. float
LAN loss percentage
num_clients This property is required. int
Number of clients
recv This property is required. int
Received kilobytes-per-second
response_duration This property is required. int
Duration of the response, in milliseconds
sent This property is required. int
Sent kilobytes-per-second
start_ts This property is required. str
The start time of the query range
wan_goodput This property is required. int
WAN goodput (Number of useful information bits delivered over a WAN per unit of time)
wan_latency_ms This property is required. float
WAN latency in milliseconds
wan_loss_percent This property is required. float
WAN loss percentage
endTs This property is required. String
The end time of the query range
lanGoodput This property is required. Number
LAN goodput (Number of useful information bits delivered over a LAN per unit of time)
lanLatencyMs This property is required. Number
LAN latency in milliseconds
lanLossPercent This property is required. Number
LAN loss percentage
numClients This property is required. Number
Number of clients
recv This property is required. Number
Received kilobytes-per-second
responseDuration This property is required. Number
Duration of the response, in milliseconds
sent This property is required. Number
Sent kilobytes-per-second
startTs This property is required. String
The start time of the query range
wanGoodput This property is required. Number
WAN goodput (Number of useful information bits delivered over a WAN per unit of time)
wanLatencyMs This property is required. Number
WAN latency in milliseconds
wanLossPercent This property is required. Number
WAN loss percentage

Package Details

Repository
meraki pulumi/pulumi-meraki
License
Apache-2.0
Notes
This Pulumi package is based on the meraki Terraform Provider.