@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 4.03 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* User this method to get details of a specific IoT Security solution based on solution name
*
* Uses Azure REST API version 2019-08-01.
*
* Other available API versions: 2017-08-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native security [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getIotSecuritySolution(args: GetIotSecuritySolutionArgs, opts?: pulumi.InvokeOptions): Promise<GetIotSecuritySolutionResult>;
export interface GetIotSecuritySolutionArgs {
/**
* The name of the resource group within the user's subscription. The name is case insensitive.
*/
resourceGroupName: string;
/**
* The name of the IoT Security solution.
*/
solutionName: string;
}
/**
* IoT Security solution configuration and resource information.
*/
export interface GetIotSecuritySolutionResult {
/**
* List of additional workspaces
*/
readonly additionalWorkspaces?: outputs.security.AdditionalWorkspacesPropertiesResponse[];
/**
* List of resources that were automatically discovered as relevant to the security solution.
*/
readonly autoDiscoveredResources: string[];
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Disabled data sources. Disabling these data sources compromises the system.
*/
readonly disabledDataSources?: string[];
/**
* Resource display name.
*/
readonly displayName: string;
/**
* List of additional options for exporting to workspace data.
*/
readonly export?: string[];
/**
* Resource Id
*/
readonly id: string;
/**
* IoT Hub resource IDs
*/
readonly iotHubs: string[];
/**
* The resource location.
*/
readonly location?: string;
/**
* Resource name
*/
readonly name: string;
/**
* List of the configuration status for each recommendation type.
*/
readonly recommendationsConfiguration?: outputs.security.RecommendationConfigurationPropertiesResponse[];
/**
* Status of the IoT Security solution.
*/
readonly status?: string;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.security.SystemDataResponse;
/**
* Resource tags
*/
readonly tags?: {
[key: string]: string;
};
/**
* Resource type
*/
readonly type: string;
/**
* Unmasked IP address logging status
*/
readonly unmaskedIpLoggingStatus?: string;
/**
* Properties of the IoT Security solution's user defined resources.
*/
readonly userDefinedResources?: outputs.security.UserDefinedResourcesPropertiesResponse;
/**
* Workspace resource ID
*/
readonly workspace?: string;
}
/**
* User this method to get details of a specific IoT Security solution based on solution name
*
* Uses Azure REST API version 2019-08-01.
*
* Other available API versions: 2017-08-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native security [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getIotSecuritySolutionOutput(args: GetIotSecuritySolutionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetIotSecuritySolutionResult>;
export interface GetIotSecuritySolutionOutputArgs {
/**
* The name of the resource group within the user's subscription. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The name of the IoT Security solution.
*/
solutionName: pulumi.Input<string>;
}