Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 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);
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)
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
})
}
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),
};
});
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()));
}
}
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}
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>
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]
func GetInsightApplicationsHealthByTime(ctx *Context, args *GetInsightApplicationsHealthByTimeArgs, opts ...InvokeOption) (*GetInsightApplicationsHealthByTimeResult, error)
func GetInsightApplicationsHealthByTimeOutput(ctx *Context, args *GetInsightApplicationsHealthByTimeOutputArgs, opts ...InvokeOption) GetInsightApplicationsHealthByTimeResultOutput
> 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)
}
public static CompletableFuture<GetInsightApplicationsHealthByTimeResult> getInsightApplicationsHealthByTime(GetInsightApplicationsHealthByTimeArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: meraki:networks/getInsightApplicationsHealthByTime:getInsightApplicationsHealthByTime
arguments:
# arguments dictionary
The following arguments are supported:
- Application
Id string - applicationId path parameter. Application ID
- Network
Id 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.
- Application
Id string - applicationId path parameter. Application ID
- Network
Id 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.
- application
Id String - applicationId path parameter. Application ID
- network
Id 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.
- application
Id string - applicationId path parameter. Application ID
- network
Id 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
- 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.
- application
Id String - applicationId path parameter. Application ID
- network
Id 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:
- Application
Id string - applicationId path parameter. Application ID
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
List<Get
Insight Applications Health By Time Item> - Array of ResponseInsightGetNetworkInsightApplicationHealthByTime
- Network
Id 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.
- Application
Id string - applicationId path parameter. Application ID
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
[]Get
Insight Applications Health By Time Item - Array of ResponseInsightGetNetworkInsightApplicationHealthByTime
- Network
Id 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.
- application
Id String - applicationId path parameter. Application ID
- id String
- The provider-assigned unique ID for this managed resource.
- items
List<Get
Insight Applications Health By Time Item> - Array of ResponseInsightGetNetworkInsightApplicationHealthByTime
- network
Id 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.
- application
Id string - applicationId path parameter. Application ID
- id string
- The provider-assigned unique ID for this managed resource.
- items
Get
Insight Applications Health By Time Item[] - Array of ResponseInsightGetNetworkInsightApplicationHealthByTime
- network
Id 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[Get
Insight Applications Health By Time Item] - 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.
- application
Id String - applicationId path parameter. Application ID
- id String
- The provider-assigned unique ID for this managed resource.
- items List<Property Map>
- Array of ResponseInsightGetNetworkInsightApplicationHealthByTime
- network
Id 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
- End
Ts string - The end time of the query range
- Lan
Goodput int - LAN goodput (Number of useful information bits delivered over a LAN per unit of time)
- Lan
Latency doubleMs - LAN latency in milliseconds
- Lan
Loss doublePercent - LAN loss percentage
- Num
Clients int - Number of clients
- Recv int
- Received kilobytes-per-second
- Response
Duration int - Duration of the response, in milliseconds
- Sent int
- Sent kilobytes-per-second
- Start
Ts string - The start time of the query range
- Wan
Goodput int - WAN goodput (Number of useful information bits delivered over a WAN per unit of time)
- Wan
Latency doubleMs - WAN latency in milliseconds
- Wan
Loss doublePercent - WAN loss percentage
- End
Ts string - The end time of the query range
- Lan
Goodput int - LAN goodput (Number of useful information bits delivered over a LAN per unit of time)
- Lan
Latency float64Ms - LAN latency in milliseconds
- Lan
Loss float64Percent - LAN loss percentage
- Num
Clients int - Number of clients
- Recv int
- Received kilobytes-per-second
- Response
Duration int - Duration of the response, in milliseconds
- Sent int
- Sent kilobytes-per-second
- Start
Ts string - The start time of the query range
- Wan
Goodput int - WAN goodput (Number of useful information bits delivered over a WAN per unit of time)
- Wan
Latency float64Ms - WAN latency in milliseconds
- Wan
Loss float64Percent - WAN loss percentage
- end
Ts String - The end time of the query range
- lan
Goodput Integer - LAN goodput (Number of useful information bits delivered over a LAN per unit of time)
- lan
Latency DoubleMs - LAN latency in milliseconds
- lan
Loss DoublePercent - LAN loss percentage
- num
Clients Integer - Number of clients
- recv Integer
- Received kilobytes-per-second
- response
Duration Integer - Duration of the response, in milliseconds
- sent Integer
- Sent kilobytes-per-second
- start
Ts String - The start time of the query range
- wan
Goodput Integer - WAN goodput (Number of useful information bits delivered over a WAN per unit of time)
- wan
Latency DoubleMs - WAN latency in milliseconds
- wan
Loss DoublePercent - WAN loss percentage
- end
Ts string - The end time of the query range
- lan
Goodput number - LAN goodput (Number of useful information bits delivered over a LAN per unit of time)
- lan
Latency numberMs - LAN latency in milliseconds
- lan
Loss numberPercent - LAN loss percentage
- num
Clients number - Number of clients
- recv number
- Received kilobytes-per-second
- response
Duration number - Duration of the response, in milliseconds
- sent number
- Sent kilobytes-per-second
- start
Ts string - The start time of the query range
- wan
Goodput number - WAN goodput (Number of useful information bits delivered over a WAN per unit of time)
- wan
Latency numberMs - WAN latency in milliseconds
- wan
Loss numberPercent - WAN loss percentage
- end_
ts str - The end time of the query range
- lan_
goodput int - LAN goodput (Number of useful information bits delivered over a LAN per unit of time)
- lan_
latency_ floatms - LAN latency in milliseconds
- lan_
loss_ floatpercent - LAN loss percentage
- num_
clients int - Number of clients
- recv int
- Received kilobytes-per-second
- response_
duration int - Duration of the response, in milliseconds
- sent int
- Sent kilobytes-per-second
- start_
ts str - The start time of the query range
- wan_
goodput int - WAN goodput (Number of useful information bits delivered over a WAN per unit of time)
- wan_
latency_ floatms - WAN latency in milliseconds
- wan_
loss_ floatpercent - WAN loss percentage
- end
Ts String - The end time of the query range
- lan
Goodput Number - LAN goodput (Number of useful information bits delivered over a LAN per unit of time)
- lan
Latency NumberMs - LAN latency in milliseconds
- lan
Loss NumberPercent - LAN loss percentage
- num
Clients Number - Number of clients
- recv Number
- Received kilobytes-per-second
- response
Duration Number - Duration of the response, in milliseconds
- sent Number
- Sent kilobytes-per-second
- start
Ts String - The start time of the query range
- wan
Goodput Number - WAN goodput (Number of useful information bits delivered over a WAN per unit of time)
- wan
Latency NumberMs - WAN latency in milliseconds
- wan
Loss NumberPercent - 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.