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:
- OrganizationId string
- organizationId path parameter. Organization ID
- Parameters
SmSentry Policies Assignments Parameters 
- OrganizationId string
- organizationId path parameter. Organization ID
- Parameters
SmSentry Policies Assignments Parameters Args 
- organizationId String
- organizationId path parameter. Organization ID
- parameters
SmSentry Policies Assignments Parameters 
- organizationId string
- organizationId path parameter. Organization ID
- parameters
SmSentry Policies Assignments Parameters 
- organization_id str
- organizationId path parameter. Organization ID
- parameters
SmSentry Policies Assignments Parameters Args 
- organizationId 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
SmSentry Policies Assignments Item 
- Id string
- The provider-assigned unique ID for this managed resource.
- Item
SmSentry Policies Assignments Item 
- id String
- The provider-assigned unique ID for this managed resource.
- item
SmSentry Policies Assignments Item 
- id string
- The provider-assigned unique ID for this managed resource.
- item
SmSentry Policies Assignments Item 
- id str
- The provider-assigned unique ID for this managed resource.
- item
SmSentry 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) -> SmSentryPoliciesAssignmentsfunc 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)resources:  _:    type: meraki:organizations:SmSentryPoliciesAssignments    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.
- Item
SmSentry Policies Assignments Item 
- OrganizationId string
- organizationId path parameter. Organization ID
- Parameters
SmSentry Policies Assignments Parameters 
- Item
SmSentry Policies Assignments Item Args 
- OrganizationId string
- organizationId path parameter. Organization ID
- Parameters
SmSentry Policies Assignments Parameters Args 
- item
SmSentry Policies Assignments Item 
- organizationId String
- organizationId path parameter. Organization ID
- parameters
SmSentry Policies Assignments Parameters 
- item
SmSentry Policies Assignments Item 
- organizationId string
- organizationId path parameter. Organization ID
- parameters
SmSentry Policies Assignments Parameters 
- item
SmSentry Policies Assignments Item Args 
- organization_id str
- organizationId path parameter. Organization ID
- parameters
SmSentry Policies Assignments Parameters Args 
- item Property Map
- organizationId String
- organizationId path parameter. Organization ID
- parameters Property Map
Supporting Types
SmSentryPoliciesAssignmentsItem, SmSentryPoliciesAssignmentsItemArgs          
- Items
List<SmSentry Policies Assignments Item Item> 
- Sentry Group Policies for the Organization keyed by Network Id
- Items
[]SmSentry Policies Assignments Item Item 
- Sentry Group Policies for the Organization keyed by Network Id
- items
List<SmSentry Policies Assignments Item Item> 
- Sentry Group Policies for the Organization keyed by Network Id
- items
SmSentry Policies Assignments Item Item[] 
- Sentry Group Policies for the Organization keyed by Network Id
- items
Sequence[SmSentry 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            
- NetworkId string
- The Id of the Network
- Policies
List<SmSentry Policies Assignments Item Item Policy> 
- Array of Sentry Group Policies for the Network
- NetworkId string
- The Id of the Network
- Policies
[]SmSentry Policies Assignments Item Item Policy 
- Array of Sentry Group Policies for the Network
- networkId String
- The Id of the Network
- policies
List<SmSentry Policies Assignments Item Item Policy> 
- Array of Sentry Group Policies for the Network
- networkId string
- The Id of the Network
- policies
SmSentry Policies Assignments Item Item Policy[] 
- Array of Sentry Group Policies for the Network
- network_id str
- The Id of the Network
- policies
Sequence[SmSentry Policies Assignments Item Item Policy] 
- Array of Sentry Group Policies for the Network
- networkId String
- The Id of the Network
- policies List<Property Map>
- Array of Sentry Group Policies for the Network
SmSentryPoliciesAssignmentsItemItemPolicy, SmSentryPoliciesAssignmentsItemItemPolicyArgs              
- CreatedAt string
- The creation time of the Sentry Policy
- GroupNumber string
- The number of the Group Policy
- GroupPolicy stringId 
- The Id of the Group Policy. This is associated with the network specified by the networkId.
- LastUpdated stringAt 
- The last update time of the Sentry Policy
- NetworkId 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.
- PolicyId string
- The Id of the Sentry Policy
- Priority string
- The priority of the Sentry Policy
- Scope string
- The scope of the Sentry Policy
- SmNetwork stringId 
- The Id of the Systems Manager Network the Sentry Policy is assigned to
- List<string>
- The tags of the Sentry Policy
- CreatedAt string
- The creation time of the Sentry Policy
- GroupNumber string
- The number of the Group Policy
- GroupPolicy stringId 
- The Id of the Group Policy. This is associated with the network specified by the networkId.
- LastUpdated stringAt 
- The last update time of the Sentry Policy
- NetworkId 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.
- PolicyId string
- The Id of the Sentry Policy
- Priority string
- The priority of the Sentry Policy
- Scope string
- The scope of the Sentry Policy
- SmNetwork stringId 
- The Id of the Systems Manager Network the Sentry Policy is assigned to
- []string
- The tags of the Sentry Policy
- createdAt String
- The creation time of the Sentry Policy
- groupNumber String
- The number of the Group Policy
- groupPolicy StringId 
- The Id of the Group Policy. This is associated with the network specified by the networkId.
- lastUpdated StringAt 
- The last update time of the Sentry Policy
- networkId 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.
- policyId String
- The Id of the Sentry Policy
- priority String
- The priority of the Sentry Policy
- scope String
- The scope of the Sentry Policy
- smNetwork StringId 
- The Id of the Systems Manager Network the Sentry Policy is assigned to
- List<String>
- The tags of the Sentry Policy
- createdAt string
- The creation time of the Sentry Policy
- groupNumber string
- The number of the Group Policy
- groupPolicy stringId 
- The Id of the Group Policy. This is associated with the network specified by the networkId.
- lastUpdated stringAt 
- The last update time of the Sentry Policy
- networkId 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.
- policyId string
- The Id of the Sentry Policy
- priority string
- The priority of the Sentry Policy
- scope string
- The scope of the Sentry Policy
- smNetwork 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
- createdAt String
- The creation time of the Sentry Policy
- groupNumber String
- The number of the Group Policy
- groupPolicy StringId 
- The Id of the Group Policy. This is associated with the network specified by the networkId.
- lastUpdated StringAt 
- The last update time of the Sentry Policy
- networkId 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.
- policyId String
- The Id of the Sentry Policy
- priority String
- The priority of the Sentry Policy
- scope String
- The scope of the Sentry Policy
- smNetwork 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<SmSentry Policies Assignments Parameters Item> 
- Sentry Group Policies for the Organization keyed by Network Id
- Items
[]SmSentry Policies Assignments Parameters Item 
- Sentry Group Policies for the Organization keyed by Network Id
- items
List<SmSentry Policies Assignments Parameters Item> 
- Sentry Group Policies for the Organization keyed by Network Id
- items
SmSentry Policies Assignments Parameters Item[] 
- Sentry Group Policies for the Organization keyed by Network Id
- items
Sequence[SmSentry 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            
- NetworkId string
- The Id of the Network
- Policies
List<SmSentry Policies Assignments Parameters Item Policy> 
- Array of Sentry Group Policies for the Network
- NetworkId string
- The Id of the Network
- Policies
[]SmSentry Policies Assignments Parameters Item Policy 
- Array of Sentry Group Policies for the Network
- networkId String
- The Id of the Network
- policies
List<SmSentry Policies Assignments Parameters Item Policy> 
- Array of Sentry Group Policies for the Network
- networkId string
- The Id of the Network
- policies
SmSentry Policies Assignments Parameters Item Policy[] 
- Array of Sentry Group Policies for the Network
- network_id str
- The Id of the Network
- policies
Sequence[SmSentry Policies Assignments Parameters Item Policy] 
- Array of Sentry Group Policies for the Network
- networkId String
- The Id of the Network
- policies List<Property Map>
- Array of Sentry Group Policies for the Network
SmSentryPoliciesAssignmentsParametersItemPolicy, SmSentryPoliciesAssignmentsParametersItemPolicyArgs              
- GroupPolicy stringId 
- The Group Policy Id
- PolicyId string
- The Sentry Policy Id, if updating an existing Sentry Policy
- Scope string
- The scope of the Sentry Policy
- SmNetwork stringId 
- The Id of the Systems Manager Network
- List<string>
- The tags for the Sentry Policy
- GroupPolicy stringId 
- The Group Policy Id
- PolicyId string
- The Sentry Policy Id, if updating an existing Sentry Policy
- Scope string
- The scope of the Sentry Policy
- SmNetwork stringId 
- The Id of the Systems Manager Network
- []string
- The tags for the Sentry Policy
- groupPolicy StringId 
- The Group Policy Id
- policyId String
- The Sentry Policy Id, if updating an existing Sentry Policy
- scope String
- The scope of the Sentry Policy
- smNetwork StringId 
- The Id of the Systems Manager Network
- List<String>
- The tags for the Sentry Policy
- groupPolicy stringId 
- The Group Policy Id
- policyId string
- The Sentry Policy Id, if updating an existing Sentry Policy
- scope string
- The scope of the Sentry Policy
- smNetwork 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
- groupPolicy StringId 
- The Group Policy Id
- policyId String
- The Sentry Policy Id, if updating an existing Sentry Policy
- scope String
- The scope of the Sentry Policy
- smNetwork 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 merakiTerraform Provider.
