@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.5 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Get the list of advanced security objects
*
* Uses Azure REST API version 2025-02-06-preview.
*
* Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function listLocalRulestackAdvancedSecurityObjects(args: ListLocalRulestackAdvancedSecurityObjectsArgs, opts?: pulumi.InvokeOptions): Promise<ListLocalRulestackAdvancedSecurityObjectsResult>;
export interface ListLocalRulestackAdvancedSecurityObjectsArgs {
/**
* LocalRulestack resource name
*/
localRulestackName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
skip?: string;
top?: number;
type: string;
}
/**
* advanced security object
*/
export interface ListLocalRulestackAdvancedSecurityObjectsResult {
/**
* next link
*/
readonly nextLink?: string;
/**
* response value
*/
readonly value: outputs.cloudngfw.AdvSecurityObjectModelResponse;
}
/**
* Get the list of advanced security objects
*
* Uses Azure REST API version 2025-02-06-preview.
*
* Other available API versions: 2023-09-01, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-05-23, 2025-07-07-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native cloudngfw [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function listLocalRulestackAdvancedSecurityObjectsOutput(args: ListLocalRulestackAdvancedSecurityObjectsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListLocalRulestackAdvancedSecurityObjectsResult>;
export interface ListLocalRulestackAdvancedSecurityObjectsOutputArgs {
/**
* LocalRulestack resource name
*/
localRulestackName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
skip?: pulumi.Input<string>;
top?: pulumi.Input<number>;
type: pulumi.Input<string>;
}