routeros.CapsmanRates
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as routeros from "@pulumi/routeros";
const testRates = new routeros.CapsmanRates("testRates", {
basics: [
"1Mbps",
"5.5Mbps",
"6Mbps",
"18Mbps",
"36Mbps",
"54Mbps",
],
comment: "test_rates",
htBasicMcs: [
"mcs-0",
"mcs-7",
"mcs-11",
"mcs-14",
"mcs-16",
"mcs-21",
],
htSupportedMcs: [
"mcs-3",
"mcs-8",
"mcs-10",
"mcs-13",
"mcs-17",
"mcs-18",
],
supporteds: [
"2Mbps",
"11Mbps",
"9Mbps",
"12Mbps",
"24Mbps",
"48Mbps",
],
vhtBasicMcs: "none",
vhtSupportedMcs: "mcs0-9,mcs0-7",
});
import pulumi
import pulumi_routeros as routeros
test_rates = routeros.CapsmanRates("testRates",
basics=[
"1Mbps",
"5.5Mbps",
"6Mbps",
"18Mbps",
"36Mbps",
"54Mbps",
],
comment="test_rates",
ht_basic_mcs=[
"mcs-0",
"mcs-7",
"mcs-11",
"mcs-14",
"mcs-16",
"mcs-21",
],
ht_supported_mcs=[
"mcs-3",
"mcs-8",
"mcs-10",
"mcs-13",
"mcs-17",
"mcs-18",
],
supporteds=[
"2Mbps",
"11Mbps",
"9Mbps",
"12Mbps",
"24Mbps",
"48Mbps",
],
vht_basic_mcs="none",
vht_supported_mcs="mcs0-9,mcs0-7")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/routeros/routeros"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := routeros.NewCapsmanRates(ctx, "testRates", &routeros.CapsmanRatesArgs{
Basics: pulumi.StringArray{
pulumi.String("1Mbps"),
pulumi.String("5.5Mbps"),
pulumi.String("6Mbps"),
pulumi.String("18Mbps"),
pulumi.String("36Mbps"),
pulumi.String("54Mbps"),
},
Comment: pulumi.String("test_rates"),
HtBasicMcs: pulumi.StringArray{
pulumi.String("mcs-0"),
pulumi.String("mcs-7"),
pulumi.String("mcs-11"),
pulumi.String("mcs-14"),
pulumi.String("mcs-16"),
pulumi.String("mcs-21"),
},
HtSupportedMcs: pulumi.StringArray{
pulumi.String("mcs-3"),
pulumi.String("mcs-8"),
pulumi.String("mcs-10"),
pulumi.String("mcs-13"),
pulumi.String("mcs-17"),
pulumi.String("mcs-18"),
},
Supporteds: pulumi.StringArray{
pulumi.String("2Mbps"),
pulumi.String("11Mbps"),
pulumi.String("9Mbps"),
pulumi.String("12Mbps"),
pulumi.String("24Mbps"),
pulumi.String("48Mbps"),
},
VhtBasicMcs: pulumi.String("none"),
VhtSupportedMcs: pulumi.String("mcs0-9,mcs0-7"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Routeros = Pulumi.Routeros;
return await Deployment.RunAsync(() =>
{
var testRates = new Routeros.CapsmanRates("testRates", new()
{
Basics = new[]
{
"1Mbps",
"5.5Mbps",
"6Mbps",
"18Mbps",
"36Mbps",
"54Mbps",
},
Comment = "test_rates",
HtBasicMcs = new[]
{
"mcs-0",
"mcs-7",
"mcs-11",
"mcs-14",
"mcs-16",
"mcs-21",
},
HtSupportedMcs = new[]
{
"mcs-3",
"mcs-8",
"mcs-10",
"mcs-13",
"mcs-17",
"mcs-18",
},
Supporteds = new[]
{
"2Mbps",
"11Mbps",
"9Mbps",
"12Mbps",
"24Mbps",
"48Mbps",
},
VhtBasicMcs = "none",
VhtSupportedMcs = "mcs0-9,mcs0-7",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.routeros.CapsmanRates;
import com.pulumi.routeros.CapsmanRatesArgs;
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 testRates = new CapsmanRates("testRates", CapsmanRatesArgs.builder()
.basics(
"1Mbps",
"5.5Mbps",
"6Mbps",
"18Mbps",
"36Mbps",
"54Mbps")
.comment("test_rates")
.htBasicMcs(
"mcs-0",
"mcs-7",
"mcs-11",
"mcs-14",
"mcs-16",
"mcs-21")
.htSupportedMcs(
"mcs-3",
"mcs-8",
"mcs-10",
"mcs-13",
"mcs-17",
"mcs-18")
.supporteds(
"2Mbps",
"11Mbps",
"9Mbps",
"12Mbps",
"24Mbps",
"48Mbps")
.vhtBasicMcs("none")
.vhtSupportedMcs("mcs0-9,mcs0-7")
.build());
}
}
resources:
testRates:
type: routeros:CapsmanRates
properties:
basics:
- 1Mbps
- 5.5Mbps
- 6Mbps
- 18Mbps
- 36Mbps
- 54Mbps
comment: test_rates
htBasicMcs:
- mcs-0
- mcs-7
- mcs-11
- mcs-14
- mcs-16
- mcs-21
htSupportedMcs:
- mcs-3
- mcs-8
- mcs-10
- mcs-13
- mcs-17
- mcs-18
supporteds:
- 2Mbps
- 11Mbps
- 9Mbps
- 12Mbps
- 24Mbps
- 48Mbps
vhtBasicMcs: none
vhtSupportedMcs: mcs0-9,mcs0-7
Create CapsmanRates Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CapsmanRates(name: string, args?: CapsmanRatesArgs, opts?: CustomResourceOptions);
@overload
def CapsmanRates(resource_name: str,
args: Optional[CapsmanRatesArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def CapsmanRates(resource_name: str,
opts: Optional[ResourceOptions] = None,
___id_: Optional[float] = None,
___path_: Optional[str] = None,
basics: Optional[Sequence[str]] = None,
capsman_rates_id: Optional[str] = None,
comment: Optional[str] = None,
ht_basic_mcs: Optional[Sequence[str]] = None,
ht_supported_mcs: Optional[Sequence[str]] = None,
name: Optional[str] = None,
supporteds: Optional[Sequence[str]] = None,
vht_basic_mcs: Optional[str] = None,
vht_supported_mcs: Optional[str] = None)
func NewCapsmanRates(ctx *Context, name string, args *CapsmanRatesArgs, opts ...ResourceOption) (*CapsmanRates, error)
public CapsmanRates(string name, CapsmanRatesArgs? args = null, CustomResourceOptions? opts = null)
public CapsmanRates(String name, CapsmanRatesArgs args)
public CapsmanRates(String name, CapsmanRatesArgs args, CustomResourceOptions options)
type: routeros:CapsmanRates
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 CapsmanRatesArgs
- 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 CapsmanRatesArgs
- 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 CapsmanRatesArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CapsmanRatesArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CapsmanRatesArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
CapsmanRates Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The CapsmanRates resource accepts the following input properties:
- Basics List<string>
- List of basic rates. Client will connect to AP only if it supports all basic rates announced by the AP. AP will establish WDS link only if it supports all basic rates of the other AP.
- Capsman
Rates stringId - Comment string
- Ht
Basic List<string>Mcs - Modulation and Coding Schemes that every connecting client must support. Refer to 802.11n for MCS specification.
- Ht
Supported List<string>Mcs - Modulation and Coding Schemes that this device advertises as supported. Refer to 802.11n for MCS specification.
- Name string
- Supporteds List<string>
- List of supported rates. Two devices will communicate only using rates that are supported by both devices.
- Vht
Basic stringMcs - Modulation and Coding Schemes that every connecting client must support. Refer to 802.11ac for MCS specification. You can set MCS interval for each of Spatial Stream * none - will not use selected * MCS 0-7 - client must support MCS-0 to MCS-7 * MCS 0-8 - client must support MCS-0 to MCS-8 * MCS 0-9 - client must support MCS-0 to MCS-9
- Vht
Supported stringMcs - Modulation and Coding Schemes that this device advertises as supported. Refer to 802.11ac for MCS specification. You can set MCS interval for each of Spatial Stream * none - will not use selected * MCS 0-7 - devices will advertise as supported MCS-0 to MCS-7 * MCS 0-8 - devices will advertise as supported MCS-0 to MCS-8 * MCS 0-9 - devices will advertise as supported MCS-0 to MCS-9
- ___
id_ double - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ string - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- Basics []string
- List of basic rates. Client will connect to AP only if it supports all basic rates announced by the AP. AP will establish WDS link only if it supports all basic rates of the other AP.
- Capsman
Rates stringId - Comment string
- Ht
Basic []stringMcs - Modulation and Coding Schemes that every connecting client must support. Refer to 802.11n for MCS specification.
- Ht
Supported []stringMcs - Modulation and Coding Schemes that this device advertises as supported. Refer to 802.11n for MCS specification.
- Name string
- Supporteds []string
- List of supported rates. Two devices will communicate only using rates that are supported by both devices.
- Vht
Basic stringMcs - Modulation and Coding Schemes that every connecting client must support. Refer to 802.11ac for MCS specification. You can set MCS interval for each of Spatial Stream * none - will not use selected * MCS 0-7 - client must support MCS-0 to MCS-7 * MCS 0-8 - client must support MCS-0 to MCS-8 * MCS 0-9 - client must support MCS-0 to MCS-9
- Vht
Supported stringMcs - Modulation and Coding Schemes that this device advertises as supported. Refer to 802.11ac for MCS specification. You can set MCS interval for each of Spatial Stream * none - will not use selected * MCS 0-7 - devices will advertise as supported MCS-0 to MCS-7 * MCS 0-8 - devices will advertise as supported MCS-0 to MCS-8 * MCS 0-9 - devices will advertise as supported MCS-0 to MCS-9
- ___
id_ float64 - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ string - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- ___
id_ Double - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ String - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- basics List<String>
- List of basic rates. Client will connect to AP only if it supports all basic rates announced by the AP. AP will establish WDS link only if it supports all basic rates of the other AP.
- capsman
Rates StringId - comment String
- ht
Basic List<String>Mcs - Modulation and Coding Schemes that every connecting client must support. Refer to 802.11n for MCS specification.
- ht
Supported List<String>Mcs - Modulation and Coding Schemes that this device advertises as supported. Refer to 802.11n for MCS specification.
- name String
- supporteds List<String>
- List of supported rates. Two devices will communicate only using rates that are supported by both devices.
- vht
Basic StringMcs - Modulation and Coding Schemes that every connecting client must support. Refer to 802.11ac for MCS specification. You can set MCS interval for each of Spatial Stream * none - will not use selected * MCS 0-7 - client must support MCS-0 to MCS-7 * MCS 0-8 - client must support MCS-0 to MCS-8 * MCS 0-9 - client must support MCS-0 to MCS-9
- vht
Supported StringMcs - Modulation and Coding Schemes that this device advertises as supported. Refer to 802.11ac for MCS specification. You can set MCS interval for each of Spatial Stream * none - will not use selected * MCS 0-7 - devices will advertise as supported MCS-0 to MCS-7 * MCS 0-8 - devices will advertise as supported MCS-0 to MCS-8 * MCS 0-9 - devices will advertise as supported MCS-0 to MCS-9
- ___
id_ number - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ string - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- basics string[]
- List of basic rates. Client will connect to AP only if it supports all basic rates announced by the AP. AP will establish WDS link only if it supports all basic rates of the other AP.
- capsman
Rates stringId - comment string
- ht
Basic string[]Mcs - Modulation and Coding Schemes that every connecting client must support. Refer to 802.11n for MCS specification.
- ht
Supported string[]Mcs - Modulation and Coding Schemes that this device advertises as supported. Refer to 802.11n for MCS specification.
- name string
- supporteds string[]
- List of supported rates. Two devices will communicate only using rates that are supported by both devices.
- vht
Basic stringMcs - Modulation and Coding Schemes that every connecting client must support. Refer to 802.11ac for MCS specification. You can set MCS interval for each of Spatial Stream * none - will not use selected * MCS 0-7 - client must support MCS-0 to MCS-7 * MCS 0-8 - client must support MCS-0 to MCS-8 * MCS 0-9 - client must support MCS-0 to MCS-9
- vht
Supported stringMcs - Modulation and Coding Schemes that this device advertises as supported. Refer to 802.11ac for MCS specification. You can set MCS interval for each of Spatial Stream * none - will not use selected * MCS 0-7 - devices will advertise as supported MCS-0 to MCS-7 * MCS 0-8 - devices will advertise as supported MCS-0 to MCS-8 * MCS 0-9 - devices will advertise as supported MCS-0 to MCS-9
- ___
id_ float - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ str - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- basics Sequence[str]
- List of basic rates. Client will connect to AP only if it supports all basic rates announced by the AP. AP will establish WDS link only if it supports all basic rates of the other AP.
- capsman_
rates_ strid - comment str
- ht_
basic_ Sequence[str]mcs - Modulation and Coding Schemes that every connecting client must support. Refer to 802.11n for MCS specification.
- ht_
supported_ Sequence[str]mcs - Modulation and Coding Schemes that this device advertises as supported. Refer to 802.11n for MCS specification.
- name str
- supporteds Sequence[str]
- List of supported rates. Two devices will communicate only using rates that are supported by both devices.
- vht_
basic_ strmcs - Modulation and Coding Schemes that every connecting client must support. Refer to 802.11ac for MCS specification. You can set MCS interval for each of Spatial Stream * none - will not use selected * MCS 0-7 - client must support MCS-0 to MCS-7 * MCS 0-8 - client must support MCS-0 to MCS-8 * MCS 0-9 - client must support MCS-0 to MCS-9
- vht_
supported_ strmcs - Modulation and Coding Schemes that this device advertises as supported. Refer to 802.11ac for MCS specification. You can set MCS interval for each of Spatial Stream * none - will not use selected * MCS 0-7 - devices will advertise as supported MCS-0 to MCS-7 * MCS 0-8 - devices will advertise as supported MCS-0 to MCS-8 * MCS 0-9 - devices will advertise as supported MCS-0 to MCS-9
- ___
id_ Number - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ String - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- basics List<String>
- List of basic rates. Client will connect to AP only if it supports all basic rates announced by the AP. AP will establish WDS link only if it supports all basic rates of the other AP.
- capsman
Rates StringId - comment String
- ht
Basic List<String>Mcs - Modulation and Coding Schemes that every connecting client must support. Refer to 802.11n for MCS specification.
- ht
Supported List<String>Mcs - Modulation and Coding Schemes that this device advertises as supported. Refer to 802.11n for MCS specification.
- name String
- supporteds List<String>
- List of supported rates. Two devices will communicate only using rates that are supported by both devices.
- vht
Basic StringMcs - Modulation and Coding Schemes that every connecting client must support. Refer to 802.11ac for MCS specification. You can set MCS interval for each of Spatial Stream * none - will not use selected * MCS 0-7 - client must support MCS-0 to MCS-7 * MCS 0-8 - client must support MCS-0 to MCS-8 * MCS 0-9 - client must support MCS-0 to MCS-9
- vht
Supported StringMcs - Modulation and Coding Schemes that this device advertises as supported. Refer to 802.11ac for MCS specification. You can set MCS interval for each of Spatial Stream * none - will not use selected * MCS 0-7 - devices will advertise as supported MCS-0 to MCS-7 * MCS 0-8 - devices will advertise as supported MCS-0 to MCS-8 * MCS 0-9 - devices will advertise as supported MCS-0 to MCS-9
Outputs
All input properties are implicitly available as output properties. Additionally, the CapsmanRates 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 CapsmanRates Resource
Get an existing CapsmanRates 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?: CapsmanRatesState, opts?: CustomResourceOptions): CapsmanRates
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
___id_: Optional[float] = None,
___path_: Optional[str] = None,
basics: Optional[Sequence[str]] = None,
capsman_rates_id: Optional[str] = None,
comment: Optional[str] = None,
ht_basic_mcs: Optional[Sequence[str]] = None,
ht_supported_mcs: Optional[Sequence[str]] = None,
name: Optional[str] = None,
supporteds: Optional[Sequence[str]] = None,
vht_basic_mcs: Optional[str] = None,
vht_supported_mcs: Optional[str] = None) -> CapsmanRates
func GetCapsmanRates(ctx *Context, name string, id IDInput, state *CapsmanRatesState, opts ...ResourceOption) (*CapsmanRates, error)
public static CapsmanRates Get(string name, Input<string> id, CapsmanRatesState? state, CustomResourceOptions? opts = null)
public static CapsmanRates get(String name, Output<String> id, CapsmanRatesState state, CustomResourceOptions options)
resources: _: type: routeros:CapsmanRates get: id: ${id}
- 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.
- Basics List<string>
- List of basic rates. Client will connect to AP only if it supports all basic rates announced by the AP. AP will establish WDS link only if it supports all basic rates of the other AP.
- Capsman
Rates stringId - Comment string
- Ht
Basic List<string>Mcs - Modulation and Coding Schemes that every connecting client must support. Refer to 802.11n for MCS specification.
- Ht
Supported List<string>Mcs - Modulation and Coding Schemes that this device advertises as supported. Refer to 802.11n for MCS specification.
- Name string
- Supporteds List<string>
- List of supported rates. Two devices will communicate only using rates that are supported by both devices.
- Vht
Basic stringMcs - Modulation and Coding Schemes that every connecting client must support. Refer to 802.11ac for MCS specification. You can set MCS interval for each of Spatial Stream * none - will not use selected * MCS 0-7 - client must support MCS-0 to MCS-7 * MCS 0-8 - client must support MCS-0 to MCS-8 * MCS 0-9 - client must support MCS-0 to MCS-9
- Vht
Supported stringMcs - Modulation and Coding Schemes that this device advertises as supported. Refer to 802.11ac for MCS specification. You can set MCS interval for each of Spatial Stream * none - will not use selected * MCS 0-7 - devices will advertise as supported MCS-0 to MCS-7 * MCS 0-8 - devices will advertise as supported MCS-0 to MCS-8 * MCS 0-9 - devices will advertise as supported MCS-0 to MCS-9
- ___
id_ double - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ string - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- Basics []string
- List of basic rates. Client will connect to AP only if it supports all basic rates announced by the AP. AP will establish WDS link only if it supports all basic rates of the other AP.
- Capsman
Rates stringId - Comment string
- Ht
Basic []stringMcs - Modulation and Coding Schemes that every connecting client must support. Refer to 802.11n for MCS specification.
- Ht
Supported []stringMcs - Modulation and Coding Schemes that this device advertises as supported. Refer to 802.11n for MCS specification.
- Name string
- Supporteds []string
- List of supported rates. Two devices will communicate only using rates that are supported by both devices.
- Vht
Basic stringMcs - Modulation and Coding Schemes that every connecting client must support. Refer to 802.11ac for MCS specification. You can set MCS interval for each of Spatial Stream * none - will not use selected * MCS 0-7 - client must support MCS-0 to MCS-7 * MCS 0-8 - client must support MCS-0 to MCS-8 * MCS 0-9 - client must support MCS-0 to MCS-9
- Vht
Supported stringMcs - Modulation and Coding Schemes that this device advertises as supported. Refer to 802.11ac for MCS specification. You can set MCS interval for each of Spatial Stream * none - will not use selected * MCS 0-7 - devices will advertise as supported MCS-0 to MCS-7 * MCS 0-8 - devices will advertise as supported MCS-0 to MCS-8 * MCS 0-9 - devices will advertise as supported MCS-0 to MCS-9
- ___
id_ float64 - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ string - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- ___
id_ Double - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ String - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- basics List<String>
- List of basic rates. Client will connect to AP only if it supports all basic rates announced by the AP. AP will establish WDS link only if it supports all basic rates of the other AP.
- capsman
Rates StringId - comment String
- ht
Basic List<String>Mcs - Modulation and Coding Schemes that every connecting client must support. Refer to 802.11n for MCS specification.
- ht
Supported List<String>Mcs - Modulation and Coding Schemes that this device advertises as supported. Refer to 802.11n for MCS specification.
- name String
- supporteds List<String>
- List of supported rates. Two devices will communicate only using rates that are supported by both devices.
- vht
Basic StringMcs - Modulation and Coding Schemes that every connecting client must support. Refer to 802.11ac for MCS specification. You can set MCS interval for each of Spatial Stream * none - will not use selected * MCS 0-7 - client must support MCS-0 to MCS-7 * MCS 0-8 - client must support MCS-0 to MCS-8 * MCS 0-9 - client must support MCS-0 to MCS-9
- vht
Supported StringMcs - Modulation and Coding Schemes that this device advertises as supported. Refer to 802.11ac for MCS specification. You can set MCS interval for each of Spatial Stream * none - will not use selected * MCS 0-7 - devices will advertise as supported MCS-0 to MCS-7 * MCS 0-8 - devices will advertise as supported MCS-0 to MCS-8 * MCS 0-9 - devices will advertise as supported MCS-0 to MCS-9
- ___
id_ number - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ string - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- basics string[]
- List of basic rates. Client will connect to AP only if it supports all basic rates announced by the AP. AP will establish WDS link only if it supports all basic rates of the other AP.
- capsman
Rates stringId - comment string
- ht
Basic string[]Mcs - Modulation and Coding Schemes that every connecting client must support. Refer to 802.11n for MCS specification.
- ht
Supported string[]Mcs - Modulation and Coding Schemes that this device advertises as supported. Refer to 802.11n for MCS specification.
- name string
- supporteds string[]
- List of supported rates. Two devices will communicate only using rates that are supported by both devices.
- vht
Basic stringMcs - Modulation and Coding Schemes that every connecting client must support. Refer to 802.11ac for MCS specification. You can set MCS interval for each of Spatial Stream * none - will not use selected * MCS 0-7 - client must support MCS-0 to MCS-7 * MCS 0-8 - client must support MCS-0 to MCS-8 * MCS 0-9 - client must support MCS-0 to MCS-9
- vht
Supported stringMcs - Modulation and Coding Schemes that this device advertises as supported. Refer to 802.11ac for MCS specification. You can set MCS interval for each of Spatial Stream * none - will not use selected * MCS 0-7 - devices will advertise as supported MCS-0 to MCS-7 * MCS 0-8 - devices will advertise as supported MCS-0 to MCS-8 * MCS 0-9 - devices will advertise as supported MCS-0 to MCS-9
- ___
id_ float - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ str - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- basics Sequence[str]
- List of basic rates. Client will connect to AP only if it supports all basic rates announced by the AP. AP will establish WDS link only if it supports all basic rates of the other AP.
- capsman_
rates_ strid - comment str
- ht_
basic_ Sequence[str]mcs - Modulation and Coding Schemes that every connecting client must support. Refer to 802.11n for MCS specification.
- ht_
supported_ Sequence[str]mcs - Modulation and Coding Schemes that this device advertises as supported. Refer to 802.11n for MCS specification.
- name str
- supporteds Sequence[str]
- List of supported rates. Two devices will communicate only using rates that are supported by both devices.
- vht_
basic_ strmcs - Modulation and Coding Schemes that every connecting client must support. Refer to 802.11ac for MCS specification. You can set MCS interval for each of Spatial Stream * none - will not use selected * MCS 0-7 - client must support MCS-0 to MCS-7 * MCS 0-8 - client must support MCS-0 to MCS-8 * MCS 0-9 - client must support MCS-0 to MCS-9
- vht_
supported_ strmcs - Modulation and Coding Schemes that this device advertises as supported. Refer to 802.11ac for MCS specification. You can set MCS interval for each of Spatial Stream * none - will not use selected * MCS 0-7 - devices will advertise as supported MCS-0 to MCS-7 * MCS 0-8 - devices will advertise as supported MCS-0 to MCS-8 * MCS 0-9 - devices will advertise as supported MCS-0 to MCS-9
- ___
id_ Number - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ String - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- basics List<String>
- List of basic rates. Client will connect to AP only if it supports all basic rates announced by the AP. AP will establish WDS link only if it supports all basic rates of the other AP.
- capsman
Rates StringId - comment String
- ht
Basic List<String>Mcs - Modulation and Coding Schemes that every connecting client must support. Refer to 802.11n for MCS specification.
- ht
Supported List<String>Mcs - Modulation and Coding Schemes that this device advertises as supported. Refer to 802.11n for MCS specification.
- name String
- supporteds List<String>
- List of supported rates. Two devices will communicate only using rates that are supported by both devices.
- vht
Basic StringMcs - Modulation and Coding Schemes that every connecting client must support. Refer to 802.11ac for MCS specification. You can set MCS interval for each of Spatial Stream * none - will not use selected * MCS 0-7 - client must support MCS-0 to MCS-7 * MCS 0-8 - client must support MCS-0 to MCS-8 * MCS 0-9 - client must support MCS-0 to MCS-9
- vht
Supported StringMcs - Modulation and Coding Schemes that this device advertises as supported. Refer to 802.11ac for MCS specification. You can set MCS interval for each of Spatial Stream * none - will not use selected * MCS 0-7 - devices will advertise as supported MCS-0 to MCS-7 * MCS 0-8 - devices will advertise as supported MCS-0 to MCS-8 * MCS 0-9 - devices will advertise as supported MCS-0 to MCS-9
Import
#The ID can be found via API or the terminal
#The command for the terminal is -> :put [/caps-man/rates get [print show-ids]]
$ pulumi import routeros:index/capsmanRates:CapsmanRates test_rates "*1"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- routeros terraform-routeros/terraform-provider-routeros
- License
- Notes
- This Pulumi package is based on the
routeros
Terraform Provider.