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

meraki.organizations.getApiRequestsOverviewResponseCodesByInterval

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.getApiRequestsOverviewResponseCodesByInterval({
        adminIds: ["string"],
        interval: 1,
        operationIds: ["string"],
        organizationId: "string",
        sourceIps: ["string"],
        t0: "string",
        t1: "string",
        timespan: 1,
        userAgent: "string",
        version: 1,
    });
    export const merakiOrganizationsApiRequestsOverviewResponseCodesByIntervalExample = example.then(example => example.items);
    
    import pulumi
    import pulumi_meraki as meraki
    
    example = meraki.organizations.get_api_requests_overview_response_codes_by_interval(admin_ids=["string"],
        interval=1,
        operation_ids=["string"],
        organization_id="string",
        source_ips=["string"],
        t0="string",
        t1="string",
        timespan=1,
        user_agent="string",
        version=1)
    pulumi.export("merakiOrganizationsApiRequestsOverviewResponseCodesByIntervalExample", 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.GetApiRequestsOverviewResponseCodesByInterval(ctx, &organizations.GetApiRequestsOverviewResponseCodesByIntervalArgs{
    			AdminIds: []string{
    				"string",
    			},
    			Interval: pulumi.IntRef(1),
    			OperationIds: []string{
    				"string",
    			},
    			OrganizationId: "string",
    			SourceIps: []string{
    				"string",
    			},
    			T0:        pulumi.StringRef("string"),
    			T1:        pulumi.StringRef("string"),
    			Timespan:  pulumi.Float64Ref(1),
    			UserAgent: pulumi.StringRef("string"),
    			Version:   pulumi.IntRef(1),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("merakiOrganizationsApiRequestsOverviewResponseCodesByIntervalExample", 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.GetApiRequestsOverviewResponseCodesByInterval.Invoke(new()
        {
            AdminIds = new[]
            {
                "string",
            },
            Interval = 1,
            OperationIds = new[]
            {
                "string",
            },
            OrganizationId = "string",
            SourceIps = new[]
            {
                "string",
            },
            T0 = "string",
            T1 = "string",
            Timespan = 1,
            UserAgent = "string",
            Version = 1,
        });
    
        return new Dictionary<string, object?>
        {
            ["merakiOrganizationsApiRequestsOverviewResponseCodesByIntervalExample"] = example.Apply(getApiRequestsOverviewResponseCodesByIntervalResult => getApiRequestsOverviewResponseCodesByIntervalResult.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.GetApiRequestsOverviewResponseCodesByIntervalArgs;
    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.getApiRequestsOverviewResponseCodesByInterval(GetApiRequestsOverviewResponseCodesByIntervalArgs.builder()
                .adminIds("string")
                .interval(1)
                .operationIds("string")
                .organizationId("string")
                .sourceIps("string")
                .t0("string")
                .t1("string")
                .timespan(1)
                .userAgent("string")
                .version(1)
                .build());
    
            ctx.export("merakiOrganizationsApiRequestsOverviewResponseCodesByIntervalExample", example.applyValue(getApiRequestsOverviewResponseCodesByIntervalResult -> getApiRequestsOverviewResponseCodesByIntervalResult.items()));
        }
    }
    
    variables:
      example:
        fn::invoke:
          Function: meraki:organizations:getApiRequestsOverviewResponseCodesByInterval
          Arguments:
            adminIds:
              - string
            interval: 1
            operationIds:
              - string
            organizationId: string
            sourceIps:
              - string
            t0: string
            t1: string
            timespan: 1
            userAgent: string
            version: 1
    outputs:
      merakiOrganizationsApiRequestsOverviewResponseCodesByIntervalExample: ${example.items}
    

    Using getApiRequestsOverviewResponseCodesByInterval

    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 getApiRequestsOverviewResponseCodesByInterval(args: GetApiRequestsOverviewResponseCodesByIntervalArgs, opts?: InvokeOptions): Promise<GetApiRequestsOverviewResponseCodesByIntervalResult>
    function getApiRequestsOverviewResponseCodesByIntervalOutput(args: GetApiRequestsOverviewResponseCodesByIntervalOutputArgs, opts?: InvokeOptions): Output<GetApiRequestsOverviewResponseCodesByIntervalResult>
    def get_api_requests_overview_response_codes_by_interval(admin_ids: Optional[Sequence[str]] = None,
                                                             interval: Optional[int] = None,
                                                             operation_ids: Optional[Sequence[str]] = None,
                                                             organization_id: Optional[str] = None,
                                                             source_ips: Optional[Sequence[str]] = None,
                                                             t0: Optional[str] = None,
                                                             t1: Optional[str] = None,
                                                             timespan: Optional[float] = None,
                                                             user_agent: Optional[str] = None,
                                                             version: Optional[int] = None,
                                                             opts: Optional[InvokeOptions] = None) -> GetApiRequestsOverviewResponseCodesByIntervalResult
    def get_api_requests_overview_response_codes_by_interval_output(admin_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                                             interval: Optional[pulumi.Input[int]] = None,
                                                             operation_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                                             organization_id: Optional[pulumi.Input[str]] = None,
                                                             source_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                                             t0: Optional[pulumi.Input[str]] = None,
                                                             t1: Optional[pulumi.Input[str]] = None,
                                                             timespan: Optional[pulumi.Input[float]] = None,
                                                             user_agent: Optional[pulumi.Input[str]] = None,
                                                             version: Optional[pulumi.Input[int]] = None,
                                                             opts: Optional[InvokeOptions] = None) -> Output[GetApiRequestsOverviewResponseCodesByIntervalResult]
    func GetApiRequestsOverviewResponseCodesByInterval(ctx *Context, args *GetApiRequestsOverviewResponseCodesByIntervalArgs, opts ...InvokeOption) (*GetApiRequestsOverviewResponseCodesByIntervalResult, error)
    func GetApiRequestsOverviewResponseCodesByIntervalOutput(ctx *Context, args *GetApiRequestsOverviewResponseCodesByIntervalOutputArgs, opts ...InvokeOption) GetApiRequestsOverviewResponseCodesByIntervalResultOutput

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

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

    The following arguments are supported:

    OrganizationId string
    organizationId path parameter. Organization ID
    AdminIds List<string>
    adminIds query parameter. Filter by admin ID of user that made the API request
    Interval int
    interval query parameter. The time interval in seconds for returned data. The valid intervals are: 120, 3600, 14400, 21600. The default is 21600. Interval is calculated if time params are provided.
    OperationIds List<string>
    operationIds query parameter. Filter by operation ID of the endpoint
    SourceIps List<string>
    sourceIps query parameter. Filter by source IP that made the API request
    T0 string
    t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
    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 31 days. If interval is provided, the timespan will be autocalculated.
    UserAgent string
    userAgent query parameter. Filter by user agent string for API request. This will filter by a complete or partial match.
    Version int
    version query parameter. Filter by API version of the endpoint. Allowable values are: [0, 1]
    OrganizationId string
    organizationId path parameter. Organization ID
    AdminIds []string
    adminIds query parameter. Filter by admin ID of user that made the API request
    Interval int
    interval query parameter. The time interval in seconds for returned data. The valid intervals are: 120, 3600, 14400, 21600. The default is 21600. Interval is calculated if time params are provided.
    OperationIds []string
    operationIds query parameter. Filter by operation ID of the endpoint
    SourceIps []string
    sourceIps query parameter. Filter by source IP that made the API request
    T0 string
    t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
    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 31 days. If interval is provided, the timespan will be autocalculated.
    UserAgent string
    userAgent query parameter. Filter by user agent string for API request. This will filter by a complete or partial match.
    Version int
    version query parameter. Filter by API version of the endpoint. Allowable values are: [0, 1]
    organizationId String
    organizationId path parameter. Organization ID
    adminIds List<String>
    adminIds query parameter. Filter by admin ID of user that made the API request
    interval Integer
    interval query parameter. The time interval in seconds for returned data. The valid intervals are: 120, 3600, 14400, 21600. The default is 21600. Interval is calculated if time params are provided.
    operationIds List<String>
    operationIds query parameter. Filter by operation ID of the endpoint
    sourceIps List<String>
    sourceIps query parameter. Filter by source IP that made the API request
    t0 String
    t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
    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 31 days. If interval is provided, the timespan will be autocalculated.
    userAgent String
    userAgent query parameter. Filter by user agent string for API request. This will filter by a complete or partial match.
    version Integer
    version query parameter. Filter by API version of the endpoint. Allowable values are: [0, 1]
    organizationId string
    organizationId path parameter. Organization ID
    adminIds string[]
    adminIds query parameter. Filter by admin ID of user that made the API request
    interval number
    interval query parameter. The time interval in seconds for returned data. The valid intervals are: 120, 3600, 14400, 21600. The default is 21600. Interval is calculated if time params are provided.
    operationIds string[]
    operationIds query parameter. Filter by operation ID of the endpoint
    sourceIps string[]
    sourceIps query parameter. Filter by source IP that made the API request
    t0 string
    t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
    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 31 days. If interval is provided, the timespan will be autocalculated.
    userAgent string
    userAgent query parameter. Filter by user agent string for API request. This will filter by a complete or partial match.
    version number
    version query parameter. Filter by API version of the endpoint. Allowable values are: [0, 1]
    organization_id str
    organizationId path parameter. Organization ID
    admin_ids Sequence[str]
    adminIds query parameter. Filter by admin ID of user that made the API request
    interval int
    interval query parameter. The time interval in seconds for returned data. The valid intervals are: 120, 3600, 14400, 21600. The default is 21600. Interval is calculated if time params are provided.
    operation_ids Sequence[str]
    operationIds query parameter. Filter by operation ID of the endpoint
    source_ips Sequence[str]
    sourceIps query parameter. Filter by source IP that made the API request
    t0 str
    t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
    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 31 days. If interval is provided, the timespan will be autocalculated.
    user_agent str
    userAgent query parameter. Filter by user agent string for API request. This will filter by a complete or partial match.
    version int
    version query parameter. Filter by API version of the endpoint. Allowable values are: [0, 1]
    organizationId String
    organizationId path parameter. Organization ID
    adminIds List<String>
    adminIds query parameter. Filter by admin ID of user that made the API request
    interval Number
    interval query parameter. The time interval in seconds for returned data. The valid intervals are: 120, 3600, 14400, 21600. The default is 21600. Interval is calculated if time params are provided.
    operationIds List<String>
    operationIds query parameter. Filter by operation ID of the endpoint
    sourceIps List<String>
    sourceIps query parameter. Filter by source IP that made the API request
    t0 String
    t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
    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 31 days. If interval is provided, the timespan will be autocalculated.
    userAgent String
    userAgent query parameter. Filter by user agent string for API request. This will filter by a complete or partial match.
    version Number
    version query parameter. Filter by API version of the endpoint. Allowable values are: [0, 1]

    getApiRequestsOverviewResponseCodesByInterval Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Items List<GetApiRequestsOverviewResponseCodesByIntervalItem>
    Array of ResponseOrganizationsGetOrganizationApiRequestsOverviewResponseCodesByInterval
    OrganizationId string
    organizationId path parameter. Organization ID
    AdminIds List<string>
    adminIds query parameter. Filter by admin ID of user that made the API request
    Interval int
    interval query parameter. The time interval in seconds for returned data. The valid intervals are: 120, 3600, 14400, 21600. The default is 21600. Interval is calculated if time params are provided.
    OperationIds List<string>
    operationIds query parameter. Filter by operation ID of the endpoint
    SourceIps List<string>
    sourceIps query parameter. Filter by source IP that made the API request
    T0 string
    t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
    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 31 days. If interval is provided, the timespan will be autocalculated.
    UserAgent string
    userAgent query parameter. Filter by user agent string for API request. This will filter by a complete or partial match.
    Version int
    version query parameter. Filter by API version of the endpoint. Allowable values are: [0, 1]
    Id string
    The provider-assigned unique ID for this managed resource.
    Items []GetApiRequestsOverviewResponseCodesByIntervalItem
    Array of ResponseOrganizationsGetOrganizationApiRequestsOverviewResponseCodesByInterval
    OrganizationId string
    organizationId path parameter. Organization ID
    AdminIds []string
    adminIds query parameter. Filter by admin ID of user that made the API request
    Interval int
    interval query parameter. The time interval in seconds for returned data. The valid intervals are: 120, 3600, 14400, 21600. The default is 21600. Interval is calculated if time params are provided.
    OperationIds []string
    operationIds query parameter. Filter by operation ID of the endpoint
    SourceIps []string
    sourceIps query parameter. Filter by source IP that made the API request
    T0 string
    t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
    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 31 days. If interval is provided, the timespan will be autocalculated.
    UserAgent string
    userAgent query parameter. Filter by user agent string for API request. This will filter by a complete or partial match.
    Version int
    version query parameter. Filter by API version of the endpoint. Allowable values are: [0, 1]
    id String
    The provider-assigned unique ID for this managed resource.
    items List<GetApiRequestsOverviewResponseCodesByIntervalItem>
    Array of ResponseOrganizationsGetOrganizationApiRequestsOverviewResponseCodesByInterval
    organizationId String
    organizationId path parameter. Organization ID
    adminIds List<String>
    adminIds query parameter. Filter by admin ID of user that made the API request
    interval Integer
    interval query parameter. The time interval in seconds for returned data. The valid intervals are: 120, 3600, 14400, 21600. The default is 21600. Interval is calculated if time params are provided.
    operationIds List<String>
    operationIds query parameter. Filter by operation ID of the endpoint
    sourceIps List<String>
    sourceIps query parameter. Filter by source IP that made the API request
    t0 String
    t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
    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 31 days. If interval is provided, the timespan will be autocalculated.
    userAgent String
    userAgent query parameter. Filter by user agent string for API request. This will filter by a complete or partial match.
    version Integer
    version query parameter. Filter by API version of the endpoint. Allowable values are: [0, 1]
    id string
    The provider-assigned unique ID for this managed resource.
    items GetApiRequestsOverviewResponseCodesByIntervalItem[]
    Array of ResponseOrganizationsGetOrganizationApiRequestsOverviewResponseCodesByInterval
    organizationId string
    organizationId path parameter. Organization ID
    adminIds string[]
    adminIds query parameter. Filter by admin ID of user that made the API request
    interval number
    interval query parameter. The time interval in seconds for returned data. The valid intervals are: 120, 3600, 14400, 21600. The default is 21600. Interval is calculated if time params are provided.
    operationIds string[]
    operationIds query parameter. Filter by operation ID of the endpoint
    sourceIps string[]
    sourceIps query parameter. Filter by source IP that made the API request
    t0 string
    t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
    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 31 days. If interval is provided, the timespan will be autocalculated.
    userAgent string
    userAgent query parameter. Filter by user agent string for API request. This will filter by a complete or partial match.
    version number
    version query parameter. Filter by API version of the endpoint. Allowable values are: [0, 1]
    id str
    The provider-assigned unique ID for this managed resource.
    items Sequence[GetApiRequestsOverviewResponseCodesByIntervalItem]
    Array of ResponseOrganizationsGetOrganizationApiRequestsOverviewResponseCodesByInterval
    organization_id str
    organizationId path parameter. Organization ID
    admin_ids Sequence[str]
    adminIds query parameter. Filter by admin ID of user that made the API request
    interval int
    interval query parameter. The time interval in seconds for returned data. The valid intervals are: 120, 3600, 14400, 21600. The default is 21600. Interval is calculated if time params are provided.
    operation_ids Sequence[str]
    operationIds query parameter. Filter by operation ID of the endpoint
    source_ips Sequence[str]
    sourceIps query parameter. Filter by source IP that made the API request
    t0 str
    t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
    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 31 days. If interval is provided, the timespan will be autocalculated.
    user_agent str
    userAgent query parameter. Filter by user agent string for API request. This will filter by a complete or partial match.
    version int
    version query parameter. Filter by API version of the endpoint. Allowable values are: [0, 1]
    id String
    The provider-assigned unique ID for this managed resource.
    items List<Property Map>
    Array of ResponseOrganizationsGetOrganizationApiRequestsOverviewResponseCodesByInterval
    organizationId String
    organizationId path parameter. Organization ID
    adminIds List<String>
    adminIds query parameter. Filter by admin ID of user that made the API request
    interval Number
    interval query parameter. The time interval in seconds for returned data. The valid intervals are: 120, 3600, 14400, 21600. The default is 21600. Interval is calculated if time params are provided.
    operationIds List<String>
    operationIds query parameter. Filter by operation ID of the endpoint
    sourceIps List<String>
    sourceIps query parameter. Filter by source IP that made the API request
    t0 String
    t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
    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 31 days. If interval is provided, the timespan will be autocalculated.
    userAgent String
    userAgent query parameter. Filter by user agent string for API request. This will filter by a complete or partial match.
    version Number
    version query parameter. Filter by API version of the endpoint. Allowable values are: [0, 1]

    Supporting Types

    GetApiRequestsOverviewResponseCodesByIntervalItem

    Counts List<GetApiRequestsOverviewResponseCodesByIntervalItemCount>
    list of response codes and a count of how many requests had that code in the given time period
    EndTs string
    The end time of the access period
    StartTs string
    The start time of the access period
    Counts []GetApiRequestsOverviewResponseCodesByIntervalItemCount
    list of response codes and a count of how many requests had that code in the given time period
    EndTs string
    The end time of the access period
    StartTs string
    The start time of the access period
    counts List<GetApiRequestsOverviewResponseCodesByIntervalItemCount>
    list of response codes and a count of how many requests had that code in the given time period
    endTs String
    The end time of the access period
    startTs String
    The start time of the access period
    counts GetApiRequestsOverviewResponseCodesByIntervalItemCount[]
    list of response codes and a count of how many requests had that code in the given time period
    endTs string
    The end time of the access period
    startTs string
    The start time of the access period
    counts Sequence[GetApiRequestsOverviewResponseCodesByIntervalItemCount]
    list of response codes and a count of how many requests had that code in the given time period
    end_ts str
    The end time of the access period
    start_ts str
    The start time of the access period
    counts List<Property Map>
    list of response codes and a count of how many requests had that code in the given time period
    endTs String
    The end time of the access period
    startTs String
    The start time of the access period

    GetApiRequestsOverviewResponseCodesByIntervalItemCount

    Code int
    Response status code of the API response
    Count int
    Number of records that match the status code
    Code int
    Response status code of the API response
    Count int
    Number of records that match the status code
    code Integer
    Response status code of the API response
    count Integer
    Number of records that match the status code
    code number
    Response status code of the API response
    count number
    Number of records that match the status code
    code int
    Response status code of the API response
    count int
    Number of records that match the status code
    code Number
    Response status code of the API response
    count Number
    Number of records that match the status code

    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