@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
15 lines (14 loc) • 828 B
TypeScript
/**
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
* This product includes software developed at Datadog (https://www.datadoghq.com/).
* Copyright 2020-Present Datadog, Inc.
*/
import { UnparsedObject } from "../../datadog-api-client-common/util";
/**
* The type of cloud resource for an agentless host.
*/
export declare type CsmAgentlessHostResourceType = typeof AWS_EC2_INSTANCE | typeof AZURE_VIRTUAL_MACHINE_INSTANCE | typeof GCP_COMPUTE_INSTANCE | typeof OCI_INSTANCE | UnparsedObject;
export declare const AWS_EC2_INSTANCE = "aws_ec2_instance";
export declare const AZURE_VIRTUAL_MACHINE_INSTANCE = "azure_virtual_machine_instance";
export declare const GCP_COMPUTE_INSTANCE = "gcp_compute_instance";
export declare const OCI_INSTANCE = "oci_instance";