1. Packages
  2. Cisco Meraki
  3. API Docs
  4. organizations
  5. SmSentryPoliciesAssignments
Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi

meraki.organizations.SmSentryPoliciesAssignments

Explore with Pulumi AI

meraki logo
Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi

    ~>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=meraki.organizations.SmSentryPoliciesAssignmentsParametersArgs(
            items=[meraki.organizations.SmSentryPoliciesAssignmentsParametersItemArgs(
                network_id="N_24329156",
                policies=[meraki.organizations.SmSentryPoliciesAssignmentsParametersItemPolicyArgs(
                    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=meraki.organizations.SmSentryPoliciesAssignmentsParametersArgs(
            items=[meraki.organizations.SmSentryPoliciesAssignmentsParametersItemArgs(
                network_id="string",
                policies=[meraki.organizations.SmSentryPoliciesAssignmentsParametersItemPolicyArgs(
                    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

    The SmSentryPoliciesAssignments resource accepts the following input properties:

    OrganizationId string
    organizationId path parameter. Organization ID
    Parameters SmSentryPoliciesAssignmentsParameters
    OrganizationId string
    organizationId path parameter. Organization ID
    Parameters SmSentryPoliciesAssignmentsParametersArgs
    organizationId String
    organizationId path parameter. Organization ID
    parameters SmSentryPoliciesAssignmentsParameters
    organizationId string
    organizationId path parameter. Organization ID
    parameters SmSentryPoliciesAssignmentsParameters
    organization_id str
    organizationId path parameter. Organization ID
    parameters SmSentryPoliciesAssignmentsParametersArgs
    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 SmSentryPoliciesAssignmentsItem
    Id string
    The provider-assigned unique ID for this managed resource.
    Item SmSentryPoliciesAssignmentsItem
    id String
    The provider-assigned unique ID for this managed resource.
    item SmSentryPoliciesAssignmentsItem
    id string
    The provider-assigned unique ID for this managed resource.
    item SmSentryPoliciesAssignmentsItem
    id str
    The provider-assigned unique ID for this managed resource.
    item SmSentryPoliciesAssignmentsItem
    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.
    The following state arguments are supported:
    item Property Map
    organizationId String
    organizationId path parameter. Organization ID
    parameters Property Map

    Supporting Types

    SmSentryPoliciesAssignmentsItem, SmSentryPoliciesAssignmentsItemArgs

    Items List<SmSentryPoliciesAssignmentsItemItem>
    Sentry Group Policies for the Organization keyed by Network Id
    Items []SmSentryPoliciesAssignmentsItemItem
    Sentry Group Policies for the Organization keyed by Network Id
    items List<SmSentryPoliciesAssignmentsItemItem>
    Sentry Group Policies for the Organization keyed by Network Id
    items SmSentryPoliciesAssignmentsItemItem[]
    Sentry Group Policies for the Organization keyed by Network Id
    items Sequence[SmSentryPoliciesAssignmentsItemItem]
    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<SmSentryPoliciesAssignmentsItemItemPolicy>
    Array of Sentry Group Policies for the Network
    NetworkId string
    The Id of the Network
    Policies []SmSentryPoliciesAssignmentsItemItemPolicy
    Array of Sentry Group Policies for the Network
    networkId String
    The Id of the Network
    policies List<SmSentryPoliciesAssignmentsItemItemPolicy>
    Array of Sentry Group Policies for the Network
    networkId string
    The Id of the Network
    policies SmSentryPoliciesAssignmentsItemItemPolicy[]
    Array of Sentry Group Policies for the Network
    network_id str
    The Id of the Network
    policies Sequence[SmSentryPoliciesAssignmentsItemItemPolicy]
    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
    GroupPolicyId string
    The Id of the Group Policy. This is associated with the network specified by the networkId.
    LastUpdatedAt string
    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
    SmNetworkId string
    The Id of the Systems Manager Network the Sentry Policy is assigned to
    Tags 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
    GroupPolicyId string
    The Id of the Group Policy. This is associated with the network specified by the networkId.
    LastUpdatedAt string
    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
    SmNetworkId string
    The Id of the Systems Manager Network the Sentry Policy is assigned to
    Tags []string
    The tags of the Sentry Policy
    createdAt String
    The creation time of the Sentry Policy
    groupNumber String
    The number of the Group Policy
    groupPolicyId String
    The Id of the Group Policy. This is associated with the network specified by the networkId.
    lastUpdatedAt String
    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
    smNetworkId String
    The Id of the Systems Manager Network the Sentry Policy is assigned to
    tags 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
    groupPolicyId string
    The Id of the Group Policy. This is associated with the network specified by the networkId.
    lastUpdatedAt string
    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
    smNetworkId string
    The Id of the Systems Manager Network the Sentry Policy is assigned to
    tags 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_id str
    The Id of the Group Policy. This is associated with the network specified by the networkId.
    last_updated_at str
    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_id str
    The Id of the Systems Manager Network the Sentry Policy is assigned to
    tags 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
    groupPolicyId String
    The Id of the Group Policy. This is associated with the network specified by the networkId.
    lastUpdatedAt String
    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
    smNetworkId String
    The Id of the Systems Manager Network the Sentry Policy is assigned to
    tags List<String>
    The tags of the Sentry Policy

    SmSentryPoliciesAssignmentsParameters, SmSentryPoliciesAssignmentsParametersArgs

    Items List<SmSentryPoliciesAssignmentsParametersItem>
    Sentry Group Policies for the Organization keyed by Network Id
    Items []SmSentryPoliciesAssignmentsParametersItem
    Sentry Group Policies for the Organization keyed by Network Id
    items List<SmSentryPoliciesAssignmentsParametersItem>
    Sentry Group Policies for the Organization keyed by Network Id
    items SmSentryPoliciesAssignmentsParametersItem[]
    Sentry Group Policies for the Organization keyed by Network Id
    items Sequence[SmSentryPoliciesAssignmentsParametersItem]
    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<SmSentryPoliciesAssignmentsParametersItemPolicy>
    Array of Sentry Group Policies for the Network
    NetworkId string
    The Id of the Network
    Policies []SmSentryPoliciesAssignmentsParametersItemPolicy
    Array of Sentry Group Policies for the Network
    networkId String
    The Id of the Network
    policies List<SmSentryPoliciesAssignmentsParametersItemPolicy>
    Array of Sentry Group Policies for the Network
    networkId string
    The Id of the Network
    policies SmSentryPoliciesAssignmentsParametersItemPolicy[]
    Array of Sentry Group Policies for the Network
    network_id str
    The Id of the Network
    policies Sequence[SmSentryPoliciesAssignmentsParametersItemPolicy]
    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

    GroupPolicyId string
    The Group Policy Id
    PolicyId string
    The Sentry Policy Id, if updating an existing Sentry Policy
    Scope string
    The scope of the Sentry Policy
    SmNetworkId string
    The Id of the Systems Manager Network
    Tags List<string>
    The tags for the Sentry Policy
    GroupPolicyId string
    The Group Policy Id
    PolicyId string
    The Sentry Policy Id, if updating an existing Sentry Policy
    Scope string
    The scope of the Sentry Policy
    SmNetworkId string
    The Id of the Systems Manager Network
    Tags []string
    The tags for the Sentry Policy
    groupPolicyId String
    The Group Policy Id
    policyId String
    The Sentry Policy Id, if updating an existing Sentry Policy
    scope String
    The scope of the Sentry Policy
    smNetworkId String
    The Id of the Systems Manager Network
    tags List<String>
    The tags for the Sentry Policy
    groupPolicyId string
    The Group Policy Id
    policyId string
    The Sentry Policy Id, if updating an existing Sentry Policy
    scope string
    The scope of the Sentry Policy
    smNetworkId string
    The Id of the Systems Manager Network
    tags string[]
    The tags for the Sentry Policy
    group_policy_id str
    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_id str
    The Id of the Systems Manager Network
    tags Sequence[str]
    The tags for the Sentry Policy
    groupPolicyId String
    The Group Policy Id
    policyId String
    The Sentry Policy Id, if updating an existing Sentry Policy
    scope String
    The scope of the Sentry Policy
    smNetworkId String
    The Id of the Systems Manager Network
    tags 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.
    meraki logo
    Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi