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

meraki.organizations.getUplinksStatuses

Explore with Pulumi AI

Cisco Meraki v0.4.1 published on Saturday, Mar 15, 2025 by Pulumi

Example Usage

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

const example = meraki.organizations.getUplinksStatuses({
    endingBefore: "string",
    iccids: ["string"],
    networkIds: ["string"],
    organizationId: "string",
    perPage: 1,
    serials: ["string"],
    startingAfter: "string",
});
export const merakiOrganizationsUplinksStatusesExample = example.then(example => example.items);
Copy
import pulumi
import pulumi_meraki as meraki

example = meraki.organizations.get_uplinks_statuses(ending_before="string",
    iccids=["string"],
    network_ids=["string"],
    organization_id="string",
    per_page=1,
    serials=["string"],
    starting_after="string")
pulumi.export("merakiOrganizationsUplinksStatusesExample", example.items)
Copy
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.GetUplinksStatuses(ctx, &organizations.GetUplinksStatusesArgs{
			EndingBefore: pulumi.StringRef("string"),
			Iccids: []string{
				"string",
			},
			NetworkIds: []string{
				"string",
			},
			OrganizationId: "string",
			PerPage:        pulumi.IntRef(1),
			Serials: []string{
				"string",
			},
			StartingAfter: pulumi.StringRef("string"),
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("merakiOrganizationsUplinksStatusesExample", 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.Organizations.GetUplinksStatuses.Invoke(new()
    {
        EndingBefore = "string",
        Iccids = new[]
        {
            "string",
        },
        NetworkIds = new[]
        {
            "string",
        },
        OrganizationId = "string",
        PerPage = 1,
        Serials = new[]
        {
            "string",
        },
        StartingAfter = "string",
    });

    return new Dictionary<string, object?>
    {
        ["merakiOrganizationsUplinksStatusesExample"] = example.Apply(getUplinksStatusesResult => getUplinksStatusesResult.Items),
    };
});
Copy
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.GetUplinksStatusesArgs;
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.getUplinksStatuses(GetUplinksStatusesArgs.builder()
            .endingBefore("string")
            .iccids("string")
            .networkIds("string")
            .organizationId("string")
            .perPage(1)
            .serials("string")
            .startingAfter("string")
            .build());

        ctx.export("merakiOrganizationsUplinksStatusesExample", example.applyValue(getUplinksStatusesResult -> getUplinksStatusesResult.items()));
    }
}
Copy
variables:
  example:
    fn::invoke:
      function: meraki:organizations:getUplinksStatuses
      arguments:
        endingBefore: string
        iccids:
          - string
        networkIds:
          - string
        organizationId: string
        perPage: 1
        serials:
          - string
        startingAfter: string
outputs:
  merakiOrganizationsUplinksStatusesExample: ${example.items}
Copy

Using getUplinksStatuses

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 getUplinksStatuses(args: GetUplinksStatusesArgs, opts?: InvokeOptions): Promise<GetUplinksStatusesResult>
function getUplinksStatusesOutput(args: GetUplinksStatusesOutputArgs, opts?: InvokeOptions): Output<GetUplinksStatusesResult>
Copy
def get_uplinks_statuses(ending_before: Optional[str] = None,
                         iccids: Optional[Sequence[str]] = None,
                         network_ids: Optional[Sequence[str]] = None,
                         organization_id: Optional[str] = None,
                         per_page: Optional[int] = None,
                         serials: Optional[Sequence[str]] = None,
                         starting_after: Optional[str] = None,
                         opts: Optional[InvokeOptions] = None) -> GetUplinksStatusesResult
def get_uplinks_statuses_output(ending_before: Optional[pulumi.Input[str]] = None,
                         iccids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                         network_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                         organization_id: Optional[pulumi.Input[str]] = None,
                         per_page: Optional[pulumi.Input[int]] = None,
                         serials: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                         starting_after: Optional[pulumi.Input[str]] = None,
                         opts: Optional[InvokeOptions] = None) -> Output[GetUplinksStatusesResult]
Copy
func GetUplinksStatuses(ctx *Context, args *GetUplinksStatusesArgs, opts ...InvokeOption) (*GetUplinksStatusesResult, error)
func GetUplinksStatusesOutput(ctx *Context, args *GetUplinksStatusesOutputArgs, opts ...InvokeOption) GetUplinksStatusesResultOutput
Copy

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

public static class GetUplinksStatuses 
{
    public static Task<GetUplinksStatusesResult> InvokeAsync(GetUplinksStatusesArgs args, InvokeOptions? opts = null)
    public static Output<GetUplinksStatusesResult> Invoke(GetUplinksStatusesInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetUplinksStatusesResult> getUplinksStatuses(GetUplinksStatusesArgs args, InvokeOptions options)
public static Output<GetUplinksStatusesResult> getUplinksStatuses(GetUplinksStatusesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: meraki:organizations/getUplinksStatuses:getUplinksStatuses
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

OrganizationId This property is required. string
organizationId path parameter. Organization ID
EndingBefore string
endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
Iccids List<string>
iccids query parameter. A list of ICCIDs. The returned devices will be filtered to only include these ICCIDs.
NetworkIds List<string>
networkIds query parameter. A list of network IDs. The returned devices will be filtered to only include these networks.
PerPage int
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
Serials List<string>
serials query parameter. A list of serial numbers. The returned devices will be filtered to only include these serials.
StartingAfter string
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
OrganizationId This property is required. string
organizationId path parameter. Organization ID
EndingBefore string
endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
Iccids []string
iccids query parameter. A list of ICCIDs. The returned devices will be filtered to only include these ICCIDs.
NetworkIds []string
networkIds query parameter. A list of network IDs. The returned devices will be filtered to only include these networks.
PerPage int
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
Serials []string
serials query parameter. A list of serial numbers. The returned devices will be filtered to only include these serials.
StartingAfter string
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
organizationId This property is required. String
organizationId path parameter. Organization ID
endingBefore String
endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
iccids List<String>
iccids query parameter. A list of ICCIDs. The returned devices will be filtered to only include these ICCIDs.
networkIds List<String>
networkIds query parameter. A list of network IDs. The returned devices will be filtered to only include these networks.
perPage Integer
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
serials List<String>
serials query parameter. A list of serial numbers. The returned devices will be filtered to only include these serials.
startingAfter String
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
organizationId This property is required. string
organizationId path parameter. Organization ID
endingBefore string
endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
iccids string[]
iccids query parameter. A list of ICCIDs. The returned devices will be filtered to only include these ICCIDs.
networkIds string[]
networkIds query parameter. A list of network IDs. The returned devices will be filtered to only include these networks.
perPage number
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
serials string[]
serials query parameter. A list of serial numbers. The returned devices will be filtered to only include these serials.
startingAfter string
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
organization_id This property is required. str
organizationId path parameter. Organization ID
ending_before str
endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
iccids Sequence[str]
iccids query parameter. A list of ICCIDs. The returned devices will be filtered to only include these ICCIDs.
network_ids Sequence[str]
networkIds query parameter. A list of network IDs. The returned devices will be filtered to only include these networks.
per_page int
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
serials Sequence[str]
serials query parameter. A list of serial numbers. The returned devices will be filtered to only include these serials.
starting_after str
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
organizationId This property is required. String
organizationId path parameter. Organization ID
endingBefore String
endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
iccids List<String>
iccids query parameter. A list of ICCIDs. The returned devices will be filtered to only include these ICCIDs.
networkIds List<String>
networkIds query parameter. A list of network IDs. The returned devices will be filtered to only include these networks.
perPage Number
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
serials List<String>
serials query parameter. A list of serial numbers. The returned devices will be filtered to only include these serials.
startingAfter String
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.

getUplinksStatuses Result

The following output properties are available:

Id string
The provider-assigned unique ID for this managed resource.
Items List<GetUplinksStatusesItem>
Array of ResponseOrganizationsGetOrganizationUplinksStatuses
OrganizationId string
organizationId path parameter. Organization ID
EndingBefore string
endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
Iccids List<string>
iccids query parameter. A list of ICCIDs. The returned devices will be filtered to only include these ICCIDs.
NetworkIds List<string>
networkIds query parameter. A list of network IDs. The returned devices will be filtered to only include these networks.
PerPage int
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
Serials List<string>
serials query parameter. A list of serial numbers. The returned devices will be filtered to only include these serials.
StartingAfter string
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
Id string
The provider-assigned unique ID for this managed resource.
Items []GetUplinksStatusesItem
Array of ResponseOrganizationsGetOrganizationUplinksStatuses
OrganizationId string
organizationId path parameter. Organization ID
EndingBefore string
endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
Iccids []string
iccids query parameter. A list of ICCIDs. The returned devices will be filtered to only include these ICCIDs.
NetworkIds []string
networkIds query parameter. A list of network IDs. The returned devices will be filtered to only include these networks.
PerPage int
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
Serials []string
serials query parameter. A list of serial numbers. The returned devices will be filtered to only include these serials.
StartingAfter string
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
id String
The provider-assigned unique ID for this managed resource.
items List<GetUplinksStatusesItem>
Array of ResponseOrganizationsGetOrganizationUplinksStatuses
organizationId String
organizationId path parameter. Organization ID
endingBefore String
endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
iccids List<String>
iccids query parameter. A list of ICCIDs. The returned devices will be filtered to only include these ICCIDs.
networkIds List<String>
networkIds query parameter. A list of network IDs. The returned devices will be filtered to only include these networks.
perPage Integer
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
serials List<String>
serials query parameter. A list of serial numbers. The returned devices will be filtered to only include these serials.
startingAfter String
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
id string
The provider-assigned unique ID for this managed resource.
items GetUplinksStatusesItem[]
Array of ResponseOrganizationsGetOrganizationUplinksStatuses
organizationId string
organizationId path parameter. Organization ID
endingBefore string
endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
iccids string[]
iccids query parameter. A list of ICCIDs. The returned devices will be filtered to only include these ICCIDs.
networkIds string[]
networkIds query parameter. A list of network IDs. The returned devices will be filtered to only include these networks.
perPage number
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
serials string[]
serials query parameter. A list of serial numbers. The returned devices will be filtered to only include these serials.
startingAfter string
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
id str
The provider-assigned unique ID for this managed resource.
items Sequence[GetUplinksStatusesItem]
Array of ResponseOrganizationsGetOrganizationUplinksStatuses
organization_id str
organizationId path parameter. Organization ID
ending_before str
endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
iccids Sequence[str]
iccids query parameter. A list of ICCIDs. The returned devices will be filtered to only include these ICCIDs.
network_ids Sequence[str]
networkIds query parameter. A list of network IDs. The returned devices will be filtered to only include these networks.
per_page int
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
serials Sequence[str]
serials query parameter. A list of serial numbers. The returned devices will be filtered to only include these serials.
starting_after str
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
id String
The provider-assigned unique ID for this managed resource.
items List<Property Map>
Array of ResponseOrganizationsGetOrganizationUplinksStatuses
organizationId String
organizationId path parameter. Organization ID
endingBefore String
endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
iccids List<String>
iccids query parameter. A list of ICCIDs. The returned devices will be filtered to only include these ICCIDs.
networkIds List<String>
networkIds query parameter. A list of network IDs. The returned devices will be filtered to only include these networks.
perPage Number
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
serials List<String>
serials query parameter. A list of serial numbers. The returned devices will be filtered to only include these serials.
startingAfter String
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.

Supporting Types

GetUplinksStatusesItem

HighAvailability This property is required. GetUplinksStatusesItemHighAvailability
Device High Availability Capabilities
LastReportedAt This property is required. string
Last reported time for the device
Model This property is required. string
The uplink model
NetworkId This property is required. string
Network identifier
Serial This property is required. string
The uplink serial
Uplinks This property is required. List<GetUplinksStatusesItemUplink>
Uplinks
HighAvailability This property is required. GetUplinksStatusesItemHighAvailability
Device High Availability Capabilities
LastReportedAt This property is required. string
Last reported time for the device
Model This property is required. string
The uplink model
NetworkId This property is required. string
Network identifier
Serial This property is required. string
The uplink serial
Uplinks This property is required. []GetUplinksStatusesItemUplink
Uplinks
highAvailability This property is required. GetUplinksStatusesItemHighAvailability
Device High Availability Capabilities
lastReportedAt This property is required. String
Last reported time for the device
model This property is required. String
The uplink model
networkId This property is required. String
Network identifier
serial This property is required. String
The uplink serial
uplinks This property is required. List<GetUplinksStatusesItemUplink>
Uplinks
highAvailability This property is required. GetUplinksStatusesItemHighAvailability
Device High Availability Capabilities
lastReportedAt This property is required. string
Last reported time for the device
model This property is required. string
The uplink model
networkId This property is required. string
Network identifier
serial This property is required. string
The uplink serial
uplinks This property is required. GetUplinksStatusesItemUplink[]
Uplinks
high_availability This property is required. GetUplinksStatusesItemHighAvailability
Device High Availability Capabilities
last_reported_at This property is required. str
Last reported time for the device
model This property is required. str
The uplink model
network_id This property is required. str
Network identifier
serial This property is required. str
The uplink serial
uplinks This property is required. Sequence[GetUplinksStatusesItemUplink]
Uplinks
highAvailability This property is required. Property Map
Device High Availability Capabilities
lastReportedAt This property is required. String
Last reported time for the device
model This property is required. String
The uplink model
networkId This property is required. String
Network identifier
serial This property is required. String
The uplink serial
uplinks This property is required. List<Property Map>
Uplinks

GetUplinksStatusesItemHighAvailability

Enabled This property is required. bool
Indicates whether High Availability is enabled for the device. For devices that do not support HA, this will be 'false'
Role This property is required. string
The HA role of the device on the network. For devices that do not support HA, this will be 'primary'
Enabled This property is required. bool
Indicates whether High Availability is enabled for the device. For devices that do not support HA, this will be 'false'
Role This property is required. string
The HA role of the device on the network. For devices that do not support HA, this will be 'primary'
enabled This property is required. Boolean
Indicates whether High Availability is enabled for the device. For devices that do not support HA, this will be 'false'
role This property is required. String
The HA role of the device on the network. For devices that do not support HA, this will be 'primary'
enabled This property is required. boolean
Indicates whether High Availability is enabled for the device. For devices that do not support HA, this will be 'false'
role This property is required. string
The HA role of the device on the network. For devices that do not support HA, this will be 'primary'
enabled This property is required. bool
Indicates whether High Availability is enabled for the device. For devices that do not support HA, this will be 'false'
role This property is required. str
The HA role of the device on the network. For devices that do not support HA, this will be 'primary'
enabled This property is required. Boolean
Indicates whether High Availability is enabled for the device. For devices that do not support HA, this will be 'false'
role This property is required. String
The HA role of the device on the network. For devices that do not support HA, this will be 'primary'
Apn This property is required. string
Access Point Name
ConnectionType This property is required. string
Connection Type
Dns1 This property is required. string
Primary DNS IP
Dns2 This property is required. string
Secondary DNS IP
Gateway This property is required. string
Gateway IP
Iccid This property is required. string
Integrated Circuit Card Identification Number
Interface This property is required. string
Uplink interface
Ip This property is required. string
Uplink IP
IpAssignedBy This property is required. string
The way in which the IP is assigned
PrimaryDns This property is required. string
Primary DNS IP
Provider This property is required. string
Network Provider
PublicIp This property is required. string
Public IP
SecondaryDns This property is required. string
Secondary DNS IP
SignalStat This property is required. GetUplinksStatusesItemUplinkSignalStat
Tower Signal Status
SignalType This property is required. string
Signal Type
Status This property is required. string
Uplink status
Apn This property is required. string
Access Point Name
ConnectionType This property is required. string
Connection Type
Dns1 This property is required. string
Primary DNS IP
Dns2 This property is required. string
Secondary DNS IP
Gateway This property is required. string
Gateway IP
Iccid This property is required. string
Integrated Circuit Card Identification Number
Interface This property is required. string
Uplink interface
Ip This property is required. string
Uplink IP
IpAssignedBy This property is required. string
The way in which the IP is assigned
PrimaryDns This property is required. string
Primary DNS IP
Provider This property is required. string
Network Provider
PublicIp This property is required. string
Public IP
SecondaryDns This property is required. string
Secondary DNS IP
SignalStat This property is required. GetUplinksStatusesItemUplinkSignalStat
Tower Signal Status
SignalType This property is required. string
Signal Type
Status This property is required. string
Uplink status
apn This property is required. String
Access Point Name
connectionType This property is required. String
Connection Type
dns1 This property is required. String
Primary DNS IP
dns2 This property is required. String
Secondary DNS IP
gateway This property is required. String
Gateway IP
iccid This property is required. String
Integrated Circuit Card Identification Number
interface_ This property is required. String
Uplink interface
ip This property is required. String
Uplink IP
ipAssignedBy This property is required. String
The way in which the IP is assigned
primaryDns This property is required. String
Primary DNS IP
provider This property is required. String
Network Provider
publicIp This property is required. String
Public IP
secondaryDns This property is required. String
Secondary DNS IP
signalStat This property is required. GetUplinksStatusesItemUplinkSignalStat
Tower Signal Status
signalType This property is required. String
Signal Type
status This property is required. String
Uplink status
apn This property is required. string
Access Point Name
connectionType This property is required. string
Connection Type
dns1 This property is required. string
Primary DNS IP
dns2 This property is required. string
Secondary DNS IP
gateway This property is required. string
Gateway IP
iccid This property is required. string
Integrated Circuit Card Identification Number
interface This property is required. string
Uplink interface
ip This property is required. string
Uplink IP
ipAssignedBy This property is required. string
The way in which the IP is assigned
primaryDns This property is required. string
Primary DNS IP
provider This property is required. string
Network Provider
publicIp This property is required. string
Public IP
secondaryDns This property is required. string
Secondary DNS IP
signalStat This property is required. GetUplinksStatusesItemUplinkSignalStat
Tower Signal Status
signalType This property is required. string
Signal Type
status This property is required. string
Uplink status
apn This property is required. str
Access Point Name
connection_type This property is required. str
Connection Type
dns1 This property is required. str
Primary DNS IP
dns2 This property is required. str
Secondary DNS IP
gateway This property is required. str
Gateway IP
iccid This property is required. str
Integrated Circuit Card Identification Number
interface This property is required. str
Uplink interface
ip This property is required. str
Uplink IP
ip_assigned_by This property is required. str
The way in which the IP is assigned
primary_dns This property is required. str
Primary DNS IP
provider This property is required. str
Network Provider
public_ip This property is required. str
Public IP
secondary_dns This property is required. str
Secondary DNS IP
signal_stat This property is required. GetUplinksStatusesItemUplinkSignalStat
Tower Signal Status
signal_type This property is required. str
Signal Type
status This property is required. str
Uplink status
apn This property is required. String
Access Point Name
connectionType This property is required. String
Connection Type
dns1 This property is required. String
Primary DNS IP
dns2 This property is required. String
Secondary DNS IP
gateway This property is required. String
Gateway IP
iccid This property is required. String
Integrated Circuit Card Identification Number
interface This property is required. String
Uplink interface
ip This property is required. String
Uplink IP
ipAssignedBy This property is required. String
The way in which the IP is assigned
primaryDns This property is required. String
Primary DNS IP
provider This property is required. String
Network Provider
publicIp This property is required. String
Public IP
secondaryDns This property is required. String
Secondary DNS IP
signalStat This property is required. Property Map
Tower Signal Status
signalType This property is required. String
Signal Type
status This property is required. String
Uplink status

GetUplinksStatusesItemUplinkSignalStat

Rsrp This property is required. string
Reference Signal Received Power
Rsrq This property is required. string
Reference Signal Received Quality
Rsrp This property is required. string
Reference Signal Received Power
Rsrq This property is required. string
Reference Signal Received Quality
rsrp This property is required. String
Reference Signal Received Power
rsrq This property is required. String
Reference Signal Received Quality
rsrp This property is required. string
Reference Signal Received Power
rsrq This property is required. string
Reference Signal Received Quality
rsrp This property is required. str
Reference Signal Received Power
rsrq This property is required. str
Reference Signal Received Quality
rsrp This property is required. String
Reference Signal Received Power
rsrq This property is required. String
Reference Signal Received Quality

Package Details

Repository
meraki pulumi/pulumi-meraki
License
Apache-2.0
Notes
This Pulumi package is based on the meraki Terraform Provider.
Cisco Meraki v0.4.1 published on Saturday, Mar 15, 2025 by Pulumi