Use the zia_bandwidth_classes_web_conferencing resource allows the creation and management of ZIA web conferencing bandwidth classes in the Zscaler Internet Access cloud or via the API.
Example Usage
BANDWIDTH_CAT_WEBCONF
resource "zia_bandwidth_classes_web_conferencing" "this" {
name = "BANDWIDTH_CAT_WEBCONF"
type = "BANDWIDTH_CAT_WEBCONF"
applications = ["WEBEX", "GOTOMEETING", "LIVEMEETING", "INTERCALL", "CONNECT"]
}
BANDWIDTH_CAT_VOIP
resource "zia_bandwidth_classes_web_conferencing" "this" {
name = "BANDWIDTH_CAT_VOIP"
type = "BANDWIDTH_CAT_VOIP"
applications = ["SKYPE"]
}
Create BandwidthControlClassesWebConferencing Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BandwidthControlClassesWebConferencing(name: string, args?: BandwidthControlClassesWebConferencingArgs, opts?: CustomResourceOptions);@overload
def BandwidthControlClassesWebConferencing(resource_name: str,
args: Optional[BandwidthControlClassesWebConferencingArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def BandwidthControlClassesWebConferencing(resource_name: str,
opts: Optional[ResourceOptions] = None,
applications: Optional[Sequence[str]] = None,
name: Optional[str] = None,
type: Optional[str] = None)func NewBandwidthControlClassesWebConferencing(ctx *Context, name string, args *BandwidthControlClassesWebConferencingArgs, opts ...ResourceOption) (*BandwidthControlClassesWebConferencing, error)public BandwidthControlClassesWebConferencing(string name, BandwidthControlClassesWebConferencingArgs? args = null, CustomResourceOptions? opts = null)
public BandwidthControlClassesWebConferencing(String name, BandwidthControlClassesWebConferencingArgs args)
public BandwidthControlClassesWebConferencing(String name, BandwidthControlClassesWebConferencingArgs args, CustomResourceOptions options)
type: zia:BandwidthControlClassesWebConferencing
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 BandwidthControlClassesWebConferencingArgs
- 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 BandwidthControlClassesWebConferencingArgs
- 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 BandwidthControlClassesWebConferencingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BandwidthControlClassesWebConferencingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BandwidthControlClassesWebConferencingArgs
- 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 bandwidthControlClassesWebConferencingResource = new Zia.BandwidthControlClassesWebConferencing("bandwidthControlClassesWebConferencingResource", new()
{
Applications = new[]
{
"string",
},
Name = "string",
Type = "string",
});
example, err := zia.NewBandwidthControlClassesWebConferencing(ctx, "bandwidthControlClassesWebConferencingResource", &zia.BandwidthControlClassesWebConferencingArgs{
Applications: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
Type: pulumi.String("string"),
})
var bandwidthControlClassesWebConferencingResource = new BandwidthControlClassesWebConferencing("bandwidthControlClassesWebConferencingResource", BandwidthControlClassesWebConferencingArgs.builder()
.applications("string")
.name("string")
.type("string")
.build());
bandwidth_control_classes_web_conferencing_resource = zia.BandwidthControlClassesWebConferencing("bandwidthControlClassesWebConferencingResource",
applications=["string"],
name="string",
type="string")
const bandwidthControlClassesWebConferencingResource = new zia.BandwidthControlClassesWebConferencing("bandwidthControlClassesWebConferencingResource", {
applications: ["string"],
name: "string",
type: "string",
});
type: zia:BandwidthControlClassesWebConferencing
properties:
applications:
- string
name: string
type: string
BandwidthControlClassesWebConferencing 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 BandwidthControlClassesWebConferencing resource accepts the following input properties:
- Applications List<string>
- (List of strings) The applications included in the bandwidth class
- Name string
- The bandwidth class name.
- Type string
- (String) The application type for which the bandwidth class is configured. Supported values:
BANDWIDTH_CAT_WEBCONForBANDWIDTH_CAT_VOIP
- Applications []string
- (List of strings) The applications included in the bandwidth class
- Name string
- The bandwidth class name.
- Type string
- (String) The application type for which the bandwidth class is configured. Supported values:
BANDWIDTH_CAT_WEBCONForBANDWIDTH_CAT_VOIP
- applications List<String>
- (List of strings) The applications included in the bandwidth class
- name String
- The bandwidth class name.
- type String
- (String) The application type for which the bandwidth class is configured. Supported values:
BANDWIDTH_CAT_WEBCONForBANDWIDTH_CAT_VOIP
- applications string[]
- (List of strings) The applications included in the bandwidth class
- name string
- The bandwidth class name.
- type string
- (String) The application type for which the bandwidth class is configured. Supported values:
BANDWIDTH_CAT_WEBCONForBANDWIDTH_CAT_VOIP
- applications Sequence[str]
- (List of strings) The applications included in the bandwidth class
- name str
- The bandwidth class name.
- type str
- (String) The application type for which the bandwidth class is configured. Supported values:
BANDWIDTH_CAT_WEBCONForBANDWIDTH_CAT_VOIP
- applications List<String>
- (List of strings) The applications included in the bandwidth class
- name String
- The bandwidth class name.
- type String
- (String) The application type for which the bandwidth class is configured. Supported values:
BANDWIDTH_CAT_WEBCONForBANDWIDTH_CAT_VOIP
Outputs
All input properties are implicitly available as output properties. Additionally, the BandwidthControlClassesWebConferencing resource produces the following output properties:
Look up Existing BandwidthControlClassesWebConferencing Resource
Get an existing BandwidthControlClassesWebConferencing 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?: BandwidthControlClassesWebConferencingState, opts?: CustomResourceOptions): BandwidthControlClassesWebConferencing@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
applications: Optional[Sequence[str]] = None,
class_id: Optional[int] = None,
name: Optional[str] = None,
type: Optional[str] = None) -> BandwidthControlClassesWebConferencingfunc GetBandwidthControlClassesWebConferencing(ctx *Context, name string, id IDInput, state *BandwidthControlClassesWebConferencingState, opts ...ResourceOption) (*BandwidthControlClassesWebConferencing, error)public static BandwidthControlClassesWebConferencing Get(string name, Input<string> id, BandwidthControlClassesWebConferencingState? state, CustomResourceOptions? opts = null)public static BandwidthControlClassesWebConferencing get(String name, Output<String> id, BandwidthControlClassesWebConferencingState state, CustomResourceOptions options)resources: _: type: zia:BandwidthControlClassesWebConferencing 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.
- Applications List<string>
- (List of strings) The applications included in the bandwidth class
- Class
Id int - Name string
- The bandwidth class name.
- Type string
- (String) The application type for which the bandwidth class is configured. Supported values:
BANDWIDTH_CAT_WEBCONForBANDWIDTH_CAT_VOIP
- Applications []string
- (List of strings) The applications included in the bandwidth class
- Class
Id int - Name string
- The bandwidth class name.
- Type string
- (String) The application type for which the bandwidth class is configured. Supported values:
BANDWIDTH_CAT_WEBCONForBANDWIDTH_CAT_VOIP
- applications List<String>
- (List of strings) The applications included in the bandwidth class
- class
Id Integer - name String
- The bandwidth class name.
- type String
- (String) The application type for which the bandwidth class is configured. Supported values:
BANDWIDTH_CAT_WEBCONForBANDWIDTH_CAT_VOIP
- applications string[]
- (List of strings) The applications included in the bandwidth class
- class
Id number - name string
- The bandwidth class name.
- type string
- (String) The application type for which the bandwidth class is configured. Supported values:
BANDWIDTH_CAT_WEBCONForBANDWIDTH_CAT_VOIP
- applications Sequence[str]
- (List of strings) The applications included in the bandwidth class
- class_
id int - name str
- The bandwidth class name.
- type str
- (String) The application type for which the bandwidth class is configured. Supported values:
BANDWIDTH_CAT_WEBCONForBANDWIDTH_CAT_VOIP
- applications List<String>
- (List of strings) The applications included in the bandwidth class
- class
Id Number - name String
- The bandwidth class name.
- type String
- (String) The application type for which the bandwidth class is configured. Supported values:
BANDWIDTH_CAT_WEBCONForBANDWIDTH_CAT_VOIP
Import
Zscaler offers a dedicated tool called Zscaler-Terraformer to allow the automated import of ZIA configurations into Terraform-compliant HashiCorp Configuration Language. Visit
zia_bandwidth_classes_web_conferencing can be imported by using <CLASS_ID> or <CLASS_NAME> as the import ID.
For example:
$ pulumi import zia:index/bandwidthControlClassesWebConferencing:BandwidthControlClassesWebConferencing this <class_id>
$ pulumi import zia:index/bandwidthControlClassesWebConferencing:BandwidthControlClassesWebConferencing this <"class_name">
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- zia zscaler/pulumi-zia
- License
- MIT
- Notes
- This Pulumi package is based on the
ziaTerraform Provider.
