meraki.organizations.SmSentryPoliciesAssignments
Explore with Pulumi AI
~>Warning: This resource does not represent a real-world entity in Meraki Dashboard, therefore changing or deleting this resource on its own has no immediate effect. Instead, it is a task part of a Meraki Dashboard workflow. It is executed in Meraki without any additional verification. It does not check if it was executed before or if a similar configuration or action already existed previously.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as meraki from "@pulumi/meraki";
const example = new meraki.organizations.SmSentryPoliciesAssignments("example", {
organizationId: "string",
parameters: {
items: [{
networkId: "N_24329156",
policies: [{
groupPolicyId: "1284392014819",
policyId: "1284392014819",
scope: "withAny",
smNetworkId: "N_24329156",
tags: [
"tag1",
"tag2",
],
}],
}],
},
});
export const merakiOrganizationsSmSentryPoliciesAssignmentsExample = example;
import pulumi
import pulumi_meraki as meraki
example = meraki.organizations.SmSentryPoliciesAssignments("example",
organization_id="string",
parameters={
"items": [{
"network_id": "N_24329156",
"policies": [{
"group_policy_id": "1284392014819",
"policy_id": "1284392014819",
"scope": "withAny",
"sm_network_id": "N_24329156",
"tags": [
"tag1",
"tag2",
],
}],
}],
})
pulumi.export("merakiOrganizationsSmSentryPoliciesAssignmentsExample", example)
package main
import (
"github.com/pulumi/pulumi-meraki/sdk/go/meraki/organizations"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := organizations.NewSmSentryPoliciesAssignments(ctx, "example", &organizations.SmSentryPoliciesAssignmentsArgs{
OrganizationId: pulumi.String("string"),
Parameters: &organizations.SmSentryPoliciesAssignmentsParametersArgs{
Items: organizations.SmSentryPoliciesAssignmentsParametersItemArray{
&organizations.SmSentryPoliciesAssignmentsParametersItemArgs{
NetworkId: pulumi.String("N_24329156"),
Policies: organizations.SmSentryPoliciesAssignmentsParametersItemPolicyArray{
&organizations.SmSentryPoliciesAssignmentsParametersItemPolicyArgs{
GroupPolicyId: pulumi.String("1284392014819"),
PolicyId: pulumi.String("1284392014819"),
Scope: pulumi.String("withAny"),
SmNetworkId: pulumi.String("N_24329156"),
Tags: pulumi.StringArray{
pulumi.String("tag1"),
pulumi.String("tag2"),
},
},
},
},
},
},
})
if err != nil {
return err
}
ctx.Export("merakiOrganizationsSmSentryPoliciesAssignmentsExample", example)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Meraki = Pulumi.Meraki;
return await Deployment.RunAsync(() =>
{
var example = new Meraki.Organizations.SmSentryPoliciesAssignments("example", new()
{
OrganizationId = "string",
Parameters = new Meraki.Organizations.Inputs.SmSentryPoliciesAssignmentsParametersArgs
{
Items = new[]
{
new Meraki.Organizations.Inputs.SmSentryPoliciesAssignmentsParametersItemArgs
{
NetworkId = "N_24329156",
Policies = new[]
{
new Meraki.Organizations.Inputs.SmSentryPoliciesAssignmentsParametersItemPolicyArgs
{
GroupPolicyId = "1284392014819",
PolicyId = "1284392014819",
Scope = "withAny",
SmNetworkId = "N_24329156",
Tags = new[]
{
"tag1",
"tag2",
},
},
},
},
},
},
});
return new Dictionary<string, object?>
{
["merakiOrganizationsSmSentryPoliciesAssignmentsExample"] = example,
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.meraki.organizations.SmSentryPoliciesAssignments;
import com.pulumi.meraki.organizations.SmSentryPoliciesAssignmentsArgs;
import com.pulumi.meraki.organizations.inputs.SmSentryPoliciesAssignmentsParametersArgs;
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 example = new SmSentryPoliciesAssignments("example", SmSentryPoliciesAssignmentsArgs.builder()
.organizationId("string")
.parameters(SmSentryPoliciesAssignmentsParametersArgs.builder()
.items(SmSentryPoliciesAssignmentsParametersItemArgs.builder()
.networkId("N_24329156")
.policies(SmSentryPoliciesAssignmentsParametersItemPolicyArgs.builder()
.groupPolicyId("1284392014819")
.policyId("1284392014819")
.scope("withAny")
.smNetworkId("N_24329156")
.tags(
"tag1",
"tag2")
.build())
.build())
.build())
.build());
ctx.export("merakiOrganizationsSmSentryPoliciesAssignmentsExample", example);
}
}
resources:
example:
type: meraki:organizations:SmSentryPoliciesAssignments
properties:
organizationId: string
parameters:
items:
- networkId: N_24329156
policies:
- groupPolicyId: '1284392014819'
policyId: '1284392014819'
scope: withAny
smNetworkId: N_24329156
tags:
- tag1
- tag2
outputs:
merakiOrganizationsSmSentryPoliciesAssignmentsExample: ${example}
Create SmSentryPoliciesAssignments Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SmSentryPoliciesAssignments(name: string, args: SmSentryPoliciesAssignmentsArgs, opts?: CustomResourceOptions);
@overload
def SmSentryPoliciesAssignments(resource_name: str,
args: SmSentryPoliciesAssignmentsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SmSentryPoliciesAssignments(resource_name: str,
opts: Optional[ResourceOptions] = None,
organization_id: Optional[str] = None,
parameters: Optional[SmSentryPoliciesAssignmentsParametersArgs] = None)
func NewSmSentryPoliciesAssignments(ctx *Context, name string, args SmSentryPoliciesAssignmentsArgs, opts ...ResourceOption) (*SmSentryPoliciesAssignments, error)
public SmSentryPoliciesAssignments(string name, SmSentryPoliciesAssignmentsArgs args, CustomResourceOptions? opts = null)
public SmSentryPoliciesAssignments(String name, SmSentryPoliciesAssignmentsArgs args)
public SmSentryPoliciesAssignments(String name, SmSentryPoliciesAssignmentsArgs args, CustomResourceOptions options)
type: meraki:organizations:SmSentryPoliciesAssignments
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 SmSentryPoliciesAssignmentsArgs
- 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 SmSentryPoliciesAssignmentsArgs
- 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 SmSentryPoliciesAssignmentsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SmSentryPoliciesAssignmentsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SmSentryPoliciesAssignmentsArgs
- 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 smSentryPoliciesAssignmentsResource = new Meraki.Organizations.SmSentryPoliciesAssignments("smSentryPoliciesAssignmentsResource", new()
{
OrganizationId = "string",
Parameters = new Meraki.Organizations.Inputs.SmSentryPoliciesAssignmentsParametersArgs
{
Items = new[]
{
new Meraki.Organizations.Inputs.SmSentryPoliciesAssignmentsParametersItemArgs
{
NetworkId = "string",
Policies = new[]
{
new Meraki.Organizations.Inputs.SmSentryPoliciesAssignmentsParametersItemPolicyArgs
{
GroupPolicyId = "string",
PolicyId = "string",
Scope = "string",
SmNetworkId = "string",
Tags = new[]
{
"string",
},
},
},
},
},
},
});
example, err := organizations.NewSmSentryPoliciesAssignments(ctx, "smSentryPoliciesAssignmentsResource", &organizations.SmSentryPoliciesAssignmentsArgs{
OrganizationId: pulumi.String("string"),
Parameters: &organizations.SmSentryPoliciesAssignmentsParametersArgs{
Items: organizations.SmSentryPoliciesAssignmentsParametersItemArray{
&organizations.SmSentryPoliciesAssignmentsParametersItemArgs{
NetworkId: pulumi.String("string"),
Policies: organizations.SmSentryPoliciesAssignmentsParametersItemPolicyArray{
&organizations.SmSentryPoliciesAssignmentsParametersItemPolicyArgs{
GroupPolicyId: pulumi.String("string"),
PolicyId: pulumi.String("string"),
Scope: pulumi.String("string"),
SmNetworkId: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
},
})
var smSentryPoliciesAssignmentsResource = new SmSentryPoliciesAssignments("smSentryPoliciesAssignmentsResource", SmSentryPoliciesAssignmentsArgs.builder()
.organizationId("string")
.parameters(SmSentryPoliciesAssignmentsParametersArgs.builder()
.items(SmSentryPoliciesAssignmentsParametersItemArgs.builder()
.networkId("string")
.policies(SmSentryPoliciesAssignmentsParametersItemPolicyArgs.builder()
.groupPolicyId("string")
.policyId("string")
.scope("string")
.smNetworkId("string")
.tags("string")
.build())
.build())
.build())
.build());
sm_sentry_policies_assignments_resource = meraki.organizations.SmSentryPoliciesAssignments("smSentryPoliciesAssignmentsResource",
organization_id="string",
parameters={
"items": [{
"network_id": "string",
"policies": [{
"group_policy_id": "string",
"policy_id": "string",
"scope": "string",
"sm_network_id": "string",
"tags": ["string"],
}],
}],
})
const smSentryPoliciesAssignmentsResource = new meraki.organizations.SmSentryPoliciesAssignments("smSentryPoliciesAssignmentsResource", {
organizationId: "string",
parameters: {
items: [{
networkId: "string",
policies: [{
groupPolicyId: "string",
policyId: "string",
scope: "string",
smNetworkId: "string",
tags: ["string"],
}],
}],
},
});
type: meraki:organizations:SmSentryPoliciesAssignments
properties:
organizationId: string
parameters:
items:
- networkId: string
policies:
- groupPolicyId: string
policyId: string
scope: string
smNetworkId: string
tags:
- string
SmSentryPoliciesAssignments 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 SmSentryPoliciesAssignments resource accepts the following input properties:
- Organization
Id string - organizationId path parameter. Organization ID
- Parameters
Sm
Sentry Policies Assignments Parameters
- Organization
Id string - organizationId path parameter. Organization ID
- Parameters
Sm
Sentry Policies Assignments Parameters Args
- organization
Id String - organizationId path parameter. Organization ID
- parameters
Sm
Sentry Policies Assignments Parameters
- organization
Id string - organizationId path parameter. Organization ID
- parameters
Sm
Sentry Policies Assignments Parameters
- organization_
id str - organizationId path parameter. Organization ID
- parameters
Sm
Sentry Policies Assignments Parameters Args
- organization
Id String - organizationId path parameter. Organization ID
- parameters Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the SmSentryPoliciesAssignments resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Item
Sm
Sentry Policies Assignments Item
- Id string
- The provider-assigned unique ID for this managed resource.
- Item
Sm
Sentry Policies Assignments Item
- id String
- The provider-assigned unique ID for this managed resource.
- item
Sm
Sentry Policies Assignments Item
- id string
- The provider-assigned unique ID for this managed resource.
- item
Sm
Sentry Policies Assignments Item
- id str
- The provider-assigned unique ID for this managed resource.
- item
Sm
Sentry Policies Assignments Item
- id String
- The provider-assigned unique ID for this managed resource.
- item Property Map
Look up Existing SmSentryPoliciesAssignments Resource
Get an existing SmSentryPoliciesAssignments 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?: SmSentryPoliciesAssignmentsState, opts?: CustomResourceOptions): SmSentryPoliciesAssignments
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
item: Optional[SmSentryPoliciesAssignmentsItemArgs] = None,
organization_id: Optional[str] = None,
parameters: Optional[SmSentryPoliciesAssignmentsParametersArgs] = None) -> SmSentryPoliciesAssignments
func GetSmSentryPoliciesAssignments(ctx *Context, name string, id IDInput, state *SmSentryPoliciesAssignmentsState, opts ...ResourceOption) (*SmSentryPoliciesAssignments, error)
public static SmSentryPoliciesAssignments Get(string name, Input<string> id, SmSentryPoliciesAssignmentsState? state, CustomResourceOptions? opts = null)
public static SmSentryPoliciesAssignments get(String name, Output<String> id, SmSentryPoliciesAssignmentsState 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.
- Item
Sm
Sentry Policies Assignments Item - Organization
Id string - organizationId path parameter. Organization ID
- Parameters
Sm
Sentry Policies Assignments Parameters
- Item
Sm
Sentry Policies Assignments Item Args - Organization
Id string - organizationId path parameter. Organization ID
- Parameters
Sm
Sentry Policies Assignments Parameters Args
- item
Sm
Sentry Policies Assignments Item - organization
Id String - organizationId path parameter. Organization ID
- parameters
Sm
Sentry Policies Assignments Parameters
- item
Sm
Sentry Policies Assignments Item - organization
Id string - organizationId path parameter. Organization ID
- parameters
Sm
Sentry Policies Assignments Parameters
- item
Sm
Sentry Policies Assignments Item Args - organization_
id str - organizationId path parameter. Organization ID
- parameters
Sm
Sentry Policies Assignments Parameters Args
- item Property Map
- organization
Id String - organizationId path parameter. Organization ID
- parameters Property Map
Supporting Types
SmSentryPoliciesAssignmentsItem, SmSentryPoliciesAssignmentsItemArgs
- Items
List<Sm
Sentry Policies Assignments Item Item> - Sentry Group Policies for the Organization keyed by Network Id
- Items
[]Sm
Sentry Policies Assignments Item Item - Sentry Group Policies for the Organization keyed by Network Id
- items
List<Sm
Sentry Policies Assignments Item Item> - Sentry Group Policies for the Organization keyed by Network Id
- items
Sm
Sentry Policies Assignments Item Item[] - Sentry Group Policies for the Organization keyed by Network Id
- items
Sequence[Sm
Sentry Policies Assignments Item Item] - Sentry Group Policies for the Organization keyed by Network Id
- items List<Property Map>
- Sentry Group Policies for the Organization keyed by Network Id
SmSentryPoliciesAssignmentsItemItem, SmSentryPoliciesAssignmentsItemItemArgs
- Network
Id string - The Id of the Network
- Policies
List<Sm
Sentry Policies Assignments Item Item Policy> - Array of Sentry Group Policies for the Network
- Network
Id string - The Id of the Network
- Policies
[]Sm
Sentry Policies Assignments Item Item Policy - Array of Sentry Group Policies for the Network
- network
Id String - The Id of the Network
- policies
List<Sm
Sentry Policies Assignments Item Item Policy> - Array of Sentry Group Policies for the Network
- network
Id string - The Id of the Network
- policies
Sm
Sentry Policies Assignments Item Item Policy[] - Array of Sentry Group Policies for the Network
- network_
id str - The Id of the Network
- policies
Sequence[Sm
Sentry Policies Assignments Item Item Policy] - Array of Sentry Group Policies for the Network
- network
Id String - The Id of the Network
- policies List<Property Map>
- Array of Sentry Group Policies for the Network
SmSentryPoliciesAssignmentsItemItemPolicy, SmSentryPoliciesAssignmentsItemItemPolicyArgs
- Created
At string - The creation time of the Sentry Policy
- Group
Number string - The number of the Group Policy
- Group
Policy stringId - The Id of the Group Policy. This is associated with the network specified by the networkId.
- Last
Updated stringAt - The last update time of the Sentry Policy
- Network
Id string - The Id of the Network the Sentry Policy is associated with. In a locale, this should be the Wireless Group if present, otherwise the Wired Group.
- Policy
Id string - The Id of the Sentry Policy
- Priority string
- The priority of the Sentry Policy
- Scope string
- The scope of the Sentry Policy
- Sm
Network stringId - The Id of the Systems Manager Network the Sentry Policy is assigned to
- List<string>
- The tags of the Sentry Policy
- Created
At string - The creation time of the Sentry Policy
- Group
Number string - The number of the Group Policy
- Group
Policy stringId - The Id of the Group Policy. This is associated with the network specified by the networkId.
- Last
Updated stringAt - The last update time of the Sentry Policy
- Network
Id string - The Id of the Network the Sentry Policy is associated with. In a locale, this should be the Wireless Group if present, otherwise the Wired Group.
- Policy
Id string - The Id of the Sentry Policy
- Priority string
- The priority of the Sentry Policy
- Scope string
- The scope of the Sentry Policy
- Sm
Network stringId - The Id of the Systems Manager Network the Sentry Policy is assigned to
- []string
- The tags of the Sentry Policy
- created
At String - The creation time of the Sentry Policy
- group
Number String - The number of the Group Policy
- group
Policy StringId - The Id of the Group Policy. This is associated with the network specified by the networkId.
- last
Updated StringAt - The last update time of the Sentry Policy
- network
Id String - The Id of the Network the Sentry Policy is associated with. In a locale, this should be the Wireless Group if present, otherwise the Wired Group.
- policy
Id String - The Id of the Sentry Policy
- priority String
- The priority of the Sentry Policy
- scope String
- The scope of the Sentry Policy
- sm
Network StringId - The Id of the Systems Manager Network the Sentry Policy is assigned to
- List<String>
- The tags of the Sentry Policy
- created
At string - The creation time of the Sentry Policy
- group
Number string - The number of the Group Policy
- group
Policy stringId - The Id of the Group Policy. This is associated with the network specified by the networkId.
- last
Updated stringAt - The last update time of the Sentry Policy
- network
Id string - The Id of the Network the Sentry Policy is associated with. In a locale, this should be the Wireless Group if present, otherwise the Wired Group.
- policy
Id string - The Id of the Sentry Policy
- priority string
- The priority of the Sentry Policy
- scope string
- The scope of the Sentry Policy
- sm
Network stringId - The Id of the Systems Manager Network the Sentry Policy is assigned to
- string[]
- The tags of the Sentry Policy
- created_
at str - The creation time of the Sentry Policy
- group_
number str - The number of the Group Policy
- group_
policy_ strid - The Id of the Group Policy. This is associated with the network specified by the networkId.
- last_
updated_ strat - The last update time of the Sentry Policy
- network_
id str - The Id of the Network the Sentry Policy is associated with. In a locale, this should be the Wireless Group if present, otherwise the Wired Group.
- policy_
id str - The Id of the Sentry Policy
- priority str
- The priority of the Sentry Policy
- scope str
- The scope of the Sentry Policy
- sm_
network_ strid - The Id of the Systems Manager Network the Sentry Policy is assigned to
- Sequence[str]
- The tags of the Sentry Policy
- created
At String - The creation time of the Sentry Policy
- group
Number String - The number of the Group Policy
- group
Policy StringId - The Id of the Group Policy. This is associated with the network specified by the networkId.
- last
Updated StringAt - The last update time of the Sentry Policy
- network
Id String - The Id of the Network the Sentry Policy is associated with. In a locale, this should be the Wireless Group if present, otherwise the Wired Group.
- policy
Id String - The Id of the Sentry Policy
- priority String
- The priority of the Sentry Policy
- scope String
- The scope of the Sentry Policy
- sm
Network StringId - The Id of the Systems Manager Network the Sentry Policy is assigned to
- List<String>
- The tags of the Sentry Policy
SmSentryPoliciesAssignmentsParameters, SmSentryPoliciesAssignmentsParametersArgs
- Items
List<Sm
Sentry Policies Assignments Parameters Item> - Sentry Group Policies for the Organization keyed by Network Id
- Items
[]Sm
Sentry Policies Assignments Parameters Item - Sentry Group Policies for the Organization keyed by Network Id
- items
List<Sm
Sentry Policies Assignments Parameters Item> - Sentry Group Policies for the Organization keyed by Network Id
- items
Sm
Sentry Policies Assignments Parameters Item[] - Sentry Group Policies for the Organization keyed by Network Id
- items
Sequence[Sm
Sentry Policies Assignments Parameters Item] - Sentry Group Policies for the Organization keyed by Network Id
- items List<Property Map>
- Sentry Group Policies for the Organization keyed by Network Id
SmSentryPoliciesAssignmentsParametersItem, SmSentryPoliciesAssignmentsParametersItemArgs
- Network
Id string - The Id of the Network
- Policies
List<Sm
Sentry Policies Assignments Parameters Item Policy> - Array of Sentry Group Policies for the Network
- Network
Id string - The Id of the Network
- Policies
[]Sm
Sentry Policies Assignments Parameters Item Policy - Array of Sentry Group Policies for the Network
- network
Id String - The Id of the Network
- policies
List<Sm
Sentry Policies Assignments Parameters Item Policy> - Array of Sentry Group Policies for the Network
- network
Id string - The Id of the Network
- policies
Sm
Sentry Policies Assignments Parameters Item Policy[] - Array of Sentry Group Policies for the Network
- network_
id str - The Id of the Network
- policies
Sequence[Sm
Sentry Policies Assignments Parameters Item Policy] - Array of Sentry Group Policies for the Network
- network
Id String - The Id of the Network
- policies List<Property Map>
- Array of Sentry Group Policies for the Network
SmSentryPoliciesAssignmentsParametersItemPolicy, SmSentryPoliciesAssignmentsParametersItemPolicyArgs
- Group
Policy stringId - The Group Policy Id
- Policy
Id string - The Sentry Policy Id, if updating an existing Sentry Policy
- Scope string
- The scope of the Sentry Policy
- Sm
Network stringId - The Id of the Systems Manager Network
- List<string>
- The tags for the Sentry Policy
- Group
Policy stringId - The Group Policy Id
- Policy
Id string - The Sentry Policy Id, if updating an existing Sentry Policy
- Scope string
- The scope of the Sentry Policy
- Sm
Network stringId - The Id of the Systems Manager Network
- []string
- The tags for the Sentry Policy
- group
Policy StringId - The Group Policy Id
- policy
Id String - The Sentry Policy Id, if updating an existing Sentry Policy
- scope String
- The scope of the Sentry Policy
- sm
Network StringId - The Id of the Systems Manager Network
- List<String>
- The tags for the Sentry Policy
- group
Policy stringId - The Group Policy Id
- policy
Id string - The Sentry Policy Id, if updating an existing Sentry Policy
- scope string
- The scope of the Sentry Policy
- sm
Network stringId - The Id of the Systems Manager Network
- string[]
- The tags for the Sentry Policy
- group_
policy_ strid - The Group Policy Id
- policy_
id str - The Sentry Policy Id, if updating an existing Sentry Policy
- scope str
- The scope of the Sentry Policy
- sm_
network_ strid - The Id of the Systems Manager Network
- Sequence[str]
- The tags for the Sentry Policy
- group
Policy StringId - The Group Policy Id
- policy
Id String - The Sentry Policy Id, if updating an existing Sentry Policy
- scope String
- The scope of the Sentry Policy
- sm
Network StringId - The Id of the Systems Manager Network
- List<String>
- The tags for the Sentry Policy
Package Details
- Repository
- meraki pulumi/pulumi-meraki
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
meraki
Terraform Provider.