network¶
This provider is a derived work of the Terraform Provider distributed under MPL 2.0. If you encounter a bug or missing feature, first check the pulumi/pulumi-okta repo; however, if that doesn’t turn up anything, please consult the source terraform-providers/terraform-provider-okta repo.
- class
pulumi_okta.network.Zone(resource_name, opts=None, dynamic_locations=None, gateways=None, name=None, proxies=None, type=None, __props__=None, __name__=None, __opts__=None)¶ Creates an Okta Network Zone.
This resource allows you to create and configure an Okta Network Zone.
import pulumi import pulumi_okta as okta example = okta.network.Zone("example", gateways=[ "1.2.3.4/24", "2.3.4.5-2.3.4.15", ], proxies=[ "2.2.3.4/24", "3.3.4.5-3.3.4.15", ], type="IP")
- Parameters
resource_name (str) – The name of the resource.
opts (pulumi.ResourceOptions) – Options for the resource.
dynamic_locations (pulumi.Input[list]) – Array of locations ISO-3166-1(2). Format code: countryCode OR countryCode-regionCode.
gateways (pulumi.Input[list]) – Array of values in CIDR/range form.
name (pulumi.Input[str]) – Name of the Network Zone Resource.
proxies (pulumi.Input[list]) – Array of values in CIDR/range form.
type (pulumi.Input[str]) – Type of the Network Zone - can either be IP or DYNAMIC only.
dynamic_locations: pulumi.Output[list] = None¶Array of locations ISO-3166-1(2). Format code: countryCode OR countryCode-regionCode.
gateways: pulumi.Output[list] = None¶Array of values in CIDR/range form.
name: pulumi.Output[str] = None¶Name of the Network Zone Resource.
proxies: pulumi.Output[list] = None¶Array of values in CIDR/range form.
type: pulumi.Output[str] = None¶Type of the Network Zone - can either be IP or DYNAMIC only.
- static
get(resource_name, id, opts=None, dynamic_locations=None, gateways=None, name=None, proxies=None, type=None)¶ Get an existing Zone resource’s state with the given name, id, and optional extra properties used to qualify the lookup.
- Parameters
resource_name (str) – The unique name of the resulting resource.
id (str) – The unique provider ID of the resource to lookup.
opts (pulumi.ResourceOptions) – Options for the resource.
dynamic_locations (pulumi.Input[list]) – Array of locations ISO-3166-1(2). Format code: countryCode OR countryCode-regionCode.
gateways (pulumi.Input[list]) – Array of values in CIDR/range form.
name (pulumi.Input[str]) – Name of the Network Zone Resource.
proxies (pulumi.Input[list]) – Array of values in CIDR/range form.
type (pulumi.Input[str]) – Type of the Network Zone - can either be IP or DYNAMIC only.
translate_output_property(prop)¶Provides subclasses of Resource an opportunity to translate names of output properties into a format of their choosing before writing those properties to the resource object.
- Parameters
prop (str) – A property name.
- Returns
A potentially transformed property name.
- Return type
str
translate_input_property(prop)¶Provides subclasses of Resource an opportunity to translate names of input properties into a format of their choosing before sending those properties to the Pulumi engine.
- Parameters
prop (str) – A property name.
- Returns
A potentially transformed property name.
- Return type
str