1. Packages
  2. Juniper Mist Provider
  3. API Docs
  4. org
  5. Service
Juniper Mist v0.3.0 published on Wednesday, Apr 9, 2025 by Pulumi

junipermist.org.Service

Explore with Pulumi AI

This resource manages WAN Assurance Services (Applications).

A Service is used to define a Custom Application that can be used in the service_policies. These Services can be referenced by their name in

  • the Service Policies (mist_org_servicepolicy.services)
  • the Gateway configuration (mist_device_gateway.service_policies.services)
  • the Gateway Templates (mist_org_gatewaytemplate.service_policies.services)
  • the HUB Profiles (mist_org_deviceprofile_gateway.service_policies.services)

Example Usage

Coming soon!
Coming soon!
Coming soon!
Coming soon!
Coming soon!
resources:
  serviceOne:
    type: junipermist:org:Service
    name: service_one
    properties:
      orgId: ${terraformTest.id}
      name: service_one
      addresses:
        - 10.3.0.0/24
        - 10.4.0.0/24
      type: custom
      specs:
        - protocol: tcp
          port_range: '443'
Copy

Create Service Resource

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

Constructor syntax

new Service(name: string, args: ServiceArgs, opts?: CustomResourceOptions);
@overload
def Service(resource_name: str,
            args: ServiceArgs,
            opts: Optional[ResourceOptions] = None)

@overload
def Service(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            org_id: Optional[str] = None,
            max_loss: Optional[str] = None,
            urls: Optional[Sequence[str]] = None,
            max_latency: Optional[str] = None,
            client_limit_down: Optional[int] = None,
            client_limit_up: Optional[int] = None,
            description: Optional[str] = None,
            dscp: Optional[str] = None,
            failover_policy: Optional[str] = None,
            hostnames: Optional[Sequence[str]] = None,
            name: Optional[str] = None,
            apps: Optional[Sequence[str]] = None,
            app_subcategories: Optional[Sequence[str]] = None,
            max_jitter: Optional[str] = None,
            app_categories: Optional[Sequence[str]] = None,
            service_limit_down: Optional[int] = None,
            service_limit_up: Optional[int] = None,
            sle_enabled: Optional[bool] = None,
            specs: Optional[Sequence[ServiceSpecArgs]] = None,
            ssr_relaxed_tcp_state_enforcement: Optional[bool] = None,
            traffic_class: Optional[str] = None,
            traffic_type: Optional[str] = None,
            type: Optional[str] = None,
            addresses: Optional[Sequence[str]] = None)
func NewService(ctx *Context, name string, args ServiceArgs, opts ...ResourceOption) (*Service, error)
public Service(string name, ServiceArgs args, CustomResourceOptions? opts = null)
public Service(String name, ServiceArgs args)
public Service(String name, ServiceArgs args, CustomResourceOptions options)
type: junipermist:org:Service
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ServiceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ServiceArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ServiceArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ServiceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ServiceArgs
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 serviceResource = new JuniperMist.Org.Service("serviceResource", new()
{
    OrgId = "string",
    MaxLoss = "string",
    Urls = new[]
    {
        "string",
    },
    MaxLatency = "string",
    ClientLimitDown = 0,
    ClientLimitUp = 0,
    Description = "string",
    Dscp = "string",
    FailoverPolicy = "string",
    Hostnames = new[]
    {
        "string",
    },
    Name = "string",
    Apps = new[]
    {
        "string",
    },
    AppSubcategories = new[]
    {
        "string",
    },
    MaxJitter = "string",
    AppCategories = new[]
    {
        "string",
    },
    ServiceLimitDown = 0,
    ServiceLimitUp = 0,
    SleEnabled = false,
    Specs = new[]
    {
        new JuniperMist.Org.Inputs.ServiceSpecArgs
        {
            PortRange = "string",
            Protocol = "string",
        },
    },
    SsrRelaxedTcpStateEnforcement = false,
    TrafficClass = "string",
    TrafficType = "string",
    Type = "string",
    Addresses = new[]
    {
        "string",
    },
});
Copy
example, err := org.NewService(ctx, "serviceResource", &org.ServiceArgs{
	OrgId:   pulumi.String("string"),
	MaxLoss: pulumi.String("string"),
	Urls: pulumi.StringArray{
		pulumi.String("string"),
	},
	MaxLatency:      pulumi.String("string"),
	ClientLimitDown: pulumi.Int(0),
	ClientLimitUp:   pulumi.Int(0),
	Description:     pulumi.String("string"),
	Dscp:            pulumi.String("string"),
	FailoverPolicy:  pulumi.String("string"),
	Hostnames: pulumi.StringArray{
		pulumi.String("string"),
	},
	Name: pulumi.String("string"),
	Apps: pulumi.StringArray{
		pulumi.String("string"),
	},
	AppSubcategories: pulumi.StringArray{
		pulumi.String("string"),
	},
	MaxJitter: pulumi.String("string"),
	AppCategories: pulumi.StringArray{
		pulumi.String("string"),
	},
	ServiceLimitDown: pulumi.Int(0),
	ServiceLimitUp:   pulumi.Int(0),
	SleEnabled:       pulumi.Bool(false),
	Specs: org.ServiceSpecArray{
		&org.ServiceSpecArgs{
			PortRange: pulumi.String("string"),
			Protocol:  pulumi.String("string"),
		},
	},
	SsrRelaxedTcpStateEnforcement: pulumi.Bool(false),
	TrafficClass:                  pulumi.String("string"),
	TrafficType:                   pulumi.String("string"),
	Type:                          pulumi.String("string"),
	Addresses: pulumi.StringArray{
		pulumi.String("string"),
	},
})
Copy
var serviceResource = new Service("serviceResource", ServiceArgs.builder()
    .orgId("string")
    .maxLoss("string")
    .urls("string")
    .maxLatency("string")
    .clientLimitDown(0)
    .clientLimitUp(0)
    .description("string")
    .dscp("string")
    .failoverPolicy("string")
    .hostnames("string")
    .name("string")
    .apps("string")
    .appSubcategories("string")
    .maxJitter("string")
    .appCategories("string")
    .serviceLimitDown(0)
    .serviceLimitUp(0)
    .sleEnabled(false)
    .specs(ServiceSpecArgs.builder()
        .portRange("string")
        .protocol("string")
        .build())
    .ssrRelaxedTcpStateEnforcement(false)
    .trafficClass("string")
    .trafficType("string")
    .type("string")
    .addresses("string")
    .build());
Copy
service_resource = junipermist.org.Service("serviceResource",
    org_id="string",
    max_loss="string",
    urls=["string"],
    max_latency="string",
    client_limit_down=0,
    client_limit_up=0,
    description="string",
    dscp="string",
    failover_policy="string",
    hostnames=["string"],
    name="string",
    apps=["string"],
    app_subcategories=["string"],
    max_jitter="string",
    app_categories=["string"],
    service_limit_down=0,
    service_limit_up=0,
    sle_enabled=False,
    specs=[{
        "port_range": "string",
        "protocol": "string",
    }],
    ssr_relaxed_tcp_state_enforcement=False,
    traffic_class="string",
    traffic_type="string",
    type="string",
    addresses=["string"])
Copy
const serviceResource = new junipermist.org.Service("serviceResource", {
    orgId: "string",
    maxLoss: "string",
    urls: ["string"],
    maxLatency: "string",
    clientLimitDown: 0,
    clientLimitUp: 0,
    description: "string",
    dscp: "string",
    failoverPolicy: "string",
    hostnames: ["string"],
    name: "string",
    apps: ["string"],
    appSubcategories: ["string"],
    maxJitter: "string",
    appCategories: ["string"],
    serviceLimitDown: 0,
    serviceLimitUp: 0,
    sleEnabled: false,
    specs: [{
        portRange: "string",
        protocol: "string",
    }],
    ssrRelaxedTcpStateEnforcement: false,
    trafficClass: "string",
    trafficType: "string",
    type: "string",
    addresses: ["string"],
});
Copy
type: junipermist:org:Service
properties:
    addresses:
        - string
    appCategories:
        - string
    appSubcategories:
        - string
    apps:
        - string
    clientLimitDown: 0
    clientLimitUp: 0
    description: string
    dscp: string
    failoverPolicy: string
    hostnames:
        - string
    maxJitter: string
    maxLatency: string
    maxLoss: string
    name: string
    orgId: string
    serviceLimitDown: 0
    serviceLimitUp: 0
    sleEnabled: false
    specs:
        - portRange: string
          protocol: string
    ssrRelaxedTcpStateEnforcement: false
    trafficClass: string
    trafficType: string
    type: string
    urls:
        - string
Copy

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

OrgId This property is required. string
Addresses List<string>
If type==custom, ip subnets (e.g. 10.0.0.0/8)
AppCategories List<string>
When type==app_categories, list of application categories are available through List App Category Definitions
AppSubcategories List<string>
When type==app_categories, list of application categories are available through List App Sub Category Definitions
Apps List<string>
When type==apps, list of applications are available through: * List Applications * List Gateway Applications * /insight/top_app_by-bytes?wired=true
ClientLimitDown int
0 means unlimited, value from 0 to 107374182
ClientLimitUp int
0 means unlimited, value from 0 to 107374182
Description string
Dscp string
FailoverPolicy string
enum: non_revertible, none, revertible
Hostnames List<string>
If type==custom, web filtering
MaxJitter string
MaxLatency string
MaxLoss string
Name string
ServiceLimitDown int
0 means unlimited, value from 0 to 107374182
ServiceLimitUp int
0 means unlimited, value from 0 to 107374182
SleEnabled bool
Whether to enable measure SLE
Specs List<Pulumi.JuniperMist.Org.Inputs.ServiceSpec>
When type==custom, optional, if it doesn't exist, http and https is assumed
SsrRelaxedTcpStateEnforcement bool
TrafficClass string
when traffic_type==custom. enum: best_effort, high, low, medium
TrafficType string
values from List Traffic Types
Type string
enum: app_categories, apps, custom, urls
Urls List<string>
When type==urls, no need for spec as URL can encode the ports being used
OrgId This property is required. string
Addresses []string
If type==custom, ip subnets (e.g. 10.0.0.0/8)
AppCategories []string
When type==app_categories, list of application categories are available through List App Category Definitions
AppSubcategories []string
When type==app_categories, list of application categories are available through List App Sub Category Definitions
Apps []string
When type==apps, list of applications are available through: * List Applications * List Gateway Applications * /insight/top_app_by-bytes?wired=true
ClientLimitDown int
0 means unlimited, value from 0 to 107374182
ClientLimitUp int
0 means unlimited, value from 0 to 107374182
Description string
Dscp string
FailoverPolicy string
enum: non_revertible, none, revertible
Hostnames []string
If type==custom, web filtering
MaxJitter string
MaxLatency string
MaxLoss string
Name string
ServiceLimitDown int
0 means unlimited, value from 0 to 107374182
ServiceLimitUp int
0 means unlimited, value from 0 to 107374182
SleEnabled bool
Whether to enable measure SLE
Specs []ServiceSpecArgs
When type==custom, optional, if it doesn't exist, http and https is assumed
SsrRelaxedTcpStateEnforcement bool
TrafficClass string
when traffic_type==custom. enum: best_effort, high, low, medium
TrafficType string
values from List Traffic Types
Type string
enum: app_categories, apps, custom, urls
Urls []string
When type==urls, no need for spec as URL can encode the ports being used
orgId This property is required. String
addresses List<String>
If type==custom, ip subnets (e.g. 10.0.0.0/8)
appCategories List<String>
When type==app_categories, list of application categories are available through List App Category Definitions
appSubcategories List<String>
When type==app_categories, list of application categories are available through List App Sub Category Definitions
apps List<String>
When type==apps, list of applications are available through: * List Applications * List Gateway Applications * /insight/top_app_by-bytes?wired=true
clientLimitDown Integer
0 means unlimited, value from 0 to 107374182
clientLimitUp Integer
0 means unlimited, value from 0 to 107374182
description String
dscp String
failoverPolicy String
enum: non_revertible, none, revertible
hostnames List<String>
If type==custom, web filtering
maxJitter String
maxLatency String
maxLoss String
name String
serviceLimitDown Integer
0 means unlimited, value from 0 to 107374182
serviceLimitUp Integer
0 means unlimited, value from 0 to 107374182
sleEnabled Boolean
Whether to enable measure SLE
specs List<ServiceSpec>
When type==custom, optional, if it doesn't exist, http and https is assumed
ssrRelaxedTcpStateEnforcement Boolean
trafficClass String
when traffic_type==custom. enum: best_effort, high, low, medium
trafficType String
values from List Traffic Types
type String
enum: app_categories, apps, custom, urls
urls List<String>
When type==urls, no need for spec as URL can encode the ports being used
orgId This property is required. string
addresses string[]
If type==custom, ip subnets (e.g. 10.0.0.0/8)
appCategories string[]
When type==app_categories, list of application categories are available through List App Category Definitions
appSubcategories string[]
When type==app_categories, list of application categories are available through List App Sub Category Definitions
apps string[]
When type==apps, list of applications are available through: * List Applications * List Gateway Applications * /insight/top_app_by-bytes?wired=true
clientLimitDown number
0 means unlimited, value from 0 to 107374182
clientLimitUp number
0 means unlimited, value from 0 to 107374182
description string
dscp string
failoverPolicy string
enum: non_revertible, none, revertible
hostnames string[]
If type==custom, web filtering
maxJitter string
maxLatency string
maxLoss string
name string
serviceLimitDown number
0 means unlimited, value from 0 to 107374182
serviceLimitUp number
0 means unlimited, value from 0 to 107374182
sleEnabled boolean
Whether to enable measure SLE
specs ServiceSpec[]
When type==custom, optional, if it doesn't exist, http and https is assumed
ssrRelaxedTcpStateEnforcement boolean
trafficClass string
when traffic_type==custom. enum: best_effort, high, low, medium
trafficType string
values from List Traffic Types
type string
enum: app_categories, apps, custom, urls
urls string[]
When type==urls, no need for spec as URL can encode the ports being used
org_id This property is required. str
addresses Sequence[str]
If type==custom, ip subnets (e.g. 10.0.0.0/8)
app_categories Sequence[str]
When type==app_categories, list of application categories are available through List App Category Definitions
app_subcategories Sequence[str]
When type==app_categories, list of application categories are available through List App Sub Category Definitions
apps Sequence[str]
When type==apps, list of applications are available through: * List Applications * List Gateway Applications * /insight/top_app_by-bytes?wired=true
client_limit_down int
0 means unlimited, value from 0 to 107374182
client_limit_up int
0 means unlimited, value from 0 to 107374182
description str
dscp str
failover_policy str
enum: non_revertible, none, revertible
hostnames Sequence[str]
If type==custom, web filtering
max_jitter str
max_latency str
max_loss str
name str
service_limit_down int
0 means unlimited, value from 0 to 107374182
service_limit_up int
0 means unlimited, value from 0 to 107374182
sle_enabled bool
Whether to enable measure SLE
specs Sequence[ServiceSpecArgs]
When type==custom, optional, if it doesn't exist, http and https is assumed
ssr_relaxed_tcp_state_enforcement bool
traffic_class str
when traffic_type==custom. enum: best_effort, high, low, medium
traffic_type str
values from List Traffic Types
type str
enum: app_categories, apps, custom, urls
urls Sequence[str]
When type==urls, no need for spec as URL can encode the ports being used
orgId This property is required. String
addresses List<String>
If type==custom, ip subnets (e.g. 10.0.0.0/8)
appCategories List<String>
When type==app_categories, list of application categories are available through List App Category Definitions
appSubcategories List<String>
When type==app_categories, list of application categories are available through List App Sub Category Definitions
apps List<String>
When type==apps, list of applications are available through: * List Applications * List Gateway Applications * /insight/top_app_by-bytes?wired=true
clientLimitDown Number
0 means unlimited, value from 0 to 107374182
clientLimitUp Number
0 means unlimited, value from 0 to 107374182
description String
dscp String
failoverPolicy String
enum: non_revertible, none, revertible
hostnames List<String>
If type==custom, web filtering
maxJitter String
maxLatency String
maxLoss String
name String
serviceLimitDown Number
0 means unlimited, value from 0 to 107374182
serviceLimitUp Number
0 means unlimited, value from 0 to 107374182
sleEnabled Boolean
Whether to enable measure SLE
specs List<Property Map>
When type==custom, optional, if it doesn't exist, http and https is assumed
ssrRelaxedTcpStateEnforcement Boolean
trafficClass String
when traffic_type==custom. enum: best_effort, high, low, medium
trafficType String
values from List Traffic Types
type String
enum: app_categories, apps, custom, urls
urls List<String>
When type==urls, no need for spec as URL can encode the ports being used

Outputs

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

Get an existing Service 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?: ServiceState, opts?: CustomResourceOptions): Service
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        addresses: Optional[Sequence[str]] = None,
        app_categories: Optional[Sequence[str]] = None,
        app_subcategories: Optional[Sequence[str]] = None,
        apps: Optional[Sequence[str]] = None,
        client_limit_down: Optional[int] = None,
        client_limit_up: Optional[int] = None,
        description: Optional[str] = None,
        dscp: Optional[str] = None,
        failover_policy: Optional[str] = None,
        hostnames: Optional[Sequence[str]] = None,
        max_jitter: Optional[str] = None,
        max_latency: Optional[str] = None,
        max_loss: Optional[str] = None,
        name: Optional[str] = None,
        org_id: Optional[str] = None,
        service_limit_down: Optional[int] = None,
        service_limit_up: Optional[int] = None,
        sle_enabled: Optional[bool] = None,
        specs: Optional[Sequence[ServiceSpecArgs]] = None,
        ssr_relaxed_tcp_state_enforcement: Optional[bool] = None,
        traffic_class: Optional[str] = None,
        traffic_type: Optional[str] = None,
        type: Optional[str] = None,
        urls: Optional[Sequence[str]] = None) -> Service
func GetService(ctx *Context, name string, id IDInput, state *ServiceState, opts ...ResourceOption) (*Service, error)
public static Service Get(string name, Input<string> id, ServiceState? state, CustomResourceOptions? opts = null)
public static Service get(String name, Output<String> id, ServiceState state, CustomResourceOptions options)
resources:  _:    type: junipermist:org:Service    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Addresses List<string>
If type==custom, ip subnets (e.g. 10.0.0.0/8)
AppCategories List<string>
When type==app_categories, list of application categories are available through List App Category Definitions
AppSubcategories List<string>
When type==app_categories, list of application categories are available through List App Sub Category Definitions
Apps List<string>
When type==apps, list of applications are available through: * List Applications * List Gateway Applications * /insight/top_app_by-bytes?wired=true
ClientLimitDown int
0 means unlimited, value from 0 to 107374182
ClientLimitUp int
0 means unlimited, value from 0 to 107374182
Description string
Dscp string
FailoverPolicy string
enum: non_revertible, none, revertible
Hostnames List<string>
If type==custom, web filtering
MaxJitter string
MaxLatency string
MaxLoss string
Name string
OrgId string
ServiceLimitDown int
0 means unlimited, value from 0 to 107374182
ServiceLimitUp int
0 means unlimited, value from 0 to 107374182
SleEnabled bool
Whether to enable measure SLE
Specs List<Pulumi.JuniperMist.Org.Inputs.ServiceSpec>
When type==custom, optional, if it doesn't exist, http and https is assumed
SsrRelaxedTcpStateEnforcement bool
TrafficClass string
when traffic_type==custom. enum: best_effort, high, low, medium
TrafficType string
values from List Traffic Types
Type string
enum: app_categories, apps, custom, urls
Urls List<string>
When type==urls, no need for spec as URL can encode the ports being used
Addresses []string
If type==custom, ip subnets (e.g. 10.0.0.0/8)
AppCategories []string
When type==app_categories, list of application categories are available through List App Category Definitions
AppSubcategories []string
When type==app_categories, list of application categories are available through List App Sub Category Definitions
Apps []string
When type==apps, list of applications are available through: * List Applications * List Gateway Applications * /insight/top_app_by-bytes?wired=true
ClientLimitDown int
0 means unlimited, value from 0 to 107374182
ClientLimitUp int
0 means unlimited, value from 0 to 107374182
Description string
Dscp string
FailoverPolicy string
enum: non_revertible, none, revertible
Hostnames []string
If type==custom, web filtering
MaxJitter string
MaxLatency string
MaxLoss string
Name string
OrgId string
ServiceLimitDown int
0 means unlimited, value from 0 to 107374182
ServiceLimitUp int
0 means unlimited, value from 0 to 107374182
SleEnabled bool
Whether to enable measure SLE
Specs []ServiceSpecArgs
When type==custom, optional, if it doesn't exist, http and https is assumed
SsrRelaxedTcpStateEnforcement bool
TrafficClass string
when traffic_type==custom. enum: best_effort, high, low, medium
TrafficType string
values from List Traffic Types
Type string
enum: app_categories, apps, custom, urls
Urls []string
When type==urls, no need for spec as URL can encode the ports being used
addresses List<String>
If type==custom, ip subnets (e.g. 10.0.0.0/8)
appCategories List<String>
When type==app_categories, list of application categories are available through List App Category Definitions
appSubcategories List<String>
When type==app_categories, list of application categories are available through List App Sub Category Definitions
apps List<String>
When type==apps, list of applications are available through: * List Applications * List Gateway Applications * /insight/top_app_by-bytes?wired=true
clientLimitDown Integer
0 means unlimited, value from 0 to 107374182
clientLimitUp Integer
0 means unlimited, value from 0 to 107374182
description String
dscp String
failoverPolicy String
enum: non_revertible, none, revertible
hostnames List<String>
If type==custom, web filtering
maxJitter String
maxLatency String
maxLoss String
name String
orgId String
serviceLimitDown Integer
0 means unlimited, value from 0 to 107374182
serviceLimitUp Integer
0 means unlimited, value from 0 to 107374182
sleEnabled Boolean
Whether to enable measure SLE
specs List<ServiceSpec>
When type==custom, optional, if it doesn't exist, http and https is assumed
ssrRelaxedTcpStateEnforcement Boolean
trafficClass String
when traffic_type==custom. enum: best_effort, high, low, medium
trafficType String
values from List Traffic Types
type String
enum: app_categories, apps, custom, urls
urls List<String>
When type==urls, no need for spec as URL can encode the ports being used
addresses string[]
If type==custom, ip subnets (e.g. 10.0.0.0/8)
appCategories string[]
When type==app_categories, list of application categories are available through List App Category Definitions
appSubcategories string[]
When type==app_categories, list of application categories are available through List App Sub Category Definitions
apps string[]
When type==apps, list of applications are available through: * List Applications * List Gateway Applications * /insight/top_app_by-bytes?wired=true
clientLimitDown number
0 means unlimited, value from 0 to 107374182
clientLimitUp number
0 means unlimited, value from 0 to 107374182
description string
dscp string
failoverPolicy string
enum: non_revertible, none, revertible
hostnames string[]
If type==custom, web filtering
maxJitter string
maxLatency string
maxLoss string
name string
orgId string
serviceLimitDown number
0 means unlimited, value from 0 to 107374182
serviceLimitUp number
0 means unlimited, value from 0 to 107374182
sleEnabled boolean
Whether to enable measure SLE
specs ServiceSpec[]
When type==custom, optional, if it doesn't exist, http and https is assumed
ssrRelaxedTcpStateEnforcement boolean
trafficClass string
when traffic_type==custom. enum: best_effort, high, low, medium
trafficType string
values from List Traffic Types
type string
enum: app_categories, apps, custom, urls
urls string[]
When type==urls, no need for spec as URL can encode the ports being used
addresses Sequence[str]
If type==custom, ip subnets (e.g. 10.0.0.0/8)
app_categories Sequence[str]
When type==app_categories, list of application categories are available through List App Category Definitions
app_subcategories Sequence[str]
When type==app_categories, list of application categories are available through List App Sub Category Definitions
apps Sequence[str]
When type==apps, list of applications are available through: * List Applications * List Gateway Applications * /insight/top_app_by-bytes?wired=true
client_limit_down int
0 means unlimited, value from 0 to 107374182
client_limit_up int
0 means unlimited, value from 0 to 107374182
description str
dscp str
failover_policy str
enum: non_revertible, none, revertible
hostnames Sequence[str]
If type==custom, web filtering
max_jitter str
max_latency str
max_loss str
name str
org_id str
service_limit_down int
0 means unlimited, value from 0 to 107374182
service_limit_up int
0 means unlimited, value from 0 to 107374182
sle_enabled bool
Whether to enable measure SLE
specs Sequence[ServiceSpecArgs]
When type==custom, optional, if it doesn't exist, http and https is assumed
ssr_relaxed_tcp_state_enforcement bool
traffic_class str
when traffic_type==custom. enum: best_effort, high, low, medium
traffic_type str
values from List Traffic Types
type str
enum: app_categories, apps, custom, urls
urls Sequence[str]
When type==urls, no need for spec as URL can encode the ports being used
addresses List<String>
If type==custom, ip subnets (e.g. 10.0.0.0/8)
appCategories List<String>
When type==app_categories, list of application categories are available through List App Category Definitions
appSubcategories List<String>
When type==app_categories, list of application categories are available through List App Sub Category Definitions
apps List<String>
When type==apps, list of applications are available through: * List Applications * List Gateway Applications * /insight/top_app_by-bytes?wired=true
clientLimitDown Number
0 means unlimited, value from 0 to 107374182
clientLimitUp Number
0 means unlimited, value from 0 to 107374182
description String
dscp String
failoverPolicy String
enum: non_revertible, none, revertible
hostnames List<String>
If type==custom, web filtering
maxJitter String
maxLatency String
maxLoss String
name String
orgId String
serviceLimitDown Number
0 means unlimited, value from 0 to 107374182
serviceLimitUp Number
0 means unlimited, value from 0 to 107374182
sleEnabled Boolean
Whether to enable measure SLE
specs List<Property Map>
When type==custom, optional, if it doesn't exist, http and https is assumed
ssrRelaxedTcpStateEnforcement Boolean
trafficClass String
when traffic_type==custom. enum: best_effort, high, low, medium
trafficType String
values from List Traffic Types
type String
enum: app_categories, apps, custom, urls
urls List<String>
When type==urls, no need for spec as URL can encode the ports being used

Supporting Types

ServiceSpec
, ServiceSpecArgs

PortRange string
Port number, port range, or variable
Protocol string
https/ tcp / udp / icmp / gre / any / :protocol_number, protocol_number is between 1-254
PortRange string
Port number, port range, or variable
Protocol string
https/ tcp / udp / icmp / gre / any / :protocol_number, protocol_number is between 1-254
portRange String
Port number, port range, or variable
protocol String
https/ tcp / udp / icmp / gre / any / :protocol_number, protocol_number is between 1-254
portRange string
Port number, port range, or variable
protocol string
https/ tcp / udp / icmp / gre / any / :protocol_number, protocol_number is between 1-254
port_range str
Port number, port range, or variable
protocol str
https/ tcp / udp / icmp / gre / any / :protocol_number, protocol_number is between 1-254
portRange String
Port number, port range, or variable
protocol String
https/ tcp / udp / icmp / gre / any / :protocol_number, protocol_number is between 1-254

Import

Using pulumi import, import mist_org_service with:

Org Service can be imported by specifying the org_id and the service_id

$ pulumi import junipermist:org/service:Service service_one 17b46405-3a6d-4715-8bb4-6bb6d06f316a.d3c42998-9012-4859-9743-6b9bee475309
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
junipermist pulumi/pulumi-junipermist
License
Apache-2.0
Notes
This Pulumi package is based on the mist Terraform Provider.