junipermist.org.Servicepolicy
Explore with Pulumi AI
This resource manages WAN Assurance Service Policies (Application Policiess).
The Service Policies are used in the servicepolicy_policies
from the Gateway configuration and Gateway templates.They can be used to manage common policies betweeen multiples configurations
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.junipermist.org.Servicepolicy;
import com.pulumi.junipermist.org.ServicepolicyArgs;
import com.pulumi.junipermist.org.inputs.ServicepolicyIdpArgs;
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 servicepolicyOne = new Servicepolicy("servicepolicyOne", ServicepolicyArgs.builder()
.orgId(terraformTest.id())
.tenants("guest")
.services("guest-internet")
.action("allow")
.idp(ServicepolicyIdpArgs.builder()
.enabled(true)
.profile("standard")
.alert_only(true)
.build())
.name("Guest-IDP")
.build());
}
}
resources:
servicepolicyOne:
type: junipermist:org:Servicepolicy
name: servicepolicy_one
properties:
orgId: ${terraformTest.id}
tenants:
- guest
services:
- guest-internet
action: allow
idp:
enabled: true
profile: standard
alert_only: true
name: Guest-IDP
Create Servicepolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Servicepolicy(name: string, args: ServicepolicyArgs, opts?: CustomResourceOptions);
@overload
def Servicepolicy(resource_name: str,
args: ServicepolicyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Servicepolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
org_id: Optional[str] = None,
action: Optional[str] = None,
appqoe: Optional[ServicepolicyAppqoeArgs] = None,
ewfs: Optional[Sequence[ServicepolicyEwfArgs]] = None,
idp: Optional[ServicepolicyIdpArgs] = None,
local_routing: Optional[bool] = None,
name: Optional[str] = None,
path_preference: Optional[str] = None,
services: Optional[Sequence[str]] = None,
tenants: Optional[Sequence[str]] = None)
func NewServicepolicy(ctx *Context, name string, args ServicepolicyArgs, opts ...ResourceOption) (*Servicepolicy, error)
public Servicepolicy(string name, ServicepolicyArgs args, CustomResourceOptions? opts = null)
public Servicepolicy(String name, ServicepolicyArgs args)
public Servicepolicy(String name, ServicepolicyArgs args, CustomResourceOptions options)
type: junipermist:org:Servicepolicy
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 ServicepolicyArgs
- 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 ServicepolicyArgs
- 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 ServicepolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServicepolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServicepolicyArgs
- 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 servicepolicyResource = new JuniperMist.Org.Servicepolicy("servicepolicyResource", new()
{
OrgId = "string",
Action = "string",
Appqoe = new JuniperMist.Org.Inputs.ServicepolicyAppqoeArgs
{
Enabled = false,
},
Ewfs = new[]
{
new JuniperMist.Org.Inputs.ServicepolicyEwfArgs
{
AlertOnly = false,
BlockMessage = "string",
Enabled = false,
Profile = "string",
},
},
Idp = new JuniperMist.Org.Inputs.ServicepolicyIdpArgs
{
AlertOnly = false,
Enabled = false,
IdpprofileId = "string",
Profile = "string",
},
LocalRouting = false,
Name = "string",
PathPreference = "string",
Services = new[]
{
"string",
},
Tenants = new[]
{
"string",
},
});
example, err := org.NewServicepolicy(ctx, "servicepolicyResource", &org.ServicepolicyArgs{
OrgId: pulumi.String("string"),
Action: pulumi.String("string"),
Appqoe: &org.ServicepolicyAppqoeArgs{
Enabled: pulumi.Bool(false),
},
Ewfs: org.ServicepolicyEwfArray{
&org.ServicepolicyEwfArgs{
AlertOnly: pulumi.Bool(false),
BlockMessage: pulumi.String("string"),
Enabled: pulumi.Bool(false),
Profile: pulumi.String("string"),
},
},
Idp: &org.ServicepolicyIdpArgs{
AlertOnly: pulumi.Bool(false),
Enabled: pulumi.Bool(false),
IdpprofileId: pulumi.String("string"),
Profile: pulumi.String("string"),
},
LocalRouting: pulumi.Bool(false),
Name: pulumi.String("string"),
PathPreference: pulumi.String("string"),
Services: pulumi.StringArray{
pulumi.String("string"),
},
Tenants: pulumi.StringArray{
pulumi.String("string"),
},
})
var servicepolicyResource = new Servicepolicy("servicepolicyResource", ServicepolicyArgs.builder()
.orgId("string")
.action("string")
.appqoe(ServicepolicyAppqoeArgs.builder()
.enabled(false)
.build())
.ewfs(ServicepolicyEwfArgs.builder()
.alertOnly(false)
.blockMessage("string")
.enabled(false)
.profile("string")
.build())
.idp(ServicepolicyIdpArgs.builder()
.alertOnly(false)
.enabled(false)
.idpprofileId("string")
.profile("string")
.build())
.localRouting(false)
.name("string")
.pathPreference("string")
.services("string")
.tenants("string")
.build());
servicepolicy_resource = junipermist.org.Servicepolicy("servicepolicyResource",
org_id="string",
action="string",
appqoe=junipermist.org.ServicepolicyAppqoeArgs(
enabled=False,
),
ewfs=[junipermist.org.ServicepolicyEwfArgs(
alert_only=False,
block_message="string",
enabled=False,
profile="string",
)],
idp=junipermist.org.ServicepolicyIdpArgs(
alert_only=False,
enabled=False,
idpprofile_id="string",
profile="string",
),
local_routing=False,
name="string",
path_preference="string",
services=["string"],
tenants=["string"])
const servicepolicyResource = new junipermist.org.Servicepolicy("servicepolicyResource", {
orgId: "string",
action: "string",
appqoe: {
enabled: false,
},
ewfs: [{
alertOnly: false,
blockMessage: "string",
enabled: false,
profile: "string",
}],
idp: {
alertOnly: false,
enabled: false,
idpprofileId: "string",
profile: "string",
},
localRouting: false,
name: "string",
pathPreference: "string",
services: ["string"],
tenants: ["string"],
});
type: junipermist:org:Servicepolicy
properties:
action: string
appqoe:
enabled: false
ewfs:
- alertOnly: false
blockMessage: string
enabled: false
profile: string
idp:
alertOnly: false
enabled: false
idpprofileId: string
profile: string
localRouting: false
name: string
orgId: string
pathPreference: string
services:
- string
tenants:
- string
Servicepolicy 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 Servicepolicy resource accepts the following input properties:
- Org
Id string - Action string
- enum:
allow
,deny
- Appqoe
Pulumi.
Juniper Mist. Org. Inputs. Servicepolicy Appqoe - For SRX Only
- Ewfs
List<Pulumi.
Juniper Mist. Org. Inputs. Servicepolicy Ewf> - Idp
Pulumi.
Juniper Mist. Org. Inputs. Servicepolicy Idp - Local
Routing bool - access within the same VRF
- Name string
- Path
Preference string - by default, we derive all paths available and use them
optionally, you can customize by using
path_preference
- Services List<string>
- Tenants List<string>
- Org
Id string - Action string
- enum:
allow
,deny
- Appqoe
Servicepolicy
Appqoe Args - For SRX Only
- Ewfs
[]Servicepolicy
Ewf Args - Idp
Servicepolicy
Idp Args - Local
Routing bool - access within the same VRF
- Name string
- Path
Preference string - by default, we derive all paths available and use them
optionally, you can customize by using
path_preference
- Services []string
- Tenants []string
- org
Id String - action String
- enum:
allow
,deny
- appqoe
Servicepolicy
Appqoe - For SRX Only
- ewfs
List<Servicepolicy
Ewf> - idp
Servicepolicy
Idp - local
Routing Boolean - access within the same VRF
- name String
- path
Preference String - by default, we derive all paths available and use them
optionally, you can customize by using
path_preference
- services List<String>
- tenants List<String>
- org
Id string - action string
- enum:
allow
,deny
- appqoe
Servicepolicy
Appqoe - For SRX Only
- ewfs
Servicepolicy
Ewf[] - idp
Servicepolicy
Idp - local
Routing boolean - access within the same VRF
- name string
- path
Preference string - by default, we derive all paths available and use them
optionally, you can customize by using
path_preference
- services string[]
- tenants string[]
- org_
id str - action str
- enum:
allow
,deny
- appqoe
Servicepolicy
Appqoe Args - For SRX Only
- ewfs
Sequence[Servicepolicy
Ewf Args] - idp
Servicepolicy
Idp Args - local_
routing bool - access within the same VRF
- name str
- path_
preference str - by default, we derive all paths available and use them
optionally, you can customize by using
path_preference
- services Sequence[str]
- tenants Sequence[str]
- org
Id String - action String
- enum:
allow
,deny
- appqoe Property Map
- For SRX Only
- ewfs List<Property Map>
- idp Property Map
- local
Routing Boolean - access within the same VRF
- name String
- path
Preference String - by default, we derive all paths available and use them
optionally, you can customize by using
path_preference
- services List<String>
- tenants List<String>
Outputs
All input properties are implicitly available as output properties. Additionally, the Servicepolicy 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 Servicepolicy Resource
Get an existing Servicepolicy 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?: ServicepolicyState, opts?: CustomResourceOptions): Servicepolicy
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
action: Optional[str] = None,
appqoe: Optional[ServicepolicyAppqoeArgs] = None,
ewfs: Optional[Sequence[ServicepolicyEwfArgs]] = None,
idp: Optional[ServicepolicyIdpArgs] = None,
local_routing: Optional[bool] = None,
name: Optional[str] = None,
org_id: Optional[str] = None,
path_preference: Optional[str] = None,
services: Optional[Sequence[str]] = None,
tenants: Optional[Sequence[str]] = None) -> Servicepolicy
func GetServicepolicy(ctx *Context, name string, id IDInput, state *ServicepolicyState, opts ...ResourceOption) (*Servicepolicy, error)
public static Servicepolicy Get(string name, Input<string> id, ServicepolicyState? state, CustomResourceOptions? opts = null)
public static Servicepolicy get(String name, Output<String> id, ServicepolicyState 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.
- Action string
- enum:
allow
,deny
- Appqoe
Pulumi.
Juniper Mist. Org. Inputs. Servicepolicy Appqoe - For SRX Only
- Ewfs
List<Pulumi.
Juniper Mist. Org. Inputs. Servicepolicy Ewf> - Idp
Pulumi.
Juniper Mist. Org. Inputs. Servicepolicy Idp - Local
Routing bool - access within the same VRF
- Name string
- Org
Id string - Path
Preference string - by default, we derive all paths available and use them
optionally, you can customize by using
path_preference
- Services List<string>
- Tenants List<string>
- Action string
- enum:
allow
,deny
- Appqoe
Servicepolicy
Appqoe Args - For SRX Only
- Ewfs
[]Servicepolicy
Ewf Args - Idp
Servicepolicy
Idp Args - Local
Routing bool - access within the same VRF
- Name string
- Org
Id string - Path
Preference string - by default, we derive all paths available and use them
optionally, you can customize by using
path_preference
- Services []string
- Tenants []string
- action String
- enum:
allow
,deny
- appqoe
Servicepolicy
Appqoe - For SRX Only
- ewfs
List<Servicepolicy
Ewf> - idp
Servicepolicy
Idp - local
Routing Boolean - access within the same VRF
- name String
- org
Id String - path
Preference String - by default, we derive all paths available and use them
optionally, you can customize by using
path_preference
- services List<String>
- tenants List<String>
- action string
- enum:
allow
,deny
- appqoe
Servicepolicy
Appqoe - For SRX Only
- ewfs
Servicepolicy
Ewf[] - idp
Servicepolicy
Idp - local
Routing boolean - access within the same VRF
- name string
- org
Id string - path
Preference string - by default, we derive all paths available and use them
optionally, you can customize by using
path_preference
- services string[]
- tenants string[]
- action str
- enum:
allow
,deny
- appqoe
Servicepolicy
Appqoe Args - For SRX Only
- ewfs
Sequence[Servicepolicy
Ewf Args] - idp
Servicepolicy
Idp Args - local_
routing bool - access within the same VRF
- name str
- org_
id str - path_
preference str - by default, we derive all paths available and use them
optionally, you can customize by using
path_preference
- services Sequence[str]
- tenants Sequence[str]
- action String
- enum:
allow
,deny
- appqoe Property Map
- For SRX Only
- ewfs List<Property Map>
- idp Property Map
- local
Routing Boolean - access within the same VRF
- name String
- org
Id String - path
Preference String - by default, we derive all paths available and use them
optionally, you can customize by using
path_preference
- services List<String>
- tenants List<String>
Supporting Types
ServicepolicyAppqoe, ServicepolicyAppqoeArgs
- Enabled bool
- Enabled bool
- enabled Boolean
- enabled boolean
- enabled bool
- enabled Boolean
ServicepolicyEwf, ServicepolicyEwfArgs
- Alert
Only bool - Block
Message string - Enabled bool
- Profile string
- enum:
critical
,standard
,strict
- Alert
Only bool - Block
Message string - Enabled bool
- Profile string
- enum:
critical
,standard
,strict
- alert
Only Boolean - block
Message String - enabled Boolean
- profile String
- enum:
critical
,standard
,strict
- alert
Only boolean - block
Message string - enabled boolean
- profile string
- enum:
critical
,standard
,strict
- alert_
only bool - block_
message str - enabled bool
- profile str
- enum:
critical
,standard
,strict
- alert
Only Boolean - block
Message String - enabled Boolean
- profile String
- enum:
critical
,standard
,strict
ServicepolicyIdp, ServicepolicyIdpArgs
- Alert
Only bool - Enabled bool
- Idpprofile
Id string - org_level IDP Profile can be used, this takes precedence over
profile
- Profile string
strict
(default) /standard
/ or keys from from idp_profiles
- Alert
Only bool - Enabled bool
- Idpprofile
Id string - org_level IDP Profile can be used, this takes precedence over
profile
- Profile string
strict
(default) /standard
/ or keys from from idp_profiles
- alert
Only Boolean - enabled Boolean
- idpprofile
Id String - org_level IDP Profile can be used, this takes precedence over
profile
- profile String
strict
(default) /standard
/ or keys from from idp_profiles
- alert
Only boolean - enabled boolean
- idpprofile
Id string - org_level IDP Profile can be used, this takes precedence over
profile
- profile string
strict
(default) /standard
/ or keys from from idp_profiles
- alert_
only bool - enabled bool
- idpprofile_
id str - org_level IDP Profile can be used, this takes precedence over
profile
- profile str
strict
(default) /standard
/ or keys from from idp_profiles
- alert
Only Boolean - enabled Boolean
- idpprofile
Id String - org_level IDP Profile can be used, this takes precedence over
profile
- profile String
strict
(default) /standard
/ or keys from from idp_profiles
Import
Using pulumi import
, import mist_org_servicepolicy
with:
Org Service Policy can be imported by specifying the org_id and the servicepolicy_id
$ pulumi import junipermist:org/servicepolicy:Servicepolicy servicepolicy_one 17b46405-3a6d-4715-8bb4-6bb6d06f316a.d3c42998-9012-4859-9743-6b9bee475309
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.