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

meraki.organizations.getSmSentryPoliciesAssignmentsByNetwork

Explore with Pulumi AI

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

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as meraki from "@pulumi/meraki";
    
    const example = meraki.organizations.getSmSentryPoliciesAssignmentsByNetwork({
        endingBefore: "string",
        networkIds: ["string"],
        organizationId: "string",
        perPage: 1,
        startingAfter: "string",
    });
    export const merakiOrganizationsSmSentryPoliciesAssignmentsByNetworkExample = example.then(example => example.items);
    
    import pulumi
    import pulumi_meraki as meraki
    
    example = meraki.organizations.get_sm_sentry_policies_assignments_by_network(ending_before="string",
        network_ids=["string"],
        organization_id="string",
        per_page=1,
        starting_after="string")
    pulumi.export("merakiOrganizationsSmSentryPoliciesAssignmentsByNetworkExample", example.items)
    
    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.GetSmSentryPoliciesAssignmentsByNetwork(ctx, &organizations.GetSmSentryPoliciesAssignmentsByNetworkArgs{
    			EndingBefore: pulumi.StringRef("string"),
    			NetworkIds: []string{
    				"string",
    			},
    			OrganizationId: "string",
    			PerPage:        pulumi.IntRef(1),
    			StartingAfter:  pulumi.StringRef("string"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("merakiOrganizationsSmSentryPoliciesAssignmentsByNetworkExample", example.Items)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Meraki = Pulumi.Meraki;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Meraki.Organizations.GetSmSentryPoliciesAssignmentsByNetwork.Invoke(new()
        {
            EndingBefore = "string",
            NetworkIds = new[]
            {
                "string",
            },
            OrganizationId = "string",
            PerPage = 1,
            StartingAfter = "string",
        });
    
        return new Dictionary<string, object?>
        {
            ["merakiOrganizationsSmSentryPoliciesAssignmentsByNetworkExample"] = example.Apply(getSmSentryPoliciesAssignmentsByNetworkResult => getSmSentryPoliciesAssignmentsByNetworkResult.Items),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.meraki.organizations.OrganizationsFunctions;
    import com.pulumi.meraki.organizations.inputs.GetSmSentryPoliciesAssignmentsByNetworkArgs;
    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) {
            final var example = OrganizationsFunctions.getSmSentryPoliciesAssignmentsByNetwork(GetSmSentryPoliciesAssignmentsByNetworkArgs.builder()
                .endingBefore("string")
                .networkIds("string")
                .organizationId("string")
                .perPage(1)
                .startingAfter("string")
                .build());
    
            ctx.export("merakiOrganizationsSmSentryPoliciesAssignmentsByNetworkExample", example.applyValue(getSmSentryPoliciesAssignmentsByNetworkResult -> getSmSentryPoliciesAssignmentsByNetworkResult.items()));
        }
    }
    
    variables:
      example:
        fn::invoke:
          Function: meraki:organizations:getSmSentryPoliciesAssignmentsByNetwork
          Arguments:
            endingBefore: string
            networkIds:
              - string
            organizationId: string
            perPage: 1
            startingAfter: string
    outputs:
      merakiOrganizationsSmSentryPoliciesAssignmentsByNetworkExample: ${example.items}
    

    Using getSmSentryPoliciesAssignmentsByNetwork

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getSmSentryPoliciesAssignmentsByNetwork(args: GetSmSentryPoliciesAssignmentsByNetworkArgs, opts?: InvokeOptions): Promise<GetSmSentryPoliciesAssignmentsByNetworkResult>
    function getSmSentryPoliciesAssignmentsByNetworkOutput(args: GetSmSentryPoliciesAssignmentsByNetworkOutputArgs, opts?: InvokeOptions): Output<GetSmSentryPoliciesAssignmentsByNetworkResult>
    def get_sm_sentry_policies_assignments_by_network(ending_before: Optional[str] = None,
                                                      network_ids: Optional[Sequence[str]] = None,
                                                      organization_id: Optional[str] = None,
                                                      per_page: Optional[int] = None,
                                                      starting_after: Optional[str] = None,
                                                      opts: Optional[InvokeOptions] = None) -> GetSmSentryPoliciesAssignmentsByNetworkResult
    def get_sm_sentry_policies_assignments_by_network_output(ending_before: Optional[pulumi.Input[str]] = None,
                                                      network_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                                      organization_id: Optional[pulumi.Input[str]] = None,
                                                      per_page: Optional[pulumi.Input[int]] = None,
                                                      starting_after: Optional[pulumi.Input[str]] = None,
                                                      opts: Optional[InvokeOptions] = None) -> Output[GetSmSentryPoliciesAssignmentsByNetworkResult]
    func GetSmSentryPoliciesAssignmentsByNetwork(ctx *Context, args *GetSmSentryPoliciesAssignmentsByNetworkArgs, opts ...InvokeOption) (*GetSmSentryPoliciesAssignmentsByNetworkResult, error)
    func GetSmSentryPoliciesAssignmentsByNetworkOutput(ctx *Context, args *GetSmSentryPoliciesAssignmentsByNetworkOutputArgs, opts ...InvokeOption) GetSmSentryPoliciesAssignmentsByNetworkResultOutput

    > Note: This function is named GetSmSentryPoliciesAssignmentsByNetwork in the Go SDK.

    public static class GetSmSentryPoliciesAssignmentsByNetwork 
    {
        public static Task<GetSmSentryPoliciesAssignmentsByNetworkResult> InvokeAsync(GetSmSentryPoliciesAssignmentsByNetworkArgs args, InvokeOptions? opts = null)
        public static Output<GetSmSentryPoliciesAssignmentsByNetworkResult> Invoke(GetSmSentryPoliciesAssignmentsByNetworkInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetSmSentryPoliciesAssignmentsByNetworkResult> getSmSentryPoliciesAssignmentsByNetwork(GetSmSentryPoliciesAssignmentsByNetworkArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: meraki:organizations/getSmSentryPoliciesAssignmentsByNetwork:getSmSentryPoliciesAssignmentsByNetwork
      arguments:
        # arguments dictionary

    The following arguments are supported:

    OrganizationId string
    organizationId path parameter. Organization ID
    EndingBefore string
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    NetworkIds List<string>
    networkIds query parameter. Optional parameter to filter Sentry Policies by Network Id
    PerPage int
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 50.
    StartingAfter string
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    OrganizationId string
    organizationId path parameter. Organization ID
    EndingBefore string
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    NetworkIds []string
    networkIds query parameter. Optional parameter to filter Sentry Policies by Network Id
    PerPage int
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 50.
    StartingAfter string
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    organizationId String
    organizationId path parameter. Organization ID
    endingBefore String
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    networkIds List<String>
    networkIds query parameter. Optional parameter to filter Sentry Policies by Network Id
    perPage Integer
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 50.
    startingAfter String
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    organizationId string
    organizationId path parameter. Organization ID
    endingBefore string
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    networkIds string[]
    networkIds query parameter. Optional parameter to filter Sentry Policies by Network Id
    perPage number
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 50.
    startingAfter string
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    organization_id str
    organizationId path parameter. Organization ID
    ending_before str
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    network_ids Sequence[str]
    networkIds query parameter. Optional parameter to filter Sentry Policies by Network Id
    per_page int
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 50.
    starting_after str
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    organizationId String
    organizationId path parameter. Organization ID
    endingBefore String
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    networkIds List<String>
    networkIds query parameter. Optional parameter to filter Sentry Policies by Network Id
    perPage Number
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 50.
    startingAfter String
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.

    getSmSentryPoliciesAssignmentsByNetwork Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Items List<GetSmSentryPoliciesAssignmentsByNetworkItem>
    Array of ResponseSmGetOrganizationSmSentryPoliciesAssignmentsByNetwork
    OrganizationId string
    organizationId path parameter. Organization ID
    EndingBefore string
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    NetworkIds List<string>
    networkIds query parameter. Optional parameter to filter Sentry Policies by Network Id
    PerPage int
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 50.
    StartingAfter string
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    Id string
    The provider-assigned unique ID for this managed resource.
    Items []GetSmSentryPoliciesAssignmentsByNetworkItem
    Array of ResponseSmGetOrganizationSmSentryPoliciesAssignmentsByNetwork
    OrganizationId string
    organizationId path parameter. Organization ID
    EndingBefore string
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    NetworkIds []string
    networkIds query parameter. Optional parameter to filter Sentry Policies by Network Id
    PerPage int
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 50.
    StartingAfter string
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    id String
    The provider-assigned unique ID for this managed resource.
    items List<GetSmSentryPoliciesAssignmentsByNetworkItem>
    Array of ResponseSmGetOrganizationSmSentryPoliciesAssignmentsByNetwork
    organizationId String
    organizationId path parameter. Organization ID
    endingBefore String
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    networkIds List<String>
    networkIds query parameter. Optional parameter to filter Sentry Policies by Network Id
    perPage Integer
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 50.
    startingAfter String
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    id string
    The provider-assigned unique ID for this managed resource.
    items GetSmSentryPoliciesAssignmentsByNetworkItem[]
    Array of ResponseSmGetOrganizationSmSentryPoliciesAssignmentsByNetwork
    organizationId string
    organizationId path parameter. Organization ID
    endingBefore string
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    networkIds string[]
    networkIds query parameter. Optional parameter to filter Sentry Policies by Network Id
    perPage number
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 50.
    startingAfter string
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    id str
    The provider-assigned unique ID for this managed resource.
    items Sequence[GetSmSentryPoliciesAssignmentsByNetworkItem]
    Array of ResponseSmGetOrganizationSmSentryPoliciesAssignmentsByNetwork
    organization_id str
    organizationId path parameter. Organization ID
    ending_before str
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    network_ids Sequence[str]
    networkIds query parameter. Optional parameter to filter Sentry Policies by Network Id
    per_page int
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 50.
    starting_after str
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    id String
    The provider-assigned unique ID for this managed resource.
    items List<Property Map>
    Array of ResponseSmGetOrganizationSmSentryPoliciesAssignmentsByNetwork
    organizationId String
    organizationId path parameter. Organization ID
    endingBefore String
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    networkIds List<String>
    networkIds query parameter. Optional parameter to filter Sentry Policies by Network Id
    perPage Number
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 50.
    startingAfter String
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.

    Supporting Types

    GetSmSentryPoliciesAssignmentsByNetworkItem

    Items List<GetSmSentryPoliciesAssignmentsByNetworkItemItem>
    Sentry Group Policies for the Organization keyed by the Network or Locale Id the Policy belongs to
    Meta GetSmSentryPoliciesAssignmentsByNetworkItemMeta
    Metadata relevant to the paginated dataset
    Items []GetSmSentryPoliciesAssignmentsByNetworkItemItem
    Sentry Group Policies for the Organization keyed by the Network or Locale Id the Policy belongs to
    Meta GetSmSentryPoliciesAssignmentsByNetworkItemMeta
    Metadata relevant to the paginated dataset
    items List<GetSmSentryPoliciesAssignmentsByNetworkItemItem>
    Sentry Group Policies for the Organization keyed by the Network or Locale Id the Policy belongs to
    meta GetSmSentryPoliciesAssignmentsByNetworkItemMeta
    Metadata relevant to the paginated dataset
    items GetSmSentryPoliciesAssignmentsByNetworkItemItem[]
    Sentry Group Policies for the Organization keyed by the Network or Locale Id the Policy belongs to
    meta GetSmSentryPoliciesAssignmentsByNetworkItemMeta
    Metadata relevant to the paginated dataset
    items Sequence[GetSmSentryPoliciesAssignmentsByNetworkItemItem]
    Sentry Group Policies for the Organization keyed by the Network or Locale Id the Policy belongs to
    meta GetSmSentryPoliciesAssignmentsByNetworkItemMeta
    Metadata relevant to the paginated dataset
    items List<Property Map>
    Sentry Group Policies for the Organization keyed by the Network or Locale Id the Policy belongs to
    meta Property Map
    Metadata relevant to the paginated dataset

    GetSmSentryPoliciesAssignmentsByNetworkItemItem

    NetworkId string
    The Id of the Network
    Policies List<GetSmSentryPoliciesAssignmentsByNetworkItemItemPolicy>
    Array of Sentry Group Policies for the Network
    NetworkId string
    The Id of the Network
    Policies []GetSmSentryPoliciesAssignmentsByNetworkItemItemPolicy
    Array of Sentry Group Policies for the Network
    networkId String
    The Id of the Network
    policies List<GetSmSentryPoliciesAssignmentsByNetworkItemItemPolicy>
    Array of Sentry Group Policies for the Network
    networkId string
    The Id of the Network
    policies GetSmSentryPoliciesAssignmentsByNetworkItemItemPolicy[]
    Array of Sentry Group Policies for the Network
    network_id str
    The Id of the Network
    policies Sequence[GetSmSentryPoliciesAssignmentsByNetworkItemItemPolicy]
    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

    GetSmSentryPoliciesAssignmentsByNetworkItemItemPolicy

    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

    GetSmSentryPoliciesAssignmentsByNetworkItemMeta

    Counts GetSmSentryPoliciesAssignmentsByNetworkItemMetaCounts
    Counts relating to the paginated dataset
    Counts GetSmSentryPoliciesAssignmentsByNetworkItemMetaCounts
    Counts relating to the paginated dataset
    counts GetSmSentryPoliciesAssignmentsByNetworkItemMetaCounts
    Counts relating to the paginated dataset
    counts GetSmSentryPoliciesAssignmentsByNetworkItemMetaCounts
    Counts relating to the paginated dataset
    counts GetSmSentryPoliciesAssignmentsByNetworkItemMetaCounts
    Counts relating to the paginated dataset
    counts Property Map
    Counts relating to the paginated dataset

    GetSmSentryPoliciesAssignmentsByNetworkItemMetaCounts

    items Property Map
    Counts relating to the paginated items

    GetSmSentryPoliciesAssignmentsByNetworkItemMetaCountsItems

    Remaining int
    The number of items in the dataset that are available on subsequent pages
    Total int
    The total number of items in the dataset
    Remaining int
    The number of items in the dataset that are available on subsequent pages
    Total int
    The total number of items in the dataset
    remaining Integer
    The number of items in the dataset that are available on subsequent pages
    total Integer
    The total number of items in the dataset
    remaining number
    The number of items in the dataset that are available on subsequent pages
    total number
    The total number of items in the dataset
    remaining int
    The number of items in the dataset that are available on subsequent pages
    total int
    The total number of items in the dataset
    remaining Number
    The number of items in the dataset that are available on subsequent pages
    total Number
    The total number of items in the dataset

    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