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

meraki.networks.WirelessSsidsSchedules

Explore with Pulumi AI

meraki logo
Cisco Meraki v0.2.4 published on Friday, Jun 14, 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.WirelessSsidsSchedules;
    import com.pulumi.meraki.networks.WirelessSsidsSchedulesArgs;
    import com.pulumi.meraki.networks.inputs.WirelessSsidsSchedulesRangeArgs;
    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 WirelessSsidsSchedules("example", WirelessSsidsSchedulesArgs.builder()
                .enabled(true)
                .networkId("string")
                .number("string")
                .ranges(WirelessSsidsSchedulesRangeArgs.builder()
                    .end_day("Tuesday")
                    .end_time("05:00")
                    .start_day("Tuesday")
                    .start_time("01:00")
                    .build())
                .build());
    
            ctx.export("merakiNetworksWirelessSsidsSchedulesExample", example);
        }
    }
    
    resources:
      example:
        type: meraki:networks:WirelessSsidsSchedules
        properties:
          enabled: true
          networkId: string
          number: string
          ranges:
            - end_day: Tuesday
              end_time: 05:00
              start_day: Tuesday
              start_time: 01:00
    outputs:
      merakiNetworksWirelessSsidsSchedulesExample: ${example}
    

    Create WirelessSsidsSchedules Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new WirelessSsidsSchedules(name: string, args: WirelessSsidsSchedulesArgs, opts?: CustomResourceOptions);
    @overload
    def WirelessSsidsSchedules(resource_name: str,
                               args: WirelessSsidsSchedulesArgs,
                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def WirelessSsidsSchedules(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               network_id: Optional[str] = None,
                               number: Optional[str] = None,
                               enabled: Optional[bool] = None,
                               ranges: Optional[Sequence[WirelessSsidsSchedulesRangeArgs]] = None,
                               ranges_in_seconds: Optional[Sequence[WirelessSsidsSchedulesRangesInSecondArgs]] = None)
    func NewWirelessSsidsSchedules(ctx *Context, name string, args WirelessSsidsSchedulesArgs, opts ...ResourceOption) (*WirelessSsidsSchedules, error)
    public WirelessSsidsSchedules(string name, WirelessSsidsSchedulesArgs args, CustomResourceOptions? opts = null)
    public WirelessSsidsSchedules(String name, WirelessSsidsSchedulesArgs args)
    public WirelessSsidsSchedules(String name, WirelessSsidsSchedulesArgs args, CustomResourceOptions options)
    
    type: meraki:networks:WirelessSsidsSchedules
    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 WirelessSsidsSchedulesArgs
    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 WirelessSsidsSchedulesArgs
    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 WirelessSsidsSchedulesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WirelessSsidsSchedulesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WirelessSsidsSchedulesArgs
    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 wirelessSsidsSchedulesResource = new Meraki.Networks.WirelessSsidsSchedules("wirelessSsidsSchedulesResource", new()
    {
        NetworkId = "string",
        Number = "string",
        Enabled = false,
        Ranges = new[]
        {
            new Meraki.Networks.Inputs.WirelessSsidsSchedulesRangeArgs
            {
                EndDay = "string",
                EndTime = "string",
                StartDay = "string",
                StartTime = "string",
            },
        },
        RangesInSeconds = new[]
        {
            new Meraki.Networks.Inputs.WirelessSsidsSchedulesRangesInSecondArgs
            {
                End = 0,
                Start = 0,
            },
        },
    });
    
    example, err := networks.NewWirelessSsidsSchedules(ctx, "wirelessSsidsSchedulesResource", &networks.WirelessSsidsSchedulesArgs{
    	NetworkId: pulumi.String("string"),
    	Number:    pulumi.String("string"),
    	Enabled:   pulumi.Bool(false),
    	Ranges: networks.WirelessSsidsSchedulesRangeArray{
    		&networks.WirelessSsidsSchedulesRangeArgs{
    			EndDay:    pulumi.String("string"),
    			EndTime:   pulumi.String("string"),
    			StartDay:  pulumi.String("string"),
    			StartTime: pulumi.String("string"),
    		},
    	},
    	RangesInSeconds: networks.WirelessSsidsSchedulesRangesInSecondArray{
    		&networks.WirelessSsidsSchedulesRangesInSecondArgs{
    			End:   pulumi.Int(0),
    			Start: pulumi.Int(0),
    		},
    	},
    })
    
    var wirelessSsidsSchedulesResource = new WirelessSsidsSchedules("wirelessSsidsSchedulesResource", WirelessSsidsSchedulesArgs.builder()
        .networkId("string")
        .number("string")
        .enabled(false)
        .ranges(WirelessSsidsSchedulesRangeArgs.builder()
            .endDay("string")
            .endTime("string")
            .startDay("string")
            .startTime("string")
            .build())
        .rangesInSeconds(WirelessSsidsSchedulesRangesInSecondArgs.builder()
            .end(0)
            .start(0)
            .build())
        .build());
    
    wireless_ssids_schedules_resource = meraki.networks.WirelessSsidsSchedules("wirelessSsidsSchedulesResource",
        network_id="string",
        number="string",
        enabled=False,
        ranges=[meraki.networks.WirelessSsidsSchedulesRangeArgs(
            end_day="string",
            end_time="string",
            start_day="string",
            start_time="string",
        )],
        ranges_in_seconds=[meraki.networks.WirelessSsidsSchedulesRangesInSecondArgs(
            end=0,
            start=0,
        )])
    
    const wirelessSsidsSchedulesResource = new meraki.networks.WirelessSsidsSchedules("wirelessSsidsSchedulesResource", {
        networkId: "string",
        number: "string",
        enabled: false,
        ranges: [{
            endDay: "string",
            endTime: "string",
            startDay: "string",
            startTime: "string",
        }],
        rangesInSeconds: [{
            end: 0,
            start: 0,
        }],
    });
    
    type: meraki:networks:WirelessSsidsSchedules
    properties:
        enabled: false
        networkId: string
        number: string
        ranges:
            - endDay: string
              endTime: string
              startDay: string
              startTime: string
        rangesInSeconds:
            - end: 0
              start: 0
    

    WirelessSsidsSchedules 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 WirelessSsidsSchedules resource accepts the following input properties:

    NetworkId string
    networkId path parameter. Network ID
    Number string
    number path parameter.
    Enabled bool
    If true, the SSID outage schedule is enabled.
    Ranges List<WirelessSsidsSchedulesRange>
    List of outage ranges. Has a start date and time, and end date and time. If this parameter is passed in along with rangesInSeconds parameter, this will take precedence.
    RangesInSeconds List<WirelessSsidsSchedulesRangesInSecond>
    List of outage ranges in seconds since Sunday at Midnight. Has a start and end. If this parameter is passed in along with the ranges parameter, ranges will take precedence.
    NetworkId string
    networkId path parameter. Network ID
    Number string
    number path parameter.
    Enabled bool
    If true, the SSID outage schedule is enabled.
    Ranges []WirelessSsidsSchedulesRangeArgs
    List of outage ranges. Has a start date and time, and end date and time. If this parameter is passed in along with rangesInSeconds parameter, this will take precedence.
    RangesInSeconds []WirelessSsidsSchedulesRangesInSecondArgs
    List of outage ranges in seconds since Sunday at Midnight. Has a start and end. If this parameter is passed in along with the ranges parameter, ranges will take precedence.
    networkId String
    networkId path parameter. Network ID
    number String
    number path parameter.
    enabled Boolean
    If true, the SSID outage schedule is enabled.
    ranges List<WirelessSsidsSchedulesRange>
    List of outage ranges. Has a start date and time, and end date and time. If this parameter is passed in along with rangesInSeconds parameter, this will take precedence.
    rangesInSeconds List<WirelessSsidsSchedulesRangesInSecond>
    List of outage ranges in seconds since Sunday at Midnight. Has a start and end. If this parameter is passed in along with the ranges parameter, ranges will take precedence.
    networkId string
    networkId path parameter. Network ID
    number string
    number path parameter.
    enabled boolean
    If true, the SSID outage schedule is enabled.
    ranges WirelessSsidsSchedulesRange[]
    List of outage ranges. Has a start date and time, and end date and time. If this parameter is passed in along with rangesInSeconds parameter, this will take precedence.
    rangesInSeconds WirelessSsidsSchedulesRangesInSecond[]
    List of outage ranges in seconds since Sunday at Midnight. Has a start and end. If this parameter is passed in along with the ranges parameter, ranges will take precedence.
    network_id str
    networkId path parameter. Network ID
    number str
    number path parameter.
    enabled bool
    If true, the SSID outage schedule is enabled.
    ranges Sequence[WirelessSsidsSchedulesRangeArgs]
    List of outage ranges. Has a start date and time, and end date and time. If this parameter is passed in along with rangesInSeconds parameter, this will take precedence.
    ranges_in_seconds Sequence[WirelessSsidsSchedulesRangesInSecondArgs]
    List of outage ranges in seconds since Sunday at Midnight. Has a start and end. If this parameter is passed in along with the ranges parameter, ranges will take precedence.
    networkId String
    networkId path parameter. Network ID
    number String
    number path parameter.
    enabled Boolean
    If true, the SSID outage schedule is enabled.
    ranges List<Property Map>
    List of outage ranges. Has a start date and time, and end date and time. If this parameter is passed in along with rangesInSeconds parameter, this will take precedence.
    rangesInSeconds List<Property Map>
    List of outage ranges in seconds since Sunday at Midnight. Has a start and end. If this parameter is passed in along with the ranges parameter, ranges will take precedence.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the WirelessSsidsSchedules 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 WirelessSsidsSchedules Resource

    Get an existing WirelessSsidsSchedules 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?: WirelessSsidsSchedulesState, opts?: CustomResourceOptions): WirelessSsidsSchedules
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            enabled: Optional[bool] = None,
            network_id: Optional[str] = None,
            number: Optional[str] = None,
            ranges: Optional[Sequence[WirelessSsidsSchedulesRangeArgs]] = None,
            ranges_in_seconds: Optional[Sequence[WirelessSsidsSchedulesRangesInSecondArgs]] = None) -> WirelessSsidsSchedules
    func GetWirelessSsidsSchedules(ctx *Context, name string, id IDInput, state *WirelessSsidsSchedulesState, opts ...ResourceOption) (*WirelessSsidsSchedules, error)
    public static WirelessSsidsSchedules Get(string name, Input<string> id, WirelessSsidsSchedulesState? state, CustomResourceOptions? opts = null)
    public static WirelessSsidsSchedules get(String name, Output<String> id, WirelessSsidsSchedulesState 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:
    Enabled bool
    If true, the SSID outage schedule is enabled.
    NetworkId string
    networkId path parameter. Network ID
    Number string
    number path parameter.
    Ranges List<WirelessSsidsSchedulesRange>
    List of outage ranges. Has a start date and time, and end date and time. If this parameter is passed in along with rangesInSeconds parameter, this will take precedence.
    RangesInSeconds List<WirelessSsidsSchedulesRangesInSecond>
    List of outage ranges in seconds since Sunday at Midnight. Has a start and end. If this parameter is passed in along with the ranges parameter, ranges will take precedence.
    Enabled bool
    If true, the SSID outage schedule is enabled.
    NetworkId string
    networkId path parameter. Network ID
    Number string
    number path parameter.
    Ranges []WirelessSsidsSchedulesRangeArgs
    List of outage ranges. Has a start date and time, and end date and time. If this parameter is passed in along with rangesInSeconds parameter, this will take precedence.
    RangesInSeconds []WirelessSsidsSchedulesRangesInSecondArgs
    List of outage ranges in seconds since Sunday at Midnight. Has a start and end. If this parameter is passed in along with the ranges parameter, ranges will take precedence.
    enabled Boolean
    If true, the SSID outage schedule is enabled.
    networkId String
    networkId path parameter. Network ID
    number String
    number path parameter.
    ranges List<WirelessSsidsSchedulesRange>
    List of outage ranges. Has a start date and time, and end date and time. If this parameter is passed in along with rangesInSeconds parameter, this will take precedence.
    rangesInSeconds List<WirelessSsidsSchedulesRangesInSecond>
    List of outage ranges in seconds since Sunday at Midnight. Has a start and end. If this parameter is passed in along with the ranges parameter, ranges will take precedence.
    enabled boolean
    If true, the SSID outage schedule is enabled.
    networkId string
    networkId path parameter. Network ID
    number string
    number path parameter.
    ranges WirelessSsidsSchedulesRange[]
    List of outage ranges. Has a start date and time, and end date and time. If this parameter is passed in along with rangesInSeconds parameter, this will take precedence.
    rangesInSeconds WirelessSsidsSchedulesRangesInSecond[]
    List of outage ranges in seconds since Sunday at Midnight. Has a start and end. If this parameter is passed in along with the ranges parameter, ranges will take precedence.
    enabled bool
    If true, the SSID outage schedule is enabled.
    network_id str
    networkId path parameter. Network ID
    number str
    number path parameter.
    ranges Sequence[WirelessSsidsSchedulesRangeArgs]
    List of outage ranges. Has a start date and time, and end date and time. If this parameter is passed in along with rangesInSeconds parameter, this will take precedence.
    ranges_in_seconds Sequence[WirelessSsidsSchedulesRangesInSecondArgs]
    List of outage ranges in seconds since Sunday at Midnight. Has a start and end. If this parameter is passed in along with the ranges parameter, ranges will take precedence.
    enabled Boolean
    If true, the SSID outage schedule is enabled.
    networkId String
    networkId path parameter. Network ID
    number String
    number path parameter.
    ranges List<Property Map>
    List of outage ranges. Has a start date and time, and end date and time. If this parameter is passed in along with rangesInSeconds parameter, this will take precedence.
    rangesInSeconds List<Property Map>
    List of outage ranges in seconds since Sunday at Midnight. Has a start and end. If this parameter is passed in along with the ranges parameter, ranges will take precedence.

    Supporting Types

    WirelessSsidsSchedulesRange, WirelessSsidsSchedulesRangeArgs

    EndDay string
    Day of when the outage ends. Can be either full day name, or three letter abbreviation
    EndTime string
    24 hour time when the outage ends.
    StartDay string
    Day of when the outage starts. Can be either full day name, or three letter abbreviation.
    StartTime string
    24 hour time when the outage starts.
    EndDay string
    Day of when the outage ends. Can be either full day name, or three letter abbreviation
    EndTime string
    24 hour time when the outage ends.
    StartDay string
    Day of when the outage starts. Can be either full day name, or three letter abbreviation.
    StartTime string
    24 hour time when the outage starts.
    endDay String
    Day of when the outage ends. Can be either full day name, or three letter abbreviation
    endTime String
    24 hour time when the outage ends.
    startDay String
    Day of when the outage starts. Can be either full day name, or three letter abbreviation.
    startTime String
    24 hour time when the outage starts.
    endDay string
    Day of when the outage ends. Can be either full day name, or three letter abbreviation
    endTime string
    24 hour time when the outage ends.
    startDay string
    Day of when the outage starts. Can be either full day name, or three letter abbreviation.
    startTime string
    24 hour time when the outage starts.
    end_day str
    Day of when the outage ends. Can be either full day name, or three letter abbreviation
    end_time str
    24 hour time when the outage ends.
    start_day str
    Day of when the outage starts. Can be either full day name, or three letter abbreviation.
    start_time str
    24 hour time when the outage starts.
    endDay String
    Day of when the outage ends. Can be either full day name, or three letter abbreviation
    endTime String
    24 hour time when the outage ends.
    startDay String
    Day of when the outage starts. Can be either full day name, or three letter abbreviation.
    startTime String
    24 hour time when the outage starts.

    WirelessSsidsSchedulesRangesInSecond, WirelessSsidsSchedulesRangesInSecondArgs

    End int
    Seconds since Sunday at midnight when that outage range ends.
    Start int
    Seconds since Sunday at midnight when the outage range starts.
    End int
    Seconds since Sunday at midnight when that outage range ends.
    Start int
    Seconds since Sunday at midnight when the outage range starts.
    end Integer
    Seconds since Sunday at midnight when that outage range ends.
    start Integer
    Seconds since Sunday at midnight when the outage range starts.
    end number
    Seconds since Sunday at midnight when that outage range ends.
    start number
    Seconds since Sunday at midnight when the outage range starts.
    end int
    Seconds since Sunday at midnight when that outage range ends.
    start int
    Seconds since Sunday at midnight when the outage range starts.
    end Number
    Seconds since Sunday at midnight when that outage range ends.
    start Number
    Seconds since Sunday at midnight when the outage range starts.

    Import

    $ pulumi import meraki:networks/wirelessSsidsSchedules:WirelessSsidsSchedules example "network_id,number"
    

    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.4 published on Friday, Jun 14, 2024 by Pulumi