1. Packages
  2. Cisco Meraki
  3. API Docs
  4. networks
  5. CellularGatewayUplink
Cisco Meraki v0.2.10 published on Wednesday, Jul 24, 2024 by Pulumi

meraki.networks.CellularGatewayUplink

Explore with Pulumi AI

meraki logo
Cisco Meraki v0.2.10 published on Wednesday, Jul 24, 2024 by Pulumi

    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:

    NetworkId string
    networkId path parameter. Network ID
    BandwidthLimits CellularGatewayUplinkBandwidthLimits
    The bandwidth settings for the 'cellular' uplink
    NetworkId string
    networkId path parameter. Network ID
    BandwidthLimits CellularGatewayUplinkBandwidthLimitsArgs
    The bandwidth settings for the 'cellular' uplink
    networkId String
    networkId path parameter. Network ID
    bandwidthLimits CellularGatewayUplinkBandwidthLimits
    The bandwidth settings for the 'cellular' uplink
    networkId string
    networkId path parameter. Network ID
    bandwidthLimits CellularGatewayUplinkBandwidthLimits
    The bandwidth settings for the 'cellular' uplink
    network_id str
    networkId path parameter. Network ID
    bandwidth_limits CellularGatewayUplinkBandwidthLimitsArgs
    The bandwidth settings for the 'cellular' uplink
    networkId String
    networkId path parameter. Network ID
    bandwidthLimits 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.
    The following state arguments are supported:
    BandwidthLimits CellularGatewayUplinkBandwidthLimits
    The bandwidth settings for the 'cellular' uplink
    NetworkId string
    networkId path parameter. Network ID
    BandwidthLimits CellularGatewayUplinkBandwidthLimitsArgs
    The bandwidth settings for the 'cellular' uplink
    NetworkId string
    networkId path parameter. Network ID
    bandwidthLimits CellularGatewayUplinkBandwidthLimits
    The bandwidth settings for the 'cellular' uplink
    networkId String
    networkId path parameter. Network ID
    bandwidthLimits CellularGatewayUplinkBandwidthLimits
    The bandwidth settings for the 'cellular' uplink
    networkId string
    networkId path parameter. Network ID
    bandwidth_limits CellularGatewayUplinkBandwidthLimitsArgs
    The bandwidth settings for the 'cellular' uplink
    network_id str
    networkId path parameter. Network ID
    bandwidthLimits Property Map
    The bandwidth settings for the 'cellular' uplink
    networkId String
    networkId path parameter. Network ID

    Supporting Types

    CellularGatewayUplinkBandwidthLimits, CellularGatewayUplinkBandwidthLimitsArgs

    LimitDown int
    The maximum download limit (integer, in Kbps). 'null' indicates no limit.
    LimitUp int
    The maximum upload limit (integer, in Kbps). 'null' indicates no limit.
    LimitDown int
    The maximum download limit (integer, in Kbps). 'null' indicates no limit.
    LimitUp int
    The maximum upload limit (integer, in Kbps). 'null' indicates no limit.
    limitDown Integer
    The maximum download limit (integer, in Kbps). 'null' indicates no limit.
    limitUp Integer
    The maximum upload limit (integer, in Kbps). 'null' indicates no limit.
    limitDown number
    The maximum download limit (integer, in Kbps). 'null' indicates no limit.
    limitUp number
    The maximum upload limit (integer, in Kbps). 'null' indicates no limit.
    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.
    limitDown Number
    The maximum download limit (integer, in Kbps). 'null' indicates no limit.
    limitUp Number
    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.
    meraki logo
    Cisco Meraki v0.2.10 published on Wednesday, Jul 24, 2024 by Pulumi