import * as pulumi from "@pulumi/pulumi"; /** * Provides a Datadog Agentless Scanning GCP scan options resource. This can be used to activate and configure Agentless scan options for a GCP project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as datadog from "@pulumi/datadog"; * * // Configure agentless scanning for a GCP project * const example = new datadog.AgentlessScanningGcpScanOptions("example", { * gcpProjectId: "company-project-prod", * vulnContainersOs: true, * vulnHostOs: true, * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * !/bin/sh * * Import existing agentless scanning GCP scan options by GCP project ID * * ```sh * $ pulumi import datadog:index/agentlessScanningGcpScanOptions:AgentlessScanningGcpScanOptions example company-project-prod * ``` */ export declare class AgentlessScanningGcpScanOptions extends pulumi.CustomResource { /** * Get an existing AgentlessScanningGcpScanOptions 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 state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: AgentlessScanningGcpScanOptionsState, opts?: pulumi.CustomResourceOptions): AgentlessScanningGcpScanOptions; /** * Returns true if the given object is an instance of AgentlessScanningGcpScanOptions. 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 AgentlessScanningGcpScanOptions; /** * The GCP project ID for which agentless scanning is configured. Must be a valid GCP project ID: 6–30 characters, start with a lowercase letter, and include only lowercase letters, digits, or hyphens. */ readonly gcpProjectId: pulumi.Output; /** * Indicates if scanning for vulnerabilities in containers is enabled. */ readonly vulnContainersOs: pulumi.Output; /** * Indicates if scanning for vulnerabilities in hosts is enabled. */ readonly vulnHostOs: pulumi.Output; /** * Create a AgentlessScanningGcpScanOptions 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: AgentlessScanningGcpScanOptionsArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering AgentlessScanningGcpScanOptions resources. */ export interface AgentlessScanningGcpScanOptionsState { /** * The GCP project ID for which agentless scanning is configured. Must be a valid GCP project ID: 6–30 characters, start with a lowercase letter, and include only lowercase letters, digits, or hyphens. */ gcpProjectId?: pulumi.Input; /** * Indicates if scanning for vulnerabilities in containers is enabled. */ vulnContainersOs?: pulumi.Input; /** * Indicates if scanning for vulnerabilities in hosts is enabled. */ vulnHostOs?: pulumi.Input; } /** * The set of arguments for constructing a AgentlessScanningGcpScanOptions resource. */ export interface AgentlessScanningGcpScanOptionsArgs { /** * The GCP project ID for which agentless scanning is configured. Must be a valid GCP project ID: 6–30 characters, start with a lowercase letter, and include only lowercase letters, digits, or hyphens. */ gcpProjectId: pulumi.Input; /** * Indicates if scanning for vulnerabilities in containers is enabled. */ vulnContainersOs: pulumi.Input; /** * Indicates if scanning for vulnerabilities in hosts is enabled. */ vulnHostOs: pulumi.Input; }