meraki.networks.CellularGatewayUplink
Explore with Pulumi AI
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.meraki.networks.CellularGatewayUplink;
import com.pulumi.meraki.networks.CellularGatewayUplinkArgs;
import com.pulumi.meraki.networks.inputs.CellularGatewayUplinkBandwidthLimitsArgs;
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) {
var example = new CellularGatewayUplink("example", CellularGatewayUplinkArgs.builder()
.bandwidthLimits(CellularGatewayUplinkBandwidthLimitsArgs.builder()
.limit_down(1000000)
.limit_up(1000000)
.build())
.networkId("string")
.build());
ctx.export("merakiNetworksCellularGatewayUplinkExample", example);
}
}
resources:
example:
type: meraki:networks:CellularGatewayUplink
properties:
bandwidthLimits:
limit_down: 1e+06
limit_up: 1e+06
networkId: string
outputs:
merakiNetworksCellularGatewayUplinkExample: ${example}
Create CellularGatewayUplink Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CellularGatewayUplink(name: string, args: CellularGatewayUplinkArgs, opts?: CustomResourceOptions);
@overload
def CellularGatewayUplink(resource_name: str,
args: CellularGatewayUplinkArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CellularGatewayUplink(resource_name: str,
opts: Optional[ResourceOptions] = None,
network_id: Optional[str] = None,
bandwidth_limits: Optional[CellularGatewayUplinkBandwidthLimitsArgs] = None)
func NewCellularGatewayUplink(ctx *Context, name string, args CellularGatewayUplinkArgs, opts ...ResourceOption) (*CellularGatewayUplink, error)
public CellularGatewayUplink(string name, CellularGatewayUplinkArgs args, CustomResourceOptions? opts = null)
public CellularGatewayUplink(String name, CellularGatewayUplinkArgs args)
public CellularGatewayUplink(String name, CellularGatewayUplinkArgs args, CustomResourceOptions options)
type: meraki:networks:CellularGatewayUplink
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args CellularGatewayUplinkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args CellularGatewayUplinkArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args CellularGatewayUplinkArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CellularGatewayUplinkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CellularGatewayUplinkArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var cellularGatewayUplinkResource = new Meraki.Networks.CellularGatewayUplink("cellularGatewayUplinkResource", new()
{
NetworkId = "string",
BandwidthLimits = new Meraki.Networks.Inputs.CellularGatewayUplinkBandwidthLimitsArgs
{
LimitDown = 0,
LimitUp = 0,
},
});
example, err := networks.NewCellularGatewayUplink(ctx, "cellularGatewayUplinkResource", &networks.CellularGatewayUplinkArgs{
NetworkId: pulumi.String("string"),
BandwidthLimits: &networks.CellularGatewayUplinkBandwidthLimitsArgs{
LimitDown: pulumi.Int(0),
LimitUp: pulumi.Int(0),
},
})
var cellularGatewayUplinkResource = new CellularGatewayUplink("cellularGatewayUplinkResource", CellularGatewayUplinkArgs.builder()
.networkId("string")
.bandwidthLimits(CellularGatewayUplinkBandwidthLimitsArgs.builder()
.limitDown(0)
.limitUp(0)
.build())
.build());
cellular_gateway_uplink_resource = meraki.networks.CellularGatewayUplink("cellularGatewayUplinkResource",
network_id="string",
bandwidth_limits=meraki.networks.CellularGatewayUplinkBandwidthLimitsArgs(
limit_down=0,
limit_up=0,
))
const cellularGatewayUplinkResource = new meraki.networks.CellularGatewayUplink("cellularGatewayUplinkResource", {
networkId: "string",
bandwidthLimits: {
limitDown: 0,
limitUp: 0,
},
});
type: meraki:networks:CellularGatewayUplink
properties:
bandwidthLimits:
limitDown: 0
limitUp: 0
networkId: string
CellularGatewayUplink Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The CellularGatewayUplink resource accepts the following input properties:
- Network
Id string - networkId path parameter. Network ID
- Bandwidth
Limits CellularGateway Uplink Bandwidth Limits - The bandwidth settings for the 'cellular' uplink
- Network
Id string - networkId path parameter. Network ID
- Bandwidth
Limits CellularGateway Uplink Bandwidth Limits Args - The bandwidth settings for the 'cellular' uplink
- network
Id String - networkId path parameter. Network ID
- bandwidth
Limits CellularGateway Uplink Bandwidth Limits - The bandwidth settings for the 'cellular' uplink
- network
Id string - networkId path parameter. Network ID
- bandwidth
Limits CellularGateway Uplink Bandwidth Limits - The bandwidth settings for the 'cellular' uplink
- network_
id str - networkId path parameter. Network ID
- bandwidth_
limits CellularGateway Uplink Bandwidth Limits Args - The bandwidth settings for the 'cellular' uplink
- network
Id String - networkId path parameter. Network ID
- bandwidth
Limits Property Map - The bandwidth settings for the 'cellular' uplink
Outputs
All input properties are implicitly available as output properties. Additionally, the CellularGatewayUplink resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing CellularGatewayUplink Resource
Get an existing CellularGatewayUplink resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: CellularGatewayUplinkState, opts?: CustomResourceOptions): CellularGatewayUplink
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
bandwidth_limits: Optional[CellularGatewayUplinkBandwidthLimitsArgs] = None,
network_id: Optional[str] = None) -> CellularGatewayUplink
func GetCellularGatewayUplink(ctx *Context, name string, id IDInput, state *CellularGatewayUplinkState, opts ...ResourceOption) (*CellularGatewayUplink, error)
public static CellularGatewayUplink Get(string name, Input<string> id, CellularGatewayUplinkState? state, CustomResourceOptions? opts = null)
public static CellularGatewayUplink get(String name, Output<String> id, CellularGatewayUplinkState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Bandwidth
Limits CellularGateway Uplink Bandwidth Limits - The bandwidth settings for the 'cellular' uplink
- Network
Id string - networkId path parameter. Network ID
- Bandwidth
Limits CellularGateway Uplink Bandwidth Limits Args - The bandwidth settings for the 'cellular' uplink
- Network
Id string - networkId path parameter. Network ID
- bandwidth
Limits CellularGateway Uplink Bandwidth Limits - The bandwidth settings for the 'cellular' uplink
- network
Id String - networkId path parameter. Network ID
- bandwidth
Limits CellularGateway Uplink Bandwidth Limits - The bandwidth settings for the 'cellular' uplink
- network
Id string - networkId path parameter. Network ID
- bandwidth_
limits CellularGateway Uplink Bandwidth Limits Args - The bandwidth settings for the 'cellular' uplink
- network_
id str - networkId path parameter. Network ID
- bandwidth
Limits Property Map - The bandwidth settings for the 'cellular' uplink
- network
Id String - networkId path parameter. Network ID
Supporting Types
CellularGatewayUplinkBandwidthLimits, CellularGatewayUplinkBandwidthLimitsArgs
- limit_
down int - The maximum download limit (integer, in Kbps). 'null' indicates no limit.
- limit_
up int - The maximum upload limit (integer, in Kbps). 'null' indicates no limit.
Import
$ pulumi import meraki:networks/cellularGatewayUplink:CellularGatewayUplink example "network_id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- meraki pulumi/pulumi-meraki
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
meraki
Terraform Provider.