@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 4.22 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* An API collection as represented by Microsoft Defender for APIs.
*
* Uses Azure REST API version 2023-11-15. In version 2.x of the Azure Native provider, it used API version 2023-11-15.
*/
export declare class APICollectionByAzureApiManagementService extends pulumi.CustomResource {
/**
* Get an existing APICollectionByAzureApiManagementService resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): APICollectionByAzureApiManagementService;
/**
* Returns true if the given object is an instance of APICollectionByAzureApiManagementService. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj: any): obj is APICollectionByAzureApiManagementService;
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: pulumi.Output<string>;
/**
* The base URI for this API collection. All endpoints of this API collection extend this base URI.
*/
readonly baseUrl: pulumi.Output<string>;
/**
* The resource Id of the resource from where this API collection was discovered.
*/
readonly discoveredVia: pulumi.Output<string>;
/**
* The display name of the API collection.
*/
readonly displayName: pulumi.Output<string>;
/**
* Resource name
*/
readonly name: pulumi.Output<string>;
/**
* The number of API endpoints discovered in this API collection.
*/
readonly numberOfApiEndpoints: pulumi.Output<number>;
/**
* The number of API endpoints in this API collection which are exposing sensitive data in their requests and/or responses.
*/
readonly numberOfApiEndpointsWithSensitiveDataExposed: pulumi.Output<number>;
/**
* The number of API endpoints in this API collection for which API traffic from the internet was observed.
*/
readonly numberOfExternalApiEndpoints: pulumi.Output<number>;
/**
* The number of API endpoints in this API collection that have not received any API traffic in the last 30 days.
*/
readonly numberOfInactiveApiEndpoints: pulumi.Output<number>;
/**
* The number of API endpoints in this API collection that are unauthenticated.
*/
readonly numberOfUnauthenticatedApiEndpoints: pulumi.Output<number>;
/**
* Gets the provisioning state of the API collection.
*/
readonly provisioningState: pulumi.Output<string>;
/**
* The highest priority sensitivity label from Microsoft Purview in this API collection.
*/
readonly sensitivityLabel: pulumi.Output<string>;
/**
* Resource type
*/
readonly type: pulumi.Output<string>;
/**
* Create a APICollectionByAzureApiManagementService resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name: string, args: APICollectionByAzureApiManagementServiceArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* The set of arguments for constructing a APICollectionByAzureApiManagementService resource.
*/
export interface APICollectionByAzureApiManagementServiceArgs {
/**
* API revision identifier. Must be unique in the API Management service instance. Non-current revision has ;rev=n as a suffix where n is the revision number.
*/
apiId?: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The name of the API Management service.
*/
serviceName: pulumi.Input<string>;
}