import { OAuth2Client, JWT, Compute, UserRefreshClient, BaseExternalAccountClient, GaxiosResponseWithHTTP2, GoogleConfigurable, MethodOptions, StreamMethodOptions, GlobalOptions, GoogleAuth, BodyResponseCallback, APIRequestContext } from 'googleapis-common';
import { Readable } from 'stream';
export declare namespace workloadmanager_v1 {
    export interface Options extends GlobalOptions {
        version: 'v1';
    }
    interface StandardParameters {
        /**
         * Auth client or API Key for the request
         */
        auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient | BaseExternalAccountClient | GoogleAuth;
        /**
         * V1 error format.
         */
        '$.xgafv'?: string;
        /**
         * OAuth access token.
         */
        access_token?: string;
        /**
         * Data format for response.
         */
        alt?: string;
        /**
         * JSONP
         */
        callback?: string;
        /**
         * Selector specifying which fields to include in a partial response.
         */
        fields?: string;
        /**
         * API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
         */
        key?: string;
        /**
         * OAuth 2.0 token for the current user.
         */
        oauth_token?: string;
        /**
         * Returns response with indentations and line breaks.
         */
        prettyPrint?: boolean;
        /**
         * Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
         */
        quotaUser?: string;
        /**
         * Legacy upload protocol for media (e.g. "media", "multipart").
         */
        uploadType?: string;
        /**
         * Upload protocol for media (e.g. "raw", "multipart").
         */
        upload_protocol?: string;
    }
    /**
     * Workload Manager API
     *
     * Workload Manager is a service that provides tooling for enterprise workloads to automate the deployment and validation of your workloads against best practices and recommendations.
     *
     * @example
     * ```js
     * const {google} = require('googleapis');
     * const workloadmanager = google.workloadmanager('v1');
     * ```
     */
    export class Workloadmanager {
        context: APIRequestContext;
        projects: Resource$Projects;
        constructor(options: GlobalOptions, google?: GoogleConfigurable);
    }
    /**
     * Active Directory details.
     */
    export interface Schema$ActiveDirectory {
        /**
         * Optional. DNS IP address.
         */
        dnsAddress?: string | null;
        /**
         * Optional. Human readable form of a domain such as `example.com`.
         */
        domain?: string | null;
        /**
         * Optional. Domain username.
         */
        domainUsername?: string | null;
        /**
         * Required. Secret Manager secret.
         */
        secretManagerSecret?: string | null;
        /**
         * Required. Active Directory type.
         */
        type?: string | null;
    }
    /**
     * The Actuation object represents the bootstrap state and output results of deployed infrastructure and software.
     */
    export interface Schema$Actuation {
        /**
         * Output only. Actuation output.
         */
        actuationOutput?: Schema$ActuationOutput;
        /**
         * Output only. Deployment output.
         */
        deploymentOutput?: Schema$DeploymentOutput[];
        /**
         * Output only. End time stamp.
         */
        endTime?: string | null;
        /**
         * The name of the actuation resource. The format is projects/{project\}/locations/{location\}/deployments/{deployment\}/actuations/{actuation\}.
         */
        name?: string | null;
        /**
         * Output only. Start time stamp.
         */
        startTime?: string | null;
        /**
         * Output only. Actuation state.
         */
        state?: string | null;
    }
    /**
     * Message for output of actuation.
     */
    export interface Schema$ActuationOutput {
        /**
         * A link to the Cloud Storage file that stores build logs.
         */
        actuateLogs?: string | null;
        /**
         * Output only. Error message returned from Ansible.
         */
        ansibleError?: string | null;
        /**
         * Output only. Failed task name returned from Ansible.
         */
        ansibleFailedTask?: string[] | null;
        /**
         * Reference to the Blueprint Controller deployment and revision resource.
         */
        blueprintId?: string | null;
        /**
         * Cloud Build instance UUID associated with this revision, without any suffix or prefix
         */
        cloudbuildId?: string | null;
        /**
         * Output only. Code describing any errors that may have occurred. If not specified, there is no error in actuation.
         */
        errorCode?: string | null;
        /**
         * A link to the actuation Cloud Build log.
         */
        errorLogs?: string | null;
        /**
         * Output only. Whether the error message is user facing. If true, the error message will be shown in the UI.
         */
        hasUserFacingErrorMsg?: boolean | null;
        /**
         * Output only. Error message returned from Terraform.
         */
        terraformError?: string | null;
        /**
         * Reference to the Terraform template used.
         */
        terraformTemplate?: string | null;
    }
    /**
     * An AgentCommand specifies a one-time executable program for the agent to run.
     */
    export interface Schema$AgentCommand {
        /**
         * The name of the agent one-time executable that will be invoked.
         */
        command?: string | null;
        /**
         * A map of key/value pairs that can be used to specify additional one-time executable settings.
         */
        parameters?: {
            [key: string]: string;
        } | null;
    }
    /**
     * Agent status.
     */
    export interface Schema$AgentStates {
        /**
         * Optional. The available version of the agent in artifact registry.
         */
        availableVersion?: string | null;
        /**
         * Optional. HANA monitoring metrics of the agent.
         */
        hanaMonitoring?: Schema$ServiceStates;
        /**
         * Optional. The installed version of the agent on the host.
         */
        installedVersion?: string | null;
        /**
         * Optional. Whether the agent is fully enabled. If false, the agent is has some issues.
         */
        isFullyEnabled?: boolean | null;
        /**
         * Optional. The Process metrics of the agent.
         */
        processMetrics?: Schema$ServiceStates;
        /**
         * Optional. The System discovery metrics of the agent.
         */
        systemDiscovery?: Schema$ServiceStates;
    }
    /**
     * The schema of agent status data.
     */
    export interface Schema$AgentStatus {
        /**
         * Output only. The name of the agent.
         */
        agentName?: string | null;
        /**
         * Output only. The available version of the agent in artifact registry.
         */
        availableVersion?: string | null;
        /**
         * Output only. Whether the agent has full access to Cloud APIs.
         */
        cloudApiAccessFullScopesGranted?: string | null;
        /**
         * Output only. The error message for the agent configuration if invalid.
         */
        configurationErrorMessage?: string | null;
        /**
         * Output only. The path to the agent configuration file.
         */
        configurationFilePath?: string | null;
        /**
         * Output only. Whether the agent configuration is valid.
         */
        configurationValid?: string | null;
        /**
         * Output only. The installed version of the agent on the host.
         */
        installedVersion?: string | null;
        /**
         * Output only. The URI of the instance. Format: projects//zones//instances/
         */
        instanceUri?: string | null;
        /**
         * Output only. The kernel version of the system.
         */
        kernelVersion?: Schema$SapDiscoveryResourceInstancePropertiesKernelVersion;
        /**
         * Output only. Optional references to public documentation.
         */
        references?: Schema$AgentStatusReference[];
        /**
         * Output only. The services (process metrics, host metrics, etc.).
         */
        services?: Schema$AgentStatusServiceStatus[];
        /**
         * Output only. Whether the agent service is enabled in systemd.
         */
        systemdServiceEnabled?: string | null;
        /**
         * Output only. Whether the agent service is running in systemd.
         */
        systemdServiceRunning?: string | null;
    }
    /**
     * The configuration value.
     */
    export interface Schema$AgentStatusConfigValue {
        /**
         * Output only. Whether the configuration value is the default value or overridden.
         */
        isDefault?: boolean | null;
        /**
         * Output only. The name of the configuration value.
         */
        name?: string | null;
        /**
         * Output only. The value of the configuration value.
         */
        value?: string | null;
    }
    /**
     * The IAM permission status.
     */
    export interface Schema$AgentStatusIAMPermission {
        /**
         * Output only. Whether the permission is granted.
         */
        granted?: string | null;
        /**
         * Output only. The name of the permission.
         */
        name?: string | null;
    }
    /**
     * The reference to public documentation.
     */
    export interface Schema$AgentStatusReference {
        /**
         * Output only. The name of the reference.
         */
        name?: string | null;
        /**
         * Output only. The URL of the reference.
         */
        url?: string | null;
    }
    /**
     * The status of a service (process metrics, host metrics, etc.).
     */
    export interface Schema$AgentStatusServiceStatus {
        /**
         * Output only. The configuration values for the service.
         */
        configValues?: Schema$AgentStatusConfigValue[];
        /**
         * Output only. The error message for the service if it is not fully functional.
         */
        errorMessage?: string | null;
        /**
         * Output only. Whether the service is fully functional (all checks passed).
         */
        fullyFunctional?: string | null;
        /**
         * Output only. The permissions required for the service.
         */
        iamPermissions?: Schema$AgentStatusIAMPermission[];
        /**
         * Output only. The name of the service.
         */
        name?: string | null;
        /**
         * Output only. The state of the service (enabled or disabled in the configuration).
         */
        state?: string | null;
        /**
         * Output only. The message to display when the service state is unspecified.
         */
        unspecifiedStateMessage?: string | null;
    }
    /**
     * Message for SAP instance details.
     */
    export interface Schema$AppDetails {
        /**
         * Optional. Instance ID for app.
         */
        appInstanceId?: string | null;
        /**
         * Application service account. Let customers bring their own service account for the application.
         */
        appServiceAccount?: string | null;
        /**
         * Optional. Customized VM names.
         */
        appVmNames?: string[] | null;
        /**
         * Required. Image for the ASCS server.
         */
        ascsImage?: string | null;
        /**
         * Optional. Instance ID for ASCS.
         */
        ascsInstanceId?: string | null;
        /**
         * Required. ASCS machine type.
         */
        ascsMachineType?: string | null;
        /**
         * ASCS service account. Let customers bring their own service account for ASCS.
         */
        ascsServiceAccount?: string | null;
        /**
         * Optional. ASCS VM name.
         */
        ascsVm?: string | null;
        /**
         * Optional. Instance ID for ERS.
         */
        ersInstanceId?: string | null;
        /**
         * Optional. ERS VM name.
         */
        ersVm?: string | null;
        /**
         * Required. Image for the app server and ASCS server.
         */
        image?: string | null;
        /**
         * Required. Machine type.
         */
        machineType?: string | null;
        /**
         * Required. Secret Manager secret.
         */
        secretManagerSecret?: string | null;
        /**
         * Optional. Storage location.
         */
        sharedStorage?: string | null;
        /**
         * Required. The SAP SID is a three-digit server-specific unique identification code.
         */
        sid?: string | null;
        /**
         * Required. VMs multiplier.
         */
        vmsMultiplier?: number | null;
    }
    /**
     * Backup properties.
     */
    export interface Schema$BackupProperties {
        /**
         * Output only. The state of the latest backup.
         */
        latestBackupStatus?: string | null;
        /**
         * The time when the latest backup was performed.
         */
        latestBackupTime?: string | null;
    }
    /**
     * BigQuery destination for evaluation results.
     */
    export interface Schema$BigQueryDestination {
        /**
         * Optional. Determines if a new results table will be created when an Execution is created.
         */
        createNewResultsTable?: boolean | null;
        /**
         * Optional. Destination dataset to save evaluation results.
         */
        destinationDataset?: string | null;
    }
    /**
     * The request message for Operations.CancelOperation.
     */
    export interface Schema$CancelOperationRequest {
    }
    /**
     * The resource on GCP
     */
    export interface Schema$CloudResource {
        /**
         * Output only. All instance properties.
         */
        instanceProperties?: Schema$InstanceProperties;
        /**
         * Output only.
         */
        kind?: string | null;
        /**
         * Output only. resource name Example: compute.googleapis.com/projects/wlm-obs-dev/zones/us-central1-a/instances/sap-pri
         */
        name?: string | null;
    }
    /**
     * Command specifies the type of command to execute.
     */
    export interface Schema$Command {
        /**
         * AgentCommand specifies a one-time executable program for the agent to run.
         */
        agentCommand?: Schema$AgentCommand;
        /**
         * ShellCommand is invoked via the agent's command line executor.
         */
        shellCommand?: Schema$ShellCommand;
    }
    /**
     * HealthCondition contains the detailed health check of each component.
     */
    export interface Schema$ComponentHealth {
        /**
         * The component of a workload.
         */
        component?: string | null;
        /**
         * The detailed health checks of the component.
         */
        componentHealthChecks?: Schema$HealthCheck[];
        /**
         * Output only. The type of the component health.
         */
        componentHealthType?: string | null;
        /**
         * Output only. The health state of the component.
         */
        state?: string | null;
        /**
         * Sub component health.
         */
        subComponentsHealth?: Schema$ComponentHealth[];
    }
    /**
     * Database details.
     */
    export interface Schema$Database {
        /**
         * Required. Disk type.
         */
        diskType?: string | null;
        /**
         * Optional. Only useful for Linux High Availability setup.
         */
        floatingIpAddress?: string | null;
        /**
         * Required. Machine type.
         */
        machineType?: string | null;
        /**
         * Optional. The name of a secondary-sole-tenant node/node group.
         */
        secondarySoleTenantNode?: string | null;
        /**
         * Optional. The type of a secondary-sole-tenant node/node group. E.g., compute.googleapis.com/node-name.
         */
        secondarySoleTenantNodeType?: string | null;
        /**
         * Required. Secret Manager secret.
         */
        secretManagerSecret?: string | null;
        /**
         * Required. Whether simultaneous multithreading is enabled or not.
         */
        smt?: boolean | null;
        /**
         * Optional. The name of a primary sole-tenant node/node group.
         */
        soleTenantNode?: string | null;
        /**
         * Optional. The type of a primary sole-tenant node/node group. E.g., compute.googleapis.com/node-name.
         */
        soleTenantNodeType?: string | null;
        /**
         * Required. Whether to have TempDB on local SSD.
         */
        tempdbOnSsd?: boolean | null;
        /**
         * Required. SHARED or SOLE_TENANT.
         */
        tenancyModel?: string | null;
    }
    /**
     * Message for SAP instance details.
     */
    export interface Schema$DatabaseDetails {
        /**
         * Database service account. Let customers bring their own SA for the database.
         */
        databaseServiceAccount?: string | null;
        /**
         * Required. Disk type.
         */
        diskType?: string | null;
        /**
         * Required. Image for the database server.
         */
        image?: string | null;
        /**
         * Optional. Instance ID.
         */
        instanceId?: string | null;
        /**
         * Required. Machine type.
         */
        machineType?: string | null;
        /**
         * Optional. Primary DB VM name.
         */
        primaryDbVm?: string | null;
        /**
         * Optional. Secondary DB VM name.
         */
        secondaryDbVm?: string | null;
        /**
         * Required. Secret Manager secret.
         */
        secretManagerSecret?: string | null;
        /**
         * Required. The SID is a three-digit server-specific unique identification code.
         */
        sid?: string | null;
    }
    /**
     * Database Properties.
     */
    export interface Schema$DatabaseProperties {
        /**
         * Output only. Backup properties.
         */
        backupProperties?: Schema$BackupProperties;
        /**
         * Output only. Type of the database. `HANA`, `DB2`, etc.
         */
        databaseType?: string | null;
    }
    /**
     * The Deployment object represents user intent for deploying a specific type of workload.
     */
    export interface Schema$Deployment {
        /**
         * Output only. Create time stamp.
         */
        createTime?: string | null;
        /**
         * Description of the deployment.
         */
        description?: string | null;
        /**
         * The name of the deployment resource. The format is 'projects/{project_id\}/locations/{location_id\}/deployments/{deployment_id\}'.
         */
        name?: string | null;
        /**
         * SAP system workload input.
         */
        sapSystemS4Config?: Schema$SapSystemS4Config;
        /**
         * User-specified Service Account (SA) credentials to be used for Cloud Build. Format: `projects/{projectID\}/serviceAccounts/{serviceAccount\}` The default Cloud Build SA will be used initially if this field is not set during deployment creation.
         */
        serviceAccount?: string | null;
        /**
         * MS SQL workload input.
         */
        sqlServerWorkload?: Schema$SqlServerWorkload;
        /**
         * Output only. Current state of the deployment.
         */
        state?: string | null;
        /**
         * Optional. terraform_variables represents all the Terraform variables for the deployment workload. The key is the name of the Terraform variable, and the value is the TerraformVariable. For example: { "project_id": { "input_value": { "string_value": "my-project-id" \} \}, "zone": { "input_value": { "string_value": "us-central1-a" \} \} \}
         */
        terraformVariables?: {
            [key: string]: Schema$TerraformVariable;
        } | null;
        /**
         * Output only. Update time stamp.
         */
        updateTime?: string | null;
        /**
         * Optional. The user-specified Cloud Build worker pool resource in which the Cloud Build job will execute. Format: `projects/{project\}/locations/{location\}/workerPools/{workerPoolId\}`. If this field is unspecified, the default Cloud Build worker pool will be used.
         */
        workerPool?: string | null;
        /**
         * Optional. Workload type of the deployment.
         */
        workloadType?: string | null;
    }
    /**
     * Message for output of deployment resource.
     */
    export interface Schema$DeploymentOutput {
        /**
         * Name of the resource.
         */
        name?: string | null;
        /**
         * Type of the resource.
         */
        type?: string | null;
    }
    /**
     * A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); \}
     */
    export interface Schema$Empty {
    }
    /**
     * Represents a Workload Manager Evaluation configuration. An Evaluation defines a set of rules to be validated against a scope of Cloud resources.
     */
    export interface Schema$Evaluation {
        /**
         * Optional. The BigQuery destination for detailed evaluation results. If this field is specified, the results of each evaluation execution are exported to BigQuery.
         */
        bigQueryDestination?: Schema$BigQueryDestination;
        /**
         * Output only. [Output only] Create time stamp.
         */
        createTime?: string | null;
        /**
         * The Cloud Storage bucket name for custom rules.
         */
        customRulesBucket?: string | null;
        /**
         * Description of the Evaluation.
         */
        description?: string | null;
        /**
         * Evaluation type.
         */
        evaluationType?: string | null;
        /**
         * Optional. Immutable. Customer-managed encryption key name, in the format projects/x/locations/x/keyRings/x/cryptoKeys/x. The key will be used for CMEK encryption of the evaluation resource.
         */
        kmsKey?: string | null;
        /**
         * Labels as key value pairs.
         */
        labels?: {
            [key: string]: string;
        } | null;
        /**
         * Name of resource that has the form `projects/{project_id\}/locations/{location_id\}/evaluations/{evaluation_id\}`.
         */
        name?: string | null;
        /**
         * Resource filter for an evaluation defining the scope of resources to be evaluated.
         */
        resourceFilter?: Schema$ResourceFilter;
        /**
         * Output only. [Output only] The current lifecycle state of the evaluation resource.
         */
        resourceStatus?: Schema$ResourceStatus;
        /**
         * The names of the rules used for this evaluation.
         */
        ruleNames?: string[] | null;
        /**
         * Crontab format schedule for scheduled evaluation, currently only supports the following fixed schedules: * `0 x/1 * * *` # Hourly * `0 x/6 * * *` # Every 6 hours * `0 x/12 * * *` # Every 12 hours * `0 0 x/1 * *` # Daily * `0 0 x/7 * *` # Weekly * `0 0 x/14 * *` # Every 14 days * `0 0 1 x/1 *` # Monthly
         */
        schedule?: string | null;
        /**
         * Output only. [Output only] Update time stamp.
         */
        updateTime?: string | null;
    }
    /**
     * Execution that represents a single run of an Evaluation.
     */
    export interface Schema$Execution {
        /**
         * Output only. [Output only] End time stamp.
         */
        endTime?: string | null;
        /**
         * Optional. Engine.
         */
        engine?: string | null;
        /**
         * Output only. [Output only] Evaluation ID.
         */
        evaluationId?: string | null;
        /**
         * Optional. External data sources.
         */
        externalDataSources?: Schema$ExternalDataSources[];
        /**
         * Output only. [Output only] Inventory time stamp.
         */
        inventoryTime?: string | null;
        /**
         * Labels as key value pairs.
         */
        labels?: {
            [key: string]: string;
        } | null;
        /**
         * The name of execution resource. The format is projects/{project\}/locations/{location\}/evaluations/{evaluation\}/executions/{execution\}.
         */
        name?: string | null;
        /**
         * Output only. Additional information generated by the execution.
         */
        notices?: Schema$Notice[];
        /**
         * Output only. [Output only] Result summary for the execution.
         */
        resultSummary?: Schema$Summary;
        /**
         * Output only. Execution result summary per rule.
         */
        ruleResults?: Schema$RuleExecutionResult[];
        /**
         * Type which represents whether the execution executed directly by user or scheduled according to the `Evaluation.schedule` field.
         */
        runType?: string | null;
        /**
         * Output only. [Output only] Start time stamp.
         */
        startTime?: string | null;
        /**
         * Output only. [Output only] State.
         */
        state?: string | null;
    }
    /**
     * The result of an execution.
     */
    export interface Schema$ExecutionResult {
        /**
         * The commands to remediate the violation.
         */
        commands?: Schema$Command[];
        /**
         * The URL for the documentation of the rule.
         */
        documentationUrl?: string | null;
        /**
         * The resource that violates the rule.
         */
        resource?: Schema$Resource;
        /**
         * The rule that is violated in an evaluation.
         */
        rule?: string | null;
        /**
         * The severity of violation.
         */
        severity?: string | null;
        /**
         * Execution result type of the scanned resource.
         */
        type?: string | null;
        /**
         * The details of violation in an evaluation result.
         */
        violationDetails?: Schema$ViolationDetails;
        /**
         * The violation message of an execution.
         */
        violationMessage?: string | null;
    }
    /**
     * External data sources for an execution.
     */
    export interface Schema$ExternalDataSources {
        /**
         * Required. The asset type of the external data source. This can be a supported Cloud Asset Inventory asset type (see https://cloud.google.com/asset-inventory/docs/supported-asset-types) to override the default asset type, or it can be a custom type defined by the user.
         */
        assetType?: string | null;
        /**
         * Optional. Name of external data source. The name will be used inside the rego/sql to refer the external data.
         */
        name?: string | null;
        /**
         * Required. Type of external data source.
         */
        type?: string | null;
        /**
         * Required. URI of external data source. example of bq table {project_ID\}.{dataset_ID\}.{table_ID\}.
         */
        uri?: string | null;
    }
    /**
     * A filter for matching Compute Engine instances.
     */
    export interface Schema$GceInstanceFilter {
        /**
         * If non-empty, only Compute Engine instances associated with at least one of the provided service accounts will be included in the evaluation.
         */
        serviceAccounts?: string[] | null;
    }
    /**
     * HealthCheck contains the detailed health check of a component based on asource.
     */
    export interface Schema$HealthCheck {
        /**
         * Output only. The message of the health check.
         */
        message?: string | null;
        /**
         * Output only. The health check source metric name.
         */
        metric?: string | null;
        /**
         * Output only. The resource the check performs on.
         */
        resource?: Schema$CloudResource;
        /**
         * Output only. The source of the health check.
         */
        source?: string | null;
        /**
         * Output only. The state of the health check.
         */
        state?: string | null;
    }
    /**
     * The IAM permission status.
     */
    export interface Schema$IAMPermission {
        /**
         * Output only. Whether the permission is granted.
         */
        granted?: boolean | null;
        /**
         * Output only. The name of the permission.
         */
        name?: string | null;
    }
    /**
     * A presentation of host resource usage where the workload runs.
     */
    export interface Schema$Insight {
        /**
         * The insights data for the agent status.
         */
        agentStatus?: Schema$AgentStatus;
        /**
         * Optional. The instance id where the insight is generated from
         */
        instanceId?: string | null;
        /**
         * The insights data for the OpenShift workload validation.
         */
        openShiftValidation?: Schema$OpenShiftValidation;
        /**
         * The insights data for SAP system discovery. This is a copy of SAP System proto and should get updated whenever that one changes.
         */
        sapDiscovery?: Schema$SapDiscovery;
        /**
         * The insights data for the SAP workload validation.
         */
        sapValidation?: Schema$SapValidation;
        /**
         * Output only. [Output only] Create time stamp
         */
        sentTime?: string | null;
        /**
         * The insights data for the sqlserver workload validation.
         */
        sqlserverValidation?: Schema$SqlserverValidation;
        /**
         * The insights data for workload validation of torso workloads.
         */
        torsoValidation?: Schema$TorsoValidation;
    }
    /**
     * Instance Properties.
     */
    export interface Schema$InstanceProperties {
        /**
         * Optional. Instance number.
         */
        instanceNumber?: string | null;
        /**
         * Optional. Instance machine type.
         */
        machineType?: string | null;
        /**
         * Optional. Instance roles.
         */
        roles?: string[] | null;
        /**
         * Optional. SAP Instance properties.
         */
        sapInstanceProperties?: Schema$SapInstanceProperties;
        /**
         * Optional. Instance status.
         */
        status?: string | null;
        /**
         * Optional. the next maintenance event on VM
         */
        upcomingMaintenanceEvent?: Schema$UpcomingMaintenanceEvent;
    }
    /**
     * The response object from `ListActuations`.
     */
    export interface Schema$ListActuationsResponse {
        /**
         * The list of actuations.
         */
        actuations?: Schema$Actuation[];
        /**
         * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
         */
        nextPageToken?: string | null;
        /**
         * Unordered list. Locations that could not be reached.
         */
        unreachable?: string[] | null;
    }
    /**
     * Message for response to listing deployments.
     */
    export interface Schema$ListDeploymentsResponse {
        /**
         * The list of deployments.
         */
        deployments?: Schema$Deployment[];
        /**
         * A token identifying a page of results the server should return.
         */
        nextPageToken?: string | null;
        /**
         * Unordered list. Locations that could not be reached.
         */
        unreachable?: string[] | null;
    }
    /**
     * List discovered profile Response returns discovered profiles from agents
     */
    export interface Schema$ListDiscoveredProfilesResponse {
        /**
         * Output only. A token identifying a page of results the server should return
         */
        nextPageToken?: string | null;
        /**
         * Locations that could not be reached.
         */
        unreachable?: string[] | null;
        /**
         * Output only. The list of workload profiles
         */
        workloadProfiles?: Schema$WorkloadProfile[];
    }
    /**
     * Response message for the ListEvaluations RPC.
     */
    export interface Schema$ListEvaluationsResponse {
        /**
         * The list of evaluations.
         */
        evaluations?: Schema$Evaluation[];
        /**
         * A token identifying a page of results the server should return.
         */
        nextPageToken?: string | null;
        /**
         * Locations that could not be reached.
         */
        unreachable?: string[] | null;
    }
    /**
     * Response message for the ListExecutionResults RPC.
     */
    export interface Schema$ListExecutionResultsResponse {
        /**
         * The versions from the specified publisher.
         */
        executionResults?: Schema$ExecutionResult[];
        /**
         * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
         */
        nextPageToken?: string | null;
    }
    /**
     * Response message for the ListExecutions RPC.
     */
    export interface Schema$ListExecutionsResponse {
        /**
         * The list of Execution.
         */
        executions?: Schema$Execution[];
        /**
         * A token identifying a page of results the server should return.
         */
        nextPageToken?: string | null;
        /**
         * Locations that could not be reached.
         */
        unreachable?: string[] | null;
    }
    /**
     * The response message for Locations.ListLocations.
     */
    export interface Schema$ListLocationsResponse {
        /**
         * A list of locations that matches the specified filter in the request.
         */
        locations?: Schema$Location[];
        /**
         * The standard List next-page token.
         */
        nextPageToken?: string | null;
    }
    /**
     * The response message for Operations.ListOperations.
     */
    export interface Schema$ListOperationsResponse {
        /**
         * The standard List next-page token.
         */
        nextPageToken?: string | null;
        /**
         * A list of operations that matches the specified filter in the request.
         */
        operations?: Schema$Operation[];
        /**
         * Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections. For example, when attempting to list all resources across all supported locations.
         */
        unreachable?: string[] | null;
    }
    /**
     * Response message for the ListRules RPC.
     */
    export interface Schema$ListRulesResponse {
        /**
         * All rules in response.
         */
        rules?: Schema$Rule[];
    }
    /**
     * Response message for the ListScannedResources RPC.
     */
    export interface Schema$ListScannedResourcesResponse {
        /**
         * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
         */
        nextPageToken?: string | null;
        /**
         * All scanned resources in response.
         */
        scannedResources?: Schema$ScannedResource[];
    }
    /**
     * A resource that represents a Google Cloud location.
     */
    export interface Schema$Location {
        /**
         * The friendly name for this location, typically a nearby city name. For example, "Tokyo".
         */
        displayName?: string | null;
        /**
         * Cross-service attributes for the location. For example {"cloud.googleapis.com/region": "us-east1"\}
         */
        labels?: {
            [key: string]: string;
        } | null;
        /**
         * The canonical id for this location. For example: `"us-east1"`.
         */
        locationId?: string | null;
        /**
         * Service-specific metadata. For example the available capacity at the given location.
         */
        metadata?: {
            [key: string]: any;
        } | null;
        /**
         * Resource name for the location, which may vary between implementations. For example: `"projects/example-project/locations/us-east1"`
         */
        name?: string | null;
    }
    /**
     * Message for SAP instance details.
     */
    export interface Schema$LocationDetails {
        /**
         * Optional. Create firewall. If true, creates a firewall for the deployment. This field provides an option to not always create a firewall for the deployment.
         */
        createCommsFirewall?: boolean | null;
        /**
         * Optional. Network tags.
         */
        customTags?: string[] | null;
        /**
         * Optional. When the user skips DNS configuration in the UI, `deployment_dns_enabled` is false; otherwise `deployment_dns_enabled` is true.
         */
        deploymentDnsEnabled?: boolean | null;
        /**
         * Optional. DNS zone name.
         */
        dnsZone?: string | null;
        /**
         * Optional. DNS zone name suffix.
         */
        dnsZoneNameSuffix?: string | null;
        internetAccess?: string | null;
        /**
         * Optional. Network project.
         */
        networkProject?: string | null;
        /**
         * Required. Region name.
         */
        regionName?: string | null;
        /**
         * Required. Subnet name.
         */
        subnetName?: string | null;
        /**
         * Required. VPC name.
         */
        vpcName?: string | null;
        /**
         * Required. Zone 1 name.
         */
        zone1Name?: string | null;
        /**
         * Optional. Zone 2 name.
         */
        zone2Name?: string | null;
    }
    /**
     * Additional information generated by an execution.
     */
    export interface Schema$Notice {
        /**
         * Output only. Message of the notice.
         */
        message?: string | null;
    }
    /**
     * A presentation of OpenShift workload insight. The schema of OpenShift workloads validation related data.
     */
    export interface Schema$OpenShiftValidation {
        /**
         * Required. The OpenShift cluster ID (e.g. 8371bb05-7cac-4d38-82c0-0f58c4f6f936).
         */
        clusterId?: string | null;
        /**
         * Required. The validation details of the OpenShift cluster in JSON format.
         */
        validationDetails?: {
            [key: string]: any;
        } | null;
    }
    /**
     * This resource represents a long-running operation that is the result of a network API call.
     */
    export interface Schema$Operation {
        /**
         * If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
         */
        done?: boolean | null;
        /**
         * The error result of the operation in case of failure or cancellation.
         */
        error?: Schema$Status;
        /**
         * Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
         */
        metadata?: {
            [key: string]: any;
        } | null;
        /**
         * The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id\}`.
         */
        name?: string | null;
        /**
         * The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
         */
        response?: {
            [key: string]: any;
        } | null;
    }
    /**
     * Represents the metadata of the long-running operation.
     */
    export interface Schema$OperationMetadata {
        /**
         * Output only. API version used to start the operation.
         */
        apiVersion?: string | null;
        /**
         * Output only. The time the operation was created.
         */
        createTime?: string | null;
        /**
         * Output only. The time the operation finished running.
         */
        endTime?: string | null;
        /**
         * Output only. Identifies whether the user has requested cancellation of the operation. Operations that have been cancelled successfully have Operation.error value with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
         */
        requestedCancellation?: boolean | null;
        /**
         * Output only. Human-readable status of the operation, if any.
         */
        statusMessage?: string | null;
        /**
         * Output only. Server-defined resource path for the target of the operation.
         */
        target?: string | null;
        /**
         * Output only. Name of the verb executed by the operation.
         */
        verb?: string | null;
    }
    /**
     * Pacemaker configuration.
     */
    export interface Schema$Pacemaker {
        /**
         * Required. Bucket location for node certificates.
         */
        bucketNameNodeCertificates?: string | null;
        /**
         * Required. Pacemaker cluster name.
         */
        pacemakerCluster?: string | null;
        /**
         * Required. Pacemaker cluster secret name.
         */
        pacemakerClusterSecret?: string | null;
        /**
         * Required. Pacemaker cluster username.
         */
        pacemakerClusterUsername?: string | null;
        /**
         * Required. SQL Pacemaker secret name.
         */
        sqlPacemakerSecret?: string | null;
        /**
         * Required. SQL Pacemaker username.
         */
        sqlPacemakerUsername?: string | null;
    }
    /**
     * Contains the details of a product.
     */
    export interface Schema$Product {
        /**
         * Optional. Name of the product.
         */
        name?: string | null;
        /**
         * Optional. Version of the product.
         */
        version?: string | null;
    }
    /**
     * Resource in execution result.
     */
    export interface Schema$Resource {
        /**
         * The name of the resource.
         */
        name?: string | null;
        /**
         * The service account associated with the resource.
         */
        serviceAccount?: string | null;
        /**
         * The type of resource.
         */
        type?: string | null;
    }
    /**
     * Resource filter for an evaluation defining the scope of resources to be evaluated.
     */
    export interface Schema$ResourceFilter {
        /**
         * Filter compute engine resources.
         */
        gceInstanceFilter?: Schema$GceInstanceFilter;
        /**
         * Labels to filter resources by. Each key-value pair in the map must exist on the resource for it to be included (e.g. VM instance labels). For example, specifying `{ "env": "prod", "database": "nosql" \}` will only include resources that have labels `env=prod` and `database=nosql`.
         */
        inclusionLabels?: {
            [key: string]: string;
        } | null;
        /**
         * The pattern to filter resources by their id For example, a pattern of ".*prod-cluster.*" will match all resources that contain "prod-cluster" in their ID.
         */
        resourceIdPatterns?: string[] | null;
        /**
         * The scopes of evaluation resource. Format: * `projects/{project_id\}` * `folders/{folder_id\}` * `organizations/{organization_id\}`
         */
        scopes?: string[] | null;
    }
    /**
     * The lifecycle status of an Evaluation resource.
     */
    export interface Schema$ResourceStatus {
        /**
         * State of the Evaluation resource.
         */
        state?: string | null;
    }
    /**
     * A rule to be evaluated.
     */
    export interface Schema$Rule {
        /**
         * The CAI asset type of the rule is evaluating, for joined asset types, it will be the corresponding primary asset types.
         */
        assetType?: string | null;
        /**
         * Describe rule in plain language.
         */
        description?: string | null;
        /**
         * The name display in UI.
         */
        displayName?: string | null;
        /**
         * The message template for rule.
         */
        errorMessage?: string | null;
        /**
         * Rule name.
         */
        name?: string | null;
        /**
         * The primary category.
         */
        primaryCategory?: string | null;
        /**
         * The remediation for the rule.
         */
        remediation?: string | null;
        /**
         * Output only. The version of the rule.
         */
        revisionId?: string | null;
        /**
         * The type of the rule.
         */
        ruleType?: string | null;
        /**
         * The secondary category.
         */
        secondaryCategory?: string | null;
        /**
         * The severity of the rule.
         */
        severity?: string | null;
        /**
         * List of user-defined tags.
         */
        tags?: string[] | null;
        /**
         * The document url for the rule.
         */
        uri?: string | null;
    }
    /**
     * Execution result summary per rule.
     */
    export interface Schema$RuleExecutionResult {
        /**
         * Execution message, if any.
         */
        message?: string | null;
        /**
         * Number of violations.
         */
        resultCount?: string | null;
        /**
         * Rule name as plain text like `sap-hana-configured`.
         */
        rule?: string | null;
        /**
         * Number of total scanned resources.
         */
        scannedResourceCount?: string | null;
        /**
         * Output only. The execution status.
         */
        state?: string | null;
    }
    /**
     * The rule output of the violation.
     */
    export interface Schema$RuleOutput {
        /**
         * Output only. Violation details generated by rule.
         */
        details?: {
            [key: string]: string;
        } | null;
        /**
         * Output only. The message generated by rule.
         */
        message?: string | null;
    }
    /**
     * Request message for the RunEvaluation RPC.
     */
    export interface Schema$RunEvaluationRequest {
        /**
         * Required. The resource being created.
         */
        execution?: Schema$Execution;
        /**
         * Required. ID of the execution which will be created.
         */
        executionId?: string | null;
        /**
         * Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
         */
        requestId?: string | null;
    }
    /**
     * The component of sap workload
     */
    export interface Schema$SapComponent {
        /**
         * Output only. All instance properties.
         */
        databaseProperties?: Schema$DatabaseProperties;
        /**
         * List of host URIs that are part of the HA configuration if present. An empty list indicates the component is not configured for HA.
         */
        haHosts?: string[] | null;
        /**
         * Output only. resources in the component
         */
        resources?: Schema$CloudResource[];
        /**
         * Output only. sid is the sap component identificator
         */
        sid?: string | null;
        /**
         * The detected topology of the component.
         */
        topologyType?: string | null;
    }
    /**
     * The schema of SAP system discovery data.
     */
    export interface Schema$SapDiscovery {
        /**
         * Optional. An SAP system may run without an application layer.
         */
        applicationLayer?: Schema$SapDiscoveryComponent;
        /**
         * Required. An SAP System must have a database.
         */
        databaseLayer?: Schema$SapDiscoveryComponent;
        /**
         * Optional. The metadata for SAP system discovery data.
         */
        metadata?: Schema$SapDiscoveryMetadata;
        /**
         * Optional. The GCP project number that this SapSystem belongs to.
         */
        projectNumber?: string | null;
        /**
         * Output only. A combination of database SID, database instance URI and tenant DB name to make a unique identifier per-system.
         */
        systemId?: string | null;
        /**
         * Required. Unix timestamp this system has been updated last.
         */
        updateTime?: string | null;
        /**
         * Optional. Whether to use DR reconciliation or not.
         */
        useDrReconciliation?: boolean | null;
        /**
         * Optional. The properties of the workload.
         */
        workloadProperties?: Schema$SapDiscoveryWorkloadProperties;
    }
    /**
     * Message describing the system component.
     */
    export interface Schema$SapDiscoveryComponent {
        /**
         * Optional. The component is a SAP application.
         */
        applicationProperties?: Schema$SapDiscoveryComponentApplicationProperties;
        /**
         * Optional. The component is a SAP database.
         */
        databaseProperties?: Schema$SapDiscoveryComponentDatabaseProperties;
        /**
         * Optional. A list of host URIs that are part of the HA configuration if present. An empty list indicates the component is not configured for HA.
         */
        haHosts?: string[] | null;
        /**
         * Required. Pantheon Project in which the resources reside.
         */
        hostProject?: string | null;
        /**
         * Optional. The region this component's resources are primarily located in.
         */
        region?: string | null;
        /**
         * Optional. A list of replication sites used in Disaster Recovery (DR) configurations.
         */
        replicationSites?: Schema$SapDiscoveryComponentReplicationSite[];
        /**
         * Optional. The resources in a component.
         */
        resources?: Schema$SapDiscoveryResource[];
        /**
         * Optional. The SAP identifier, used by the SAP software and helps differentiate systems for customers.
         */
        sid?: string | null;
        /**
         * Optional. The detected topology of the component.
         */
        topologyType?: string | null;
    }
    /**
     * A set of properties describing an SAP Application layer.
     */
    export interface Schema$SapDiscoveryComponentApplicationProperties {
        /**
         * Optional. Deprecated: ApplicationType now tells you whether this is ABAP or Java.
         */
        abap?: boolean | null;
        /**
         * Optional. Instance number of the SAP application instance.
         */
        appInstanceNumber?: string | null;
        /**
         * Required. Type of the application. Netweaver, etc.
         */
        applicationType?: string | null;
        /**
         * Optional. Instance number of the ASCS instance.
         */
        ascsInstanceNumber?: string | null;
        /**
         * Optional. Resource URI of the recognized ASCS host of the application.
         */
        ascsUri?: string | null;
        /**
         * Optional. Instance number of the ERS instance.
         */
        ersInstanceNumber?: string | null;
        /**
         * Optional. Kernel version for Netweaver running in the system.
         */
        kernelVersion?: string | null;
        /**
         * Optional. Resource URI of the recognized shared NFS of the application. May be empty if the application server has only a single node.
         */
        nfsUri?: string | null;
    }
    /**
     * A set of properties describing an SAP Database layer.
     */
    export interface Schema$SapDiscoveryComponentDatabaseProperties {
        /**
         * Optional. SID of the system database.
         */
        databaseSid?: string | null;
        /**
         * Required. Type of the database. HANA, DB2, etc.
         */
        databaseType?: string | null;
        /**
         * Optional. The version of the database software running in the system.
         */
        databaseVersion?: string | null;
        /**
         * Optional. Instance number of the SAP instance.
         */
        instanceNumber?: string | null;
        /**
         * Optional. Landscape ID from the HANA nameserver.
         */
        landscapeId?: string | null;
        /**
         * Required. URI of the recognized primary instance of the database.
         */
        primaryInstanceUri?: string | null;
        /**
         * Optional. URI of the recognized shared NFS of the database. May be empty if the database has only a single node.
         */
        sharedNfsUri?: string | null;
    }
    /**
     * A replication site used in Disaster Recovery (DR) configurations.
     */
    export interface Schema$SapDiscoveryComponentReplicationSite {
        /**
         * Optional. The system component for the site.
         */
        component?: Schema$SapDiscoveryComponent;
        /**
         * Optional. The name of the source site from which this one replicates.
         */
        sourceSite?: string | null;
    }
    /**
     * Message describing SAP discovery system metadata
     */
    export interface Schema$SapDiscoveryMetadata {
        /**
         * Optional. Customer region string for customer's use. Does not represent GCP region.
         */
        customerRegion?: string | null;
        /**
         * Optional. Customer defined, something like "E-commerce pre prod"
         */
        definedSystem?: string | null;
        /**
         * Optional. Should be "prod", "QA", "dev", "staging", etc.
         */
        environmentType?: string | null;
        /**
         * Optional. This SAP product name
         */
        sapProduct?: string | null;
    }
    /**
     * Message describing a resource.
     */
    export interface Schema$SapDiscoveryResource {
        /**
         * Optional. A set of properties only applying to instance type resources.
         */
        instanceProperties?: Schema$SapDiscoveryResourceInstanceProperties;
        /**
         * Optional. A list of resource URIs related to this resource.
         */
        relatedResources?: string[] | null;
        /**
         * Required. ComputeInstance, ComputeDisk, VPC, Bare Metal server, etc.
         */
        resourceKind?: string | null;
        /**
         * Required. The type of this resource.
         */
        resourceType?: string | null;
        /**
         * Required. URI of the resource, includes project, location, and name.
         */
        resourceUri?: string | null;
        /**
         * Required. Unix timestamp of when this resource last had its discovery data updated.
         */
        updateTime?: string | null;
    }
    /**
     * A set of properties only present for an instance type resource
     */
    export interface Schema$SapDiscoveryResourceInstanceProperties {
        /**
         * Optional. App server instances on the host
         */
        appInstances?: Schema$SapDiscoveryResourceInstancePropertiesAppInstance[];
        /**
         * Optional. A list of instance URIs that are part of a cluster with this one.
         */
        clusterInstances?: string[] | null;
        /**
         * Optional. Disk mounts on the instance.
         */
        diskMounts?: Schema$SapDiscoveryResourceInstancePropertiesDiskMount[];
        /**
         * Optional. The VM's instance number.
         */
        instanceNumber?: string | null;
        /**
         * Optional. Bitmask of instance role, a resource may have multiple roles at once.
         */
        instanceRole?: string | null;
        /**
         * Optional. Instance is part of a DR site.
         */
        isDrSite?: boolean | null;
        /**
         * Optional. The kernel version of the instance.
         */
        osKernelVersion?: Schema$SapDiscoveryResourceInstancePropertiesKernelVersion;
        /**
         * Optional. A virtual hostname of the instance if it has one.
         */
        virtualHostname?: string | null;
    }
    /**
     * Fields to describe an SAP application server instance.
     */
    export interface Schema$SapDiscoveryResourceInstancePropertiesAppInstance {
        /**
         * Optional. Instance name of the SAP application instance.
         */
        name?: string | null;
        /**
         * Optional. Instance number of the SAP application instance.
         */
        number?: string | null;
    }
    /**
     * Disk mount on the instance.
     */
    export interface Schema$SapDiscoveryResourceInstancePropertiesDiskMount {
        /**
         * Optional. Names of the disks providing this mount point.
         */
        diskNames?: string[] | null;
        /**
         * Optional. Filesystem mount point.
         */
        mountPoint?: string | null;
        /**
         * Optional. Name of the disk.
         */
        name?: string | null;
    }
    /**
     * KernelVersion encapsulates the kernel version data for the system.
     */
    export interface Schema$SapDiscoveryResourceInstancePropertiesKernelVersion {
        /**
         * Optional. Captures the distro-specific kernel version, the portion of the string following the first dash.
         */
        distroKernel?: Schema$SapDiscoveryResourceInstancePropertiesKernelVersionVersion;
        /**
         * Optional. Captures the OS-specific kernel version, the portion of the string up to the first dash.
         */
        osKernel?: Schema$SapDiscoveryResourceInstancePropertiesKernelVersionVersion;
        /**
         * Optional. Raw string of the kernel version.
         */
        rawString?: string | null;
    }
    /**
     * Version is reported as Major.Minor.Build.Patch.
     */
    export interface Schema$SapDiscoveryResourceInstancePropertiesKernelVersionVersion {
        /**
         * Optional. The build version number.
         */
        build?: number | null;
        /**
         * Optional. The major version number.
         */
        major?: number | null;
        /**
         * Optional. The minor version number.
         */
        minor?: number | null;
        /**
         * Optional. The patch version number.
         */
        patch?: number | null;
        /**
         * Optional. A catch-all for any unparsed version components. This is in case the number of points in the version string exceeds the expected count of 4.
         */
        remainder?: string | null;
    }
    /**
     * A set of properties describing an SAP workload.
     */
    export interface Schema$SapDiscoveryWorkloadProperties {
        /**
         * Optional. List of SAP Products and their versions running on the system.
         */
        productVersions?: Schema$SapDiscoveryWorkloadPropertiesProductVersion[];
        /**
         * Optional. A list of SAP software components and their versions running on the system.
         */
        softwareComponentVersions?: Schema$SapDiscoveryWorkloadPropertiesSoftwareComponentProperties[];
    }
    /**
     * A product name and version.
     */
    export interface Schema$SapDiscoveryWorkloadPropertiesProductVersion {
        /**
         * Optional. Name of the product.
         */
        name?: string | null;
        /**
         * Optional. Version of the product.
         */
        version?: string | null;
    }
    /**
     * A SAP software component name, version, and type.
     */
    export interface Schema$SapDiscoveryWorkloadPropertiesSoftwareComponentProperties {
        /**
         * Optional. The component's minor version.
         */
        extVersion?: string | null;
        /**
         * Optional. Name of the component.
         */
        name?: string | null;
        /**
         * Optional. The component's type.
         */
        type?: string | null;
        /**
         * Optional. The component's major version.
         */
        version?: string | null;
    }
    /**
     * SAP instance properties.
     */
    export interface Schema$SapInstanceProperties {
        /**
         * Optional. Sap Instance Agent status.
         */
        agentStates?: Schema$AgentStates;
        /**
         * Optional. SAP Instance numbers. They are from '00' to '99'.
         */
        numbers?: string[] | null;
    }
    /**
     * Message for SAP system workload.
     */
    export interface Schema$SapSystemS4Config {
        allowStoppingForUpdate?: boolean | null;
        /**
         * Ansible runner service account. Let customers bring their own service account for the Ansible runner.
         */
        ansibleRunnerServiceAccount?: string | null;
        /**
         * Instance details.
         */
        app?: Schema$AppDetails;
        /**
         * Database details.
         */
        database?: Schema$DatabaseDetails;
        /**
         * Required. Supports non-HA and HA models.
         */
        deploymentModel?: string | null;
        /**
         * Required. Deployment environment.
         */
        environmentType?: string | null;
        /**
         * The project that infrastructure is deployed in. Currently only supports the same project where the deployment resource exists.
         */
        gcpProjectId?: string | null;
        /**
         * Database details.
         */
        location?: Schema$LocationDetails;
        /**
         * Required. Media bucket name.
         */
        mediaBucketName?: string | null;
        /**
         * Optional. SAP boot disk image.
         */
        sapBootDiskImage?: string | null;
        /**
         * Required. Supports scale up and scale out.
         */
        scalingMethod?: string | null;
        /**
         * Required. SAP HANA version.
         */
        version?: string | null;
        /**
         * VM prefix.
         */
        vmPrefix?: string | null;
    }
    /**
     * A presentation of SAP workload insight. The schema of SAP workloads validation related data.
     */
    export interface Schema$SapValidation {
        /**
         * Required. The project_id of the cloud project that the Insight data comes from.
         */
        projectId?: string | null;
        /**
         * Optional. A list of SAP validation metrics data.
         */
        validationDetails?: Schema$SapValidationValidationDetail[];
        /**
         * Optional. The zone of the instance that the Insight data comes from.
         */
        zone?: string | null;
    }
    /**
     * Message describing the SAP validation metrics.
     */
    export interface Schema$SapValidationValidationDetail {
        /**
         * Optional. The pairs of metrics data: field name & field value.
         */
        details?: {
            [key: string]: string;
        } | null;
        /**
         * Optional. Was there a SAP system detected for this validation type.
         */
        isPresent?: boolean | null;
        /**
         * Optional. The SAP system that the validation data is from.
         */
        sapValidationType?: string | null;
    }
    /**
     * The body of sap workload
     */
    export interface Schema$SapWorkload {
        /**
         * Output only. application component
         */
        application?: Schema$SapComponent;
        /**
         * Output only. The architecture.
         */
        architecture?: string | null;
        /**
         * Output only. database component
         */
        database?: Schema$SapComponent;
        /**
         * Output only. The metadata for SAP workload.
         */
        metadata?: {
            [key: string]: string;
        } | null;
        /**
         * Output only. The products on this workload.
         */
        products?: Schema$Product[];
    }
    /**
     * A scanned resource.
     */
    export interface Schema$ScannedResource {
        /**
         * Resource name.
         */
        resource?: string | null;
        /**
         * Resource type.
         */
        type?: string | null;
    }
    /**
     * The state of the service.
     */
    export interface Schema$ServiceStates {
        /**
         * Optional. Output only. The IAM permissions for the service.
         */
        iamPermissions?: Schema$IAMPermission[];
        /**
         * Output only. The overall state of the service.
         */
        state?: string | null;
    }
    /**
     * A ShellCommand is invoked via the agent's command line executor.
     */
    export interface Schema$ShellCommand {
        /**
         * Arguments to be passed to the command.
         */
        args?: string | null;
        /**
         * The name of the command to be executed.
         */
        command?: string | null;
        /**
         * Optional. If not specified, the default timeout is 60 seconds.
         */
        timeoutSeconds?: number | null;
    }
    /**
     * Location and networking details for configuring SQL server workload.
     */
    export interface Schema$SqlLocationDetails {
        /**
         * Optional. Create a new DNS zone when the field is empty. Only shown for `Using an existing DNS`. List of existing DNS zones. Terraform variable name: existing_dns_zone_name.
         */
        dnsZone?: string | null;
        /**
         * Required. The project that infrastructure is deployed in. Currently only supports the same project where the deployment resource exists.
         */
        gcpProjectId?: string | null;
        /**
         * Required. Internet Access.
         */
        internetAccess?: string | null;
        /**
         * Required. Network name.
         */
        network?: string | null;
        /**
         * Required. Primary zone.
         */
        primaryZone?: string | null;
        /**
         * Required. Region name.
         */
        region?: string | null;
        /**
         * Optional. Secondary zone cannot be the same as primary_zone and is only for High Availability deployment mode.
         */
        secondaryZone?: string | null;
        /**
         * Required. Subnetwork name.
         */
        subnetwork?: string | null;
        /**
         * Optional. Tertiary zone cannot be the same as primary_zone and secondary_zone, and it is only for High Availability deployment mode.
         */
        tertiaryZone?: string | null;
    }
    /**
     * A presentation of SQLServer workload insight. The schema of SqlServer workloads validation related data.
     */
    export interface Schema$SqlserverValidation {
        /**
         * Optional. The agent version collected this data point
         */
        agentVersion?: string | null;
        /**
         * Required. The instance_name of the instance that the Insight data comes from. According to https://linter.aip.dev/122/name-suffix: field names should not use the _name suffix unless the field would be ambiguous without it.
         */
        instance?: string | null;
        /**
         * Required. The project_id of the cloud project that the Insight data comes from.
         */
        projectId?: string | null;
        /**
         * Optional. A list of SqlServer validation metrics data.
         */
        validationDetails?: Schema$SqlserverValidationValidationDetail[];
    }
    /**
     * Message containing collected data names and values.
     */
    export interface Schema$SqlserverValidationDetails {
        /**
         * Required. Collected data is in format.
         */
        fields?: {
            [key: string]: string;
        } | null;
    }
    /**
     * Message describing the Sqlserver validation metrics.
     */
    export interface Schema$SqlserverValidationValidationDetail {
        /**
         * Required. Details wraps map that represents collected data names and values.
         */
        details?: Schema$SqlserverValidationDetails[];
        /**
         * Optional. The Sqlserver system that the validation data is from.
         */
        type?: string | null;
    }
    /**
     * Message for MS SQL workload.
     */
    export interface Schema$SqlServerWorkload {
        /**
         * Required. Active Directory details.
         */
        activeDirectory?: Schema$ActiveDirectory;
        /**
         * Compute Engine service account. Let customers bring their own service account for Compute Engine.
         */
        computeEngineServiceAccount?: string | null;
        /**
         * Required. Database details.
         */
        database?: Schema$Database;
        /**
         * Required. HIGH_AVAILABILITY or SINGLE_INSTANCE.
         */
        deploymentModel?: string | null;
        /**
         * Required. Deployment environment.
         */
        environmentType?: string | null;
        /**
         * Optional. SHARED_DISK or S2D.
         */
        fciType?: string | null;
        /**
         * Optional. AOAG or FCI. It is only needed for the High Availability deployment mode.
         */
        haType?: string | null;
        /**
         * Required. SQL licensing type.
         */
        isSqlPayg?: boolean | null;
        /**
         * Required. Location details.
         */
        location?: Schema$SqlLocationDetails;
        /**
         * Required. Name of the media storing SQL server installation files.
         */
        mediaBucket?: string | null;
        /**
         * Required. The type of the operating system the SQL server is going to run on top of.
         */
        operatingSystemType?: string | null;
        /**
         * Required. The image of the operating system.
         */
        osImage?: string | null;
        /**
         * Optional. OS image type. It's used to create boot disks for VM instances. When either Windows licensing type or SQL licensing type is BYOL, this option is disabled and defaults to a custom image.
         */
        osImageType?: string | null;
        /**
         * Optional. Pacemaker configuration, only applicable for Linux HA deployments.
         */
        pacemaker?: Schema$Pacemaker;
        /**
         * Optional. SQL Server Edition type, only applicable when the operating system is Linux.
         */
        sqlServerEdition?: string | null;
        /**
         * Optional. 2017, 2019, or 2022.
         */
        sqlServerVersion?: string | null;
        /**
         * Required. Should be unique in the project.
         */
        vmPrefix?: string | null;
    }
    /**
     * The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors).
     */
    export interface Schema$Status {
        /**
         * The status code, which should be an enum value of google.rpc.Code.
         */
        code?: number | null;
        /**
         * A list of messages that carry the error details. There is a common set of message types for APIs to use.
         */
        details?: Array<{
            [key: string]: any;
        }> | null;
        /**
         * A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
         */
        message?: string | null;
    }
    /**
     * Execution summary.
     */
    export interface Schema$Summary {
        /**
         * Output only. Number of failures.
         */
        failures?: string | null;
        /**
         * Output only. Number of new failures compared to the previous execution.
         */
        newFailures?: string | null;
        /**
         * Output only. Number of new fixes compared to the previous execution.
         */
        newFixes?: string | null;
    }
    /**
     * In order to align with the Infra Manager dependency, we create the same TerraformVariable message to represent a Terraform input variable, by following Infra Manager's API documentation: https://cloud.google.com/infrastructure-manager/docs/reference/rest. A Terraform input variable.
     */
    export interface Schema$TerraformVariable {
        /**
         * Optional. Input variable value.
         */
        inputValue?: any | null;
    }
    /**
     * The schema of torso workload validation data.
     */
    export interface Schema$TorsoValidation {
        /**
         * Required. agent_version lists the version of the agent that collected this data.
         */
        agentVersion?: string | null;
        /**
         * Optional. instance_name lists the human readable name of the instance that the data comes from.
         */
        instanceName?: string | null;
        /**
         * Required. project_id lists the human readable cloud project that the data comes from.
         */
        projectId?: string | null;
        /**
         * Required. validation_details contains the pairs of validation data: field name & field value.
         */
        validationDetails?: {
            [key: string]: string;
        } | null;
        /**
         * Required. workload_type specifies the type of torso workload.
         */
        workloadType?: string | null;
    }
    /**
     * Maintenance Event
     */
    export interface Schema$UpcomingMaintenanceEvent {
        /**
         * Optional. End time
         */
        endTime?: string | null;
        /**
         * Optional. Maintenance status
         */
        maintenanceStatus?: string | null;
        /**
         * Optional. Instance maintenance behavior. Could be `MIGRATE` or `TERMINATE`.
         */
        onHostMaintenance?: string | null;
        /**
         * Optional. Start time
         */
        startTime?: string | null;
        /**
         * Optional. Type
         */
        type?: string | null;
    }
    /**
     * The violation in an evaluation result.
     */
    export interface Schema$ViolationDetails {
        /**
         * The name of the asset.
         */
        asset?: string | null;
        /**
         * Details of the violation.
         */
        observed?: {
            [key: string]: string;
        } | null;
        /**
         * Output only. The rule output of the violation.
         */
        ruleOutput?: Schema$RuleOutput[];
        /**
         * The service account associated with the resource.
         */
        serviceAccount?: string | null;
    }
    /**
     * Workload resource.
     */
    export interface Schema$WorkloadProfile {
        /**
         * Optional. such as name, description, version. More example can be found in deployment
         */
        labels?: {
            [key: string]: string;
        } | null;
        /**
         * Identifier. name of resource names have the form 'projects/{project_id\}/locations/{location\}/workloadProfiles/{workload_id\}'
         */
        name?: string | null;
        /**
         * Required. time when the workload data was refreshed
         */
        refreshedTime?: string | null;
        /**
         * The sap workload content
         */
        sapWorkload?: Schema$SapWorkload;
        /**
         * Required. The type of the workload
         */
        workloadType?: string | null;
    }
    /**
     * WorkloadProfileHealth contains the detailed health check of workload.
     */
    export interface Schema$WorkloadProfileHealth {
        /**
         * The time when the health check was performed.
         */
        checkTime?: string | null;
        /**
         * The detailed condition reports of each component.
         */
        componentsHealth?: Schema$ComponentHealth[];
        /**
         * Output only. The health state of the workload.
         */
        state?: string | null;
    }
    /**
     * Request for sending the data insights.
     */
    export interface Schema$WriteInsightRequest {
        /**
         * Optional. The agent version collected this data point.
         */
        agentVersion?: string | null;
        /**
         * Required. The metrics data details.
         */
        insight?: Schema$Insight;
        /**
         * Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
         */
        requestId?: string | null;
    }
    /**
     * The response for write insights request.
     */
    export interface Schema$WriteInsightResponse {
    }
    export class Resource$Projects {
        context: APIRequestContext;
        locations: Resource$Projects$Locations;
        constructor(context: APIRequestContext);
    }
    export class Resource$Projects$Locations {
        context: APIRequestContext;
        deployments: Resource$Projects$Locations$Deployments;
        discoveredprofiles: Resource$Projects$Locations$Discoveredprofiles;
        evaluations: Resource$Projects$Locations$Evaluations;
        insights: Resource$Projects$Locations$Insights;
        operations: Resource$Projects$Locations$Operations;
        rules: Resource$Projects$Locations$Rules;
        constructor(context: APIRequestContext);
        /**
         * Gets information about a location.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await workloadmanager.projects.locations.get({
         *     // Resource name for the location.
         *     name: 'projects/my-project/locations/my-location',
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "displayName": "my_displayName",
         *   //   "labels": {},
         *   //   "locationId": "my_locationId",
         *   //   "metadata": {},
         *   //   "name": "my_name"
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        get(params: Params$Resource$Projects$Locations$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        get(params?: Params$Resource$Projects$Locations$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Location>>;
        get(params: Params$Resource$Projects$Locations$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        get(params: Params$Resource$Projects$Locations$Get, options: MethodOptions | BodyResponseCallback<Schema$Location>, callback: BodyResponseCallback<Schema$Location>): void;
        get(params: Params$Resource$Projects$Locations$Get, callback: BodyResponseCallback<Schema$Location>): void;
        get(callback: BodyResponseCallback<Schema$Location>): void;
        /**
         * Lists information about the supported locations for this service. This method lists locations based on the resource scope provided in the ListLocationsRequest.name field: * **Global locations**: If `name` is empty, the method lists the public locations available to all projects. * **Project-specific locations**: If `name` follows the format `projects/{project\}`, the method lists locations visible to that specific project. This includes public, private, or other project-specific locations enabled for the project. For gRPC and client library implementations, the resource name is passed as the `name` field. For direct service calls, the resource name is incorporated into the request path based on the specific service implementation and version.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await workloadmanager.projects.locations.list({
         *     // Optional. Do not use this field unless explicitly documented otherwise. This is primarily for internal usage.
         *     extraLocationTypes: 'placeholder-value',
         *     // A filter to narrow down results to a preferred subset. The filtering language accepts strings like `"displayName=tokyo"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160).
         *     filter: 'placeholder-value',
         *     // The resource that owns the locations collection, if applicable.
         *     name: 'projects/my-project',
         *     // The maximum number of results to return. If not set, the service selects a default.
         *     pageSize: 'placeholder-value',
         *     // A page token received from the `next_page_token` field in the response. Send that page token to receive the subsequent page.
         *     pageToken: 'placeholder-value',
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "locations": [],
         *   //   "nextPageToken": "my_nextPageToken"
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        list(params: Params$Resource$Projects$Locations$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        list(params?: Params$Resource$Projects$Locations$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListLocationsResponse>>;
        list(params: Params$Resource$Projects$Locations$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        list(params: Params$Resource$Projects$Locations$List, options: MethodOptions | BodyResponseCallback<Schema$ListLocationsResponse>, callback: BodyResponseCallback<Schema$ListLocationsResponse>): void;
        list(params: Params$Resource$Projects$Locations$List, callback: BodyResponseCallback<Schema$ListLocationsResponse>): void;
        list(callback: BodyResponseCallback<Schema$ListLocationsResponse>): void;
    }
    export interface Params$Resource$Projects$Locations$Get extends StandardParameters {
        /**
         * Resource name for the location.
         */
        name?: string;
    }
    export interface Params$Resource$Projects$Locations$List extends StandardParameters {
        /**
         * Optional. Do not use this field unless explicitly documented otherwise. This is primarily for internal usage.
         */
        extraLocationTypes?: string[];
        /**
         * A filter to narrow down results to a preferred subset. The filtering language accepts strings like `"displayName=tokyo"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160).
         */
        filter?: string;
        /**
         * The resource that owns the locations collection, if applicable.
         */
        name?: string;
        /**
         * The maximum number of results to return. If not set, the service selects a default.
         */
        pageSize?: number;
        /**
         * A page token received from the `next_page_token` field in the response. Send that page token to receive the subsequent page.
         */
        pageToken?: string;
    }
    export class Resource$Projects$Locations$Deployments {
        context: APIRequestContext;
        actuations: Resource$Projects$Locations$Deployments$Actuations;
        constructor(context: APIRequestContext);
        /**
         * Creates a new Deployment in a given project and location.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await workloadmanager.projects.locations.deployments.create({
         *     // Required. ID of the deployment.
         *     deploymentId: 'placeholder-value',
         *     // Required. The resource prefix of the Deployment using the form: `projects/{project_id\}/locations/{location_id\}`
         *     parent: 'projects/my-project/locations/my-location',
         *     // Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
         *     requestId: 'placeholder-value',
         *
         *     // Request body metadata
         *     requestBody: {
         *       // request body parameters
         *       // {
         *       //   "createTime": "my_createTime",
         *       //   "description": "my_description",
         *       //   "name": "my_name",
         *       //   "sapSystemS4Config": {},
         *       //   "serviceAccount": "my_serviceAccount",
         *       //   "sqlServerWorkload": {},
         *       //   "state": "my_state",
         *       //   "terraformVariables": {},
         *       //   "updateTime": "my_updateTime",
         *       //   "workerPool": "my_workerPool",
         *       //   "workloadType": "my_workloadType"
         *       // }
         *     },
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "done": false,
         *   //   "error": {},
         *   //   "metadata": {},
         *   //   "name": "my_name",
         *   //   "response": {}
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        create(params: Params$Resource$Projects$Locations$Deployments$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        create(params?: Params$Resource$Projects$Locations$Deployments$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
        create(params: Params$Resource$Projects$Locations$Deployments$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        create(params: Params$Resource$Projects$Locations$Deployments$Create, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
        create(params: Params$Resource$Projects$Locations$Deployments$Create, callback: BodyResponseCallback<Schema$Operation>): void;
        create(callback: BodyResponseCallback<Schema$Operation>): void;
        /**
         * Deletes a single Deployment.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await workloadmanager.projects.locations.deployments.delete({
         *     // Optional. If set to true, any actuation will also be deleted. Follows the best practice from https://aip.dev/135#cascading-delete.
         *     force: 'placeholder-value',
         *     // Required. Name of the resource.
         *     name: 'projects/my-project/locations/my-location/deployments/my-deployment',
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "done": false,
         *   //   "error": {},
         *   //   "metadata": {},
         *   //   "name": "my_name",
         *   //   "response": {}
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        delete(params: Params$Resource$Projects$Locations$Deployments$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        delete(params?: Params$Resource$Projects$Locations$Deployments$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
        delete(params: Params$Resource$Projects$Locations$Deployments$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        delete(params: Params$Resource$Projects$Locations$Deployments$Delete, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
        delete(params: Params$Resource$Projects$Locations$Deployments$Delete, callback: BodyResponseCallback<Schema$Operation>): void;
        delete(callback: BodyResponseCallback<Schema$Operation>): void;
        /**
         * Gets details of a single Deployment.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await workloadmanager.projects.locations.deployments.get({
         *     // Required. Name of the resource. The format is 'projects/{project_id\}/locations/{location_id\}/deployments/{deployment_id\}'.
         *     name: 'projects/my-project/locations/my-location/deployments/my-deployment',
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "createTime": "my_createTime",
         *   //   "description": "my_description",
         *   //   "name": "my_name",
         *   //   "sapSystemS4Config": {},
         *   //   "serviceAccount": "my_serviceAccount",
         *   //   "sqlServerWorkload": {},
         *   //   "state": "my_state",
         *   //   "terraformVariables": {},
         *   //   "updateTime": "my_updateTime",
         *   //   "workerPool": "my_workerPool",
         *   //   "workloadType": "my_workloadType"
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        get(params: Params$Resource$Projects$Locations$Deployments$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        get(params?: Params$Resource$Projects$Locations$Deployments$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Deployment>>;
        get(params: Params$Resource$Projects$Locations$Deployments$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        get(params: Params$Resource$Projects$Locations$Deployments$Get, options: MethodOptions | BodyResponseCallback<Schema$Deployment>, callback: BodyResponseCallback<Schema$Deployment>): void;
        get(params: Params$Resource$Projects$Locations$Deployments$Get, callback: BodyResponseCallback<Schema$Deployment>): void;
        get(callback: BodyResponseCallback<Schema$Deployment>): void;
        /**
         * Lists Deployments in a given project and location.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await workloadmanager.projects.locations.deployments.list({
         *     // Optional. Filter resource following https://google.aip.dev/160.
         *     filter: 'placeholder-value',
         *     // Optional. Field to sort by. See https://google.aip.dev/132#ordering for more details.
         *     orderBy: 'placeholder-value',
         *     // Optional. Requested page size. Server may return fewer items than requested. The maximum value is 1000; values above 1000 will be coerced to 1000.
         *     pageSize: 'placeholder-value',
         *     // Optional. A token identifying a page of results the server should return.
         *     pageToken: 'placeholder-value',
         *     // Required. The resource prefix of the Deployment using the form: `projects/{project_id\}/locations/{location_id\}`
         *     parent: 'projects/my-project/locations/my-location',
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "deployments": [],
         *   //   "nextPageToken": "my_nextPageToken",
         *   //   "unreachable": []
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        list(params: Params$Resource$Projects$Locations$Deployments$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        list(params?: Params$Resource$Projects$Locations$Deployments$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListDeploymentsResponse>>;
        list(params: Params$Resource$Projects$Locations$Deployments$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        list(params: Params$Resource$Projects$Locations$Deployments$List, options: MethodOptions | BodyResponseCallback<Schema$ListDeploymentsResponse>, callback: BodyResponseCallback<Schema$ListDeploymentsResponse>): void;
        list(params: Params$Resource$Projects$Locations$Deployments$List, callback: BodyResponseCallback<Schema$ListDeploymentsResponse>): void;
        list(callback: BodyResponseCallback<Schema$ListDeploymentsResponse>): void;
    }
    export interface Params$Resource$Projects$Locations$Deployments$Create extends StandardParameters {
        /**
         * Required. ID of the deployment.
         */
        deploymentId?: string;
        /**
         * Required. The resource prefix of the Deployment using the form: `projects/{project_id\}/locations/{location_id\}`
         */
        parent?: string;
        /**
         * Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
         */
        requestId?: string;
        /**
         * Request body metadata
         */
        requestBody?: Schema$Deployment;
    }
    export interface Params$Resource$Projects$Locations$Deployments$Delete extends StandardParameters {
        /**
         * Optional. If set to true, any actuation will also be deleted. Follows the best practice from https://aip.dev/135#cascading-delete.
         */
        force?: boolean;
        /**
         * Required. Name of the resource.
         */
        name?: string;
    }
    export interface Params$Resource$Projects$Locations$Deployments$Get extends StandardParameters {
        /**
         * Required. Name of the resource. The format is 'projects/{project_id\}/locations/{location_id\}/deployments/{deployment_id\}'.
         */
        name?: string;
    }
    export interface Params$Resource$Projects$Locations$Deployments$List extends StandardParameters {
        /**
         * Optional. Filter resource following https://google.aip.dev/160.
         */
        filter?: string;
        /**
         * Optional. Field to sort by. See https://google.aip.dev/132#ordering for more details.
         */
        orderBy?: string;
        /**
         * Optional. Requested page size. Server may return fewer items than requested. The maximum value is 1000; values above 1000 will be coerced to 1000.
         */
        pageSize?: number;
        /**
         * Optional. A token identifying a page of results the server should return.
         */
        pageToken?: string;
        /**
         * Required. The resource prefix of the Deployment using the form: `projects/{project_id\}/locations/{location_id\}`
         */
        parent?: string;
    }
    export class Resource$Projects$Locations$Deployments$Actuations {
        context: APIRequestContext;
        constructor(context: APIRequestContext);
        /**
         * Creates a new actuation for an existing Deployment.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res =
         *     await workloadmanager.projects.locations.deployments.actuations.create({
         *       // Required. The resource name of the Actuation location using the form: 'projects/{project_id\}/locations/{location\}/deployments/{deployment\}'.
         *       parent:
         *         'projects/my-project/locations/my-location/deployments/my-deployment',
         *       // Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
         *       requestId: 'placeholder-value',
         *
         *       // Request body metadata
         *       requestBody: {
         *         // request body parameters
         *         // {
         *         //   "actuationOutput": {},
         *         //   "deploymentOutput": [],
         *         //   "endTime": "my_endTime",
         *         //   "name": "my_name",
         *         //   "startTime": "my_startTime",
         *         //   "state": "my_state"
         *         // }
         *       },
         *     });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "done": false,
         *   //   "error": {},
         *   //   "metadata": {},
         *   //   "name": "my_name",
         *   //   "response": {}
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        create(params: Params$Resource$Projects$Locations$Deployments$Actuations$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        create(params?: Params$Resource$Projects$Locations$Deployments$Actuations$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
        create(params: Params$Resource$Projects$Locations$Deployments$Actuations$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        create(params: Params$Resource$Projects$Locations$Deployments$Actuations$Create, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
        create(params: Params$Resource$Projects$Locations$Deployments$Actuations$Create, callback: BodyResponseCallback<Schema$Operation>): void;
        create(callback: BodyResponseCallback<Schema$Operation>): void;
        /**
         * Deletes a single Actuation.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res =
         *     await workloadmanager.projects.locations.deployments.actuations.delete({
         *       // Required. The name of the actuation to delete. projects/{project\}/locations/{location\}/deployments/{deployment\}/actuations/{actuation\}.
         *       name: 'projects/my-project/locations/my-location/deployments/my-deployment/actuations/my-actuation',
         *     });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "done": false,
         *   //   "error": {},
         *   //   "metadata": {},
         *   //   "name": "my_name",
         *   //   "response": {}
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        delete(params: Params$Resource$Projects$Locations$Deployments$Actuations$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        delete(params?: Params$Resource$Projects$Locations$Deployments$Actuations$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
        delete(params: Params$Resource$Projects$Locations$Deployments$Actuations$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        delete(params: Params$Resource$Projects$Locations$Deployments$Actuations$Delete, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
        delete(params: Params$Resource$Projects$Locations$Deployments$Actuations$Delete, callback: BodyResponseCallback<Schema$Operation>): void;
        delete(callback: BodyResponseCallback<Schema$Operation>): void;
        /**
         * Gets details of a single Actuation.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res =
         *     await workloadmanager.projects.locations.deployments.actuations.get({
         *       // Required. Name of the resource.
         *       name: 'projects/my-project/locations/my-location/deployments/my-deployment/actuations/my-actuation',
         *     });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "actuationOutput": {},
         *   //   "deploymentOutput": [],
         *   //   "endTime": "my_endTime",
         *   //   "name": "my_name",
         *   //   "startTime": "my_startTime",
         *   //   "state": "my_state"
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        get(params: Params$Resource$Projects$Locations$Deployments$Actuations$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        get(params?: Params$Resource$Projects$Locations$Deployments$Actuations$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Actuation>>;
        get(params: Params$Resource$Projects$Locations$Deployments$Actuations$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        get(params: Params$Resource$Projects$Locations$Deployments$Actuations$Get, options: MethodOptions | BodyResponseCallback<Schema$Actuation>, callback: BodyResponseCallback<Schema$Actuation>): void;
        get(params: Params$Resource$Projects$Locations$Deployments$Actuations$Get, callback: BodyResponseCallback<Schema$Actuation>): void;
        get(callback: BodyResponseCallback<Schema$Actuation>): void;
        /**
         * Lists Actuations in a given project, location and deployment.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res =
         *     await workloadmanager.projects.locations.deployments.actuations.list({
         *       // Optional. Filtering results.
         *       filter: 'placeholder-value',
         *       // Optional. Field to sort by. See https://google.aip.dev/132#ordering for more details.
         *       orderBy: 'placeholder-value',
         *       // Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.
         *       pageSize: 'placeholder-value',
         *       // Optional. A token identifying a page of results the server should return.
         *       pageToken: 'placeholder-value',
         *       // Required. The resource prefix of the Actuation using the form: 'projects/{project_id\}/locations/{location\}/deployments/{deployment\}'.
         *       parent:
         *         'projects/my-project/locations/my-location/deployments/my-deployment',
         *     });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "actuations": [],
         *   //   "nextPageToken": "my_nextPageToken",
         *   //   "unreachable": []
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        list(params: Params$Resource$Projects$Locations$Deployments$Actuations$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        list(params?: Params$Resource$Projects$Locations$Deployments$Actuations$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListActuationsResponse>>;
        list(params: Params$Resource$Projects$Locations$Deployments$Actuations$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        list(params: Params$Resource$Projects$Locations$Deployments$Actuations$List, options: MethodOptions | BodyResponseCallback<Schema$ListActuationsResponse>, callback: BodyResponseCallback<Schema$ListActuationsResponse>): void;
        list(params: Params$Resource$Projects$Locations$Deployments$Actuations$List, callback: BodyResponseCallback<Schema$ListActuationsResponse>): void;
        list(callback: BodyResponseCallback<Schema$ListActuationsResponse>): void;
    }
    export interface Params$Resource$Projects$Locations$Deployments$Actuations$Create extends StandardParameters {
        /**
         * Required. The resource name of the Actuation location using the form: 'projects/{project_id\}/locations/{location\}/deployments/{deployment\}'.
         */
        parent?: string;
        /**
         * Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
         */
        requestId?: string;
        /**
         * Request body metadata
         */
        requestBody?: Schema$Actuation;
    }
    export interface Params$Resource$Projects$Locations$Deployments$Actuations$Delete extends StandardParameters {
        /**
         * Required. The name of the actuation to delete. projects/{project\}/locations/{location\}/deployments/{deployment\}/actuations/{actuation\}.
         */
        name?: string;
    }
    export interface Params$Resource$Projects$Locations$Deployments$Actuations$Get extends StandardParameters {
        /**
         * Required. Name of the resource.
         */
        name?: string;
    }
    export interface Params$Resource$Projects$Locations$Deployments$Actuations$List extends StandardParameters {
        /**
         * Optional. Filtering results.
         */
        filter?: string;
        /**
         * Optional. Field to sort by. See https://google.aip.dev/132#ordering for more details.
         */
        orderBy?: string;
        /**
         * Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.
         */
        pageSize?: number;
        /**
         * Optional. A token identifying a page of results the server should return.
         */
        pageToken?: string;
        /**
         * Required. The resource prefix of the Actuation using the form: 'projects/{project_id\}/locations/{location\}/deployments/{deployment\}'.
         */
        parent?: string;
    }
    export class Resource$Projects$Locations$Discoveredprofiles {
        context: APIRequestContext;
        health: Resource$Projects$Locations$Discoveredprofiles$Health;
        constructor(context: APIRequestContext);
        /**
         * Gets details of a discovered workload profile.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await workloadmanager.projects.locations.discoveredprofiles.get({
         *     // Required. Name of the resource
         *     name: 'projects/my-project/locations/my-location/discoveredprofiles/my-discoveredprofile',
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "labels": {},
         *   //   "name": "my_name",
         *   //   "refreshedTime": "my_refreshedTime",
         *   //   "sapWorkload": {},
         *   //   "workloadType": "my_workloadType"
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        get(params: Params$Resource$Projects$Locations$Discoveredprofiles$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        get(params?: Params$Resource$Projects$Locations$Discoveredprofiles$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$WorkloadProfile>>;
        get(params: Params$Resource$Projects$Locations$Discoveredprofiles$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        get(params: Params$Resource$Projects$Locations$Discoveredprofiles$Get, options: MethodOptions | BodyResponseCallback<Schema$WorkloadProfile>, callback: BodyResponseCallback<Schema$WorkloadProfile>): void;
        get(params: Params$Resource$Projects$Locations$Discoveredprofiles$Get, callback: BodyResponseCallback<Schema$WorkloadProfile>): void;
        get(callback: BodyResponseCallback<Schema$WorkloadProfile>): void;
        /**
         * List discovered workload profiles
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await workloadmanager.projects.locations.discoveredprofiles.list({
         *     // Optional. Filtering results
         *     filter: 'placeholder-value',
         *     // Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.
         *     pageSize: 'placeholder-value',
         *     // Optional. A token identifying a page of results the server should return.
         *     pageToken: 'placeholder-value',
         *     // Required. Parent value for ListDiscoveredProfilesRequest
         *     parent: 'projects/my-project/locations/my-location',
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "nextPageToken": "my_nextPageToken",
         *   //   "unreachable": [],
         *   //   "workloadProfiles": []
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        list(params: Params$Resource$Projects$Locations$Discoveredprofiles$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        list(params?: Params$Resource$Projects$Locations$Discoveredprofiles$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListDiscoveredProfilesResponse>>;
        list(params: Params$Resource$Projects$Locations$Discoveredprofiles$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        list(params: Params$Resource$Projects$Locations$Discoveredprofiles$List, options: MethodOptions | BodyResponseCallback<Schema$ListDiscoveredProfilesResponse>, callback: BodyResponseCallback<Schema$ListDiscoveredProfilesResponse>): void;
        list(params: Params$Resource$Projects$Locations$Discoveredprofiles$List, callback: BodyResponseCallback<Schema$ListDiscoveredProfilesResponse>): void;
        list(callback: BodyResponseCallback<Schema$ListDiscoveredProfilesResponse>): void;
    }
    export interface Params$Resource$Projects$Locations$Discoveredprofiles$Get extends StandardParameters {
        /**
         * Required. Name of the resource
         */
        name?: string;
    }
    export interface Params$Resource$Projects$Locations$Discoveredprofiles$List extends StandardParameters {
        /**
         * Optional. Filtering results
         */
        filter?: string;
        /**
         * Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.
         */
        pageSize?: number;
        /**
         * Optional. A token identifying a page of results the server should return.
         */
        pageToken?: string;
        /**
         * Required. Parent value for ListDiscoveredProfilesRequest
         */
        parent?: string;
    }
    export class Resource$Projects$Locations$Discoveredprofiles$Health {
        context: APIRequestContext;
        constructor(context: APIRequestContext);
        /**
         * Get the health of a discovered workload profile.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res =
         *     await workloadmanager.projects.locations.discoveredprofiles.health.get({
         *       // Required. The resource name
         *       name: 'projects/my-project/locations/my-location/discoveredprofiles/my-discoveredprofile/health/[^/]+',
         *     });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "checkTime": "my_checkTime",
         *   //   "componentsHealth": [],
         *   //   "state": "my_state"
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        get(params: Params$Resource$Projects$Locations$Discoveredprofiles$Health$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        get(params?: Params$Resource$Projects$Locations$Discoveredprofiles$Health$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$WorkloadProfileHealth>>;
        get(params: Params$Resource$Projects$Locations$Discoveredprofiles$Health$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        get(params: Params$Resource$Projects$Locations$Discoveredprofiles$Health$Get, options: MethodOptions | BodyResponseCallback<Schema$WorkloadProfileHealth>, callback: BodyResponseCallback<Schema$WorkloadProfileHealth>): void;
        get(params: Params$Resource$Projects$Locations$Discoveredprofiles$Health$Get, callback: BodyResponseCallback<Schema$WorkloadProfileHealth>): void;
        get(callback: BodyResponseCallback<Schema$WorkloadProfileHealth>): void;
    }
    export interface Params$Resource$Projects$Locations$Discoveredprofiles$Health$Get extends StandardParameters {
        /**
         * Required. The resource name
         */
        name?: string;
    }
    export class Resource$Projects$Locations$Evaluations {
        context: APIRequestContext;
        executions: Resource$Projects$Locations$Evaluations$Executions;
        constructor(context: APIRequestContext);
        /**
         * Creates a new Evaluation in a given project and location.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await workloadmanager.projects.locations.evaluations.create({
         *     // Required. Id of the requesting object.
         *     evaluationId: 'placeholder-value',
         *     // Required. The resource prefix of the evaluation location using the form: `projects/{project_id\}/locations/{location_id\}`.
         *     parent: 'projects/my-project/locations/my-location',
         *     // Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
         *     requestId: 'placeholder-value',
         *
         *     // Request body metadata
         *     requestBody: {
         *       // request body parameters
         *       // {
         *       //   "bigQueryDestination": {},
         *       //   "createTime": "my_createTime",
         *       //   "customRulesBucket": "my_customRulesBucket",
         *       //   "description": "my_description",
         *       //   "evaluationType": "my_evaluationType",
         *       //   "kmsKey": "my_kmsKey",
         *       //   "labels": {},
         *       //   "name": "my_name",
         *       //   "resourceFilter": {},
         *       //   "resourceStatus": {},
         *       //   "ruleNames": [],
         *       //   "schedule": "my_schedule",
         *       //   "updateTime": "my_updateTime"
         *       // }
         *     },
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "done": false,
         *   //   "error": {},
         *   //   "metadata": {},
         *   //   "name": "my_name",
         *   //   "response": {}
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        create(params: Params$Resource$Projects$Locations$Evaluations$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        create(params?: Params$Resource$Projects$Locations$Evaluations$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
        create(params: Params$Resource$Projects$Locations$Evaluations$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        create(params: Params$Resource$Projects$Locations$Evaluations$Create, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
        create(params: Params$Resource$Projects$Locations$Evaluations$Create, callback: BodyResponseCallback<Schema$Operation>): void;
        create(callback: BodyResponseCallback<Schema$Operation>): void;
        /**
         * Deletes a single Evaluation.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await workloadmanager.projects.locations.evaluations.delete({
         *     // Optional. Followed the best practice from https://aip.dev/135#cascading-delete.
         *     force: 'placeholder-value',
         *     // Required. Name of the resource.
         *     name: 'projects/my-project/locations/my-location/evaluations/my-evaluation',
         *     // Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
         *     requestId: 'placeholder-value',
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "done": false,
         *   //   "error": {},
         *   //   "metadata": {},
         *   //   "name": "my_name",
         *   //   "response": {}
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        delete(params: Params$Resource$Projects$Locations$Evaluations$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        delete(params?: Params$Resource$Projects$Locations$Evaluations$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
        delete(params: Params$Resource$Projects$Locations$Evaluations$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        delete(params: Params$Resource$Projects$Locations$Evaluations$Delete, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
        delete(params: Params$Resource$Projects$Locations$Evaluations$Delete, callback: BodyResponseCallback<Schema$Operation>): void;
        delete(callback: BodyResponseCallback<Schema$Operation>): void;
        /**
         * Gets details of a single Evaluation.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await workloadmanager.projects.locations.evaluations.get({
         *     // Required. Name of the resource.
         *     name: 'projects/my-project/locations/my-location/evaluations/my-evaluation',
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "bigQueryDestination": {},
         *   //   "createTime": "my_createTime",
         *   //   "customRulesBucket": "my_customRulesBucket",
         *   //   "description": "my_description",
         *   //   "evaluationType": "my_evaluationType",
         *   //   "kmsKey": "my_kmsKey",
         *   //   "labels": {},
         *   //   "name": "my_name",
         *   //   "resourceFilter": {},
         *   //   "resourceStatus": {},
         *   //   "ruleNames": [],
         *   //   "schedule": "my_schedule",
         *   //   "updateTime": "my_updateTime"
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        get(params: Params$Resource$Projects$Locations$Evaluations$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        get(params?: Params$Resource$Projects$Locations$Evaluations$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Evaluation>>;
        get(params: Params$Resource$Projects$Locations$Evaluations$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        get(params: Params$Resource$Projects$Locations$Evaluations$Get, options: MethodOptions | BodyResponseCallback<Schema$Evaluation>, callback: BodyResponseCallback<Schema$Evaluation>): void;
        get(params: Params$Resource$Projects$Locations$Evaluations$Get, callback: BodyResponseCallback<Schema$Evaluation>): void;
        get(callback: BodyResponseCallback<Schema$Evaluation>): void;
        /**
         * Lists Evaluations in a given project and location.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await workloadmanager.projects.locations.evaluations.list({
         *     // Filter to be applied when listing the evaluation results.
         *     filter: 'placeholder-value',
         *     // Hint for how to order the results.
         *     orderBy: 'placeholder-value',
         *     // Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.
         *     pageSize: 'placeholder-value',
         *     // A token identifying a page of results the server should return.
         *     pageToken: 'placeholder-value',
         *     // Required. Parent value for ListEvaluationsRequest.
         *     parent: 'projects/my-project/locations/my-location',
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "evaluations": [],
         *   //   "nextPageToken": "my_nextPageToken",
         *   //   "unreachable": []
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        list(params: Params$Resource$Projects$Locations$Evaluations$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        list(params?: Params$Resource$Projects$Locations$Evaluations$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListEvaluationsResponse>>;
        list(params: Params$Resource$Projects$Locations$Evaluations$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        list(params: Params$Resource$Projects$Locations$Evaluations$List, options: MethodOptions | BodyResponseCallback<Schema$ListEvaluationsResponse>, callback: BodyResponseCallback<Schema$ListEvaluationsResponse>): void;
        list(params: Params$Resource$Projects$Locations$Evaluations$List, callback: BodyResponseCallback<Schema$ListEvaluationsResponse>): void;
        list(callback: BodyResponseCallback<Schema$ListEvaluationsResponse>): void;
        /**
         * Updates the parameters of a single Evaluation.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await workloadmanager.projects.locations.evaluations.patch({
         *     // Name of resource that has the form `projects/{project_id\}/locations/{location_id\}/evaluations/{evaluation_id\}`.
         *     name: 'projects/my-project/locations/my-location/evaluations/my-evaluation',
         *     // Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
         *     requestId: 'placeholder-value',
         *     // Required. Field mask is used to specify the fields to be overwritten in the Evaluation resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask.
         *     updateMask: 'placeholder-value',
         *
         *     // Request body metadata
         *     requestBody: {
         *       // request body parameters
         *       // {
         *       //   "bigQueryDestination": {},
         *       //   "createTime": "my_createTime",
         *       //   "customRulesBucket": "my_customRulesBucket",
         *       //   "description": "my_description",
         *       //   "evaluationType": "my_evaluationType",
         *       //   "kmsKey": "my_kmsKey",
         *       //   "labels": {},
         *       //   "name": "my_name",
         *       //   "resourceFilter": {},
         *       //   "resourceStatus": {},
         *       //   "ruleNames": [],
         *       //   "schedule": "my_schedule",
         *       //   "updateTime": "my_updateTime"
         *       // }
         *     },
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "done": false,
         *   //   "error": {},
         *   //   "metadata": {},
         *   //   "name": "my_name",
         *   //   "response": {}
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        patch(params: Params$Resource$Projects$Locations$Evaluations$Patch, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        patch(params?: Params$Resource$Projects$Locations$Evaluations$Patch, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
        patch(params: Params$Resource$Projects$Locations$Evaluations$Patch, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        patch(params: Params$Resource$Projects$Locations$Evaluations$Patch, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
        patch(params: Params$Resource$Projects$Locations$Evaluations$Patch, callback: BodyResponseCallback<Schema$Operation>): void;
        patch(callback: BodyResponseCallback<Schema$Operation>): void;
    }
    export interface Params$Resource$Projects$Locations$Evaluations$Create extends StandardParameters {
        /**
         * Required. Id of the requesting object.
         */
        evaluationId?: string;
        /**
         * Required. The resource prefix of the evaluation location using the form: `projects/{project_id\}/locations/{location_id\}`.
         */
        parent?: string;
        /**
         * Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
         */
        requestId?: string;
        /**
         * Request body metadata
         */
        requestBody?: Schema$Evaluation;
    }
    export interface Params$Resource$Projects$Locations$Evaluations$Delete extends StandardParameters {
        /**
         * Optional. Followed the best practice from https://aip.dev/135#cascading-delete.
         */
        force?: boolean;
        /**
         * Required. Name of the resource.
         */
        name?: string;
        /**
         * Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
         */
        requestId?: string;
    }
    export interface Params$Resource$Projects$Locations$Evaluations$Get extends StandardParameters {
        /**
         * Required. Name of the resource.
         */
        name?: string;
    }
    export interface Params$Resource$Projects$Locations$Evaluations$List extends StandardParameters {
        /**
         * Filter to be applied when listing the evaluation results.
         */
        filter?: string;
        /**
         * Hint for how to order the results.
         */
        orderBy?: string;
        /**
         * Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.
         */
        pageSize?: number;
        /**
         * A token identifying a page of results the server should return.
         */
        pageToken?: string;
        /**
         * Required. Parent value for ListEvaluationsRequest.
         */
        parent?: string;
    }
    export interface Params$Resource$Projects$Locations$Evaluations$Patch extends StandardParameters {
        /**
         * Name of resource that has the form `projects/{project_id\}/locations/{location_id\}/evaluations/{evaluation_id\}`.
         */
        name?: string;
        /**
         * Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
         */
        requestId?: string;
        /**
         * Required. Field mask is used to specify the fields to be overwritten in the Evaluation resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask.
         */
        updateMask?: string;
        /**
         * Request body metadata
         */
        requestBody?: Schema$Evaluation;
    }
    export class Resource$Projects$Locations$Evaluations$Executions {
        context: APIRequestContext;
        results: Resource$Projects$Locations$Evaluations$Executions$Results;
        scannedResources: Resource$Projects$Locations$Evaluations$Executions$Scannedresources;
        constructor(context: APIRequestContext);
        /**
         * Deletes a single Execution.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res =
         *     await workloadmanager.projects.locations.evaluations.executions.delete({
         *       // Required. Name of the resource.
         *       name: 'projects/my-project/locations/my-location/evaluations/my-evaluation/executions/my-execution',
         *       // Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
         *       requestId: 'placeholder-value',
         *     });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "done": false,
         *   //   "error": {},
         *   //   "metadata": {},
         *   //   "name": "my_name",
         *   //   "response": {}
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        delete(params: Params$Resource$Projects$Locations$Evaluations$Executions$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        delete(params?: Params$Resource$Projects$Locations$Evaluations$Executions$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
        delete(params: Params$Resource$Projects$Locations$Evaluations$Executions$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        delete(params: Params$Resource$Projects$Locations$Evaluations$Executions$Delete, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
        delete(params: Params$Resource$Projects$Locations$Evaluations$Executions$Delete, callback: BodyResponseCallback<Schema$Operation>): void;
        delete(callback: BodyResponseCallback<Schema$Operation>): void;
        /**
         * Gets details of a single Execution.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res =
         *     await workloadmanager.projects.locations.evaluations.executions.get({
         *       // Required. Name of the resource.
         *       name: 'projects/my-project/locations/my-location/evaluations/my-evaluation/executions/my-execution',
         *     });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "endTime": "my_endTime",
         *   //   "engine": "my_engine",
         *   //   "evaluationId": "my_evaluationId",
         *   //   "externalDataSources": [],
         *   //   "inventoryTime": "my_inventoryTime",
         *   //   "labels": {},
         *   //   "name": "my_name",
         *   //   "notices": [],
         *   //   "resultSummary": {},
         *   //   "ruleResults": [],
         *   //   "runType": "my_runType",
         *   //   "startTime": "my_startTime",
         *   //   "state": "my_state"
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        get(params: Params$Resource$Projects$Locations$Evaluations$Executions$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        get(params?: Params$Resource$Projects$Locations$Evaluations$Executions$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Execution>>;
        get(params: Params$Resource$Projects$Locations$Evaluations$Executions$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        get(params: Params$Resource$Projects$Locations$Evaluations$Executions$Get, options: MethodOptions | BodyResponseCallback<Schema$Execution>, callback: BodyResponseCallback<Schema$Execution>): void;
        get(params: Params$Resource$Projects$Locations$Evaluations$Executions$Get, callback: BodyResponseCallback<Schema$Execution>): void;
        get(callback: BodyResponseCallback<Schema$Execution>): void;
        /**
         * Lists Executions in a given project and location.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res =
         *     await workloadmanager.projects.locations.evaluations.executions.list({
         *       // Filtering results.
         *       filter: 'placeholder-value',
         *       // Field to sort by. See https://google.aip.dev/132#ordering for more details.
         *       orderBy: 'placeholder-value',
         *       // Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.
         *       pageSize: 'placeholder-value',
         *       // A token identifying a page of results the server should return.
         *       pageToken: 'placeholder-value',
         *       // Required. The resource prefix of the Execution using the form: `projects/{project\}/locations/{location\}/evaluations/{evaluation\}`.
         *       parent:
         *         'projects/my-project/locations/my-location/evaluations/my-evaluation',
         *     });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "executions": [],
         *   //   "nextPageToken": "my_nextPageToken",
         *   //   "unreachable": []
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        list(params: Params$Resource$Projects$Locations$Evaluations$Executions$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        list(params?: Params$Resource$Projects$Locations$Evaluations$Executions$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListExecutionsResponse>>;
        list(params: Params$Resource$Projects$Locations$Evaluations$Executions$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        list(params: Params$Resource$Projects$Locations$Evaluations$Executions$List, options: MethodOptions | BodyResponseCallback<Schema$ListExecutionsResponse>, callback: BodyResponseCallback<Schema$ListExecutionsResponse>): void;
        list(params: Params$Resource$Projects$Locations$Evaluations$Executions$List, callback: BodyResponseCallback<Schema$ListExecutionsResponse>): void;
        list(callback: BodyResponseCallback<Schema$ListExecutionsResponse>): void;
        /**
         * Creates a new Execution in a given project and location.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res =
         *     await workloadmanager.projects.locations.evaluations.executions.run({
         *       // Required. The resource name of the Evaluation using the form: `projects/{project\}/locations/{location\}/evaluations/{evaluation\}`.
         *       name: 'projects/my-project/locations/my-location/evaluations/my-evaluation',
         *
         *       // Request body metadata
         *       requestBody: {
         *         // request body parameters
         *         // {
         *         //   "execution": {},
         *         //   "executionId": "my_executionId",
         *         //   "requestId": "my_requestId"
         *         // }
         *       },
         *     });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "done": false,
         *   //   "error": {},
         *   //   "metadata": {},
         *   //   "name": "my_name",
         *   //   "response": {}
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        run(params: Params$Resource$Projects$Locations$Evaluations$Executions$Run, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        run(params?: Params$Resource$Projects$Locations$Evaluations$Executions$Run, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
        run(params: Params$Resource$Projects$Locations$Evaluations$Executions$Run, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        run(params: Params$Resource$Projects$Locations$Evaluations$Executions$Run, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
        run(params: Params$Resource$Projects$Locations$Evaluations$Executions$Run, callback: BodyResponseCallback<Schema$Operation>): void;
        run(callback: BodyResponseCallback<Schema$Operation>): void;
    }
    export interface Params$Resource$Projects$Locations$Evaluations$Executions$Delete extends StandardParameters {
        /**
         * Required. Name of the resource.
         */
        name?: string;
        /**
         * Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
         */
        requestId?: string;
    }
    export interface Params$Resource$Projects$Locations$Evaluations$Executions$Get extends StandardParameters {
        /**
         * Required. Name of the resource.
         */
        name?: string;
    }
    export interface Params$Resource$Projects$Locations$Evaluations$Executions$List extends StandardParameters {
        /**
         * Filtering results.
         */
        filter?: string;
        /**
         * Field to sort by. See https://google.aip.dev/132#ordering for more details.
         */
        orderBy?: string;
        /**
         * Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.
         */
        pageSize?: number;
        /**
         * A token identifying a page of results the server should return.
         */
        pageToken?: string;
        /**
         * Required. The resource prefix of the Execution using the form: `projects/{project\}/locations/{location\}/evaluations/{evaluation\}`.
         */
        parent?: string;
    }
    export interface Params$Resource$Projects$Locations$Evaluations$Executions$Run extends StandardParameters {
        /**
         * Required. The resource name of the Evaluation using the form: `projects/{project\}/locations/{location\}/evaluations/{evaluation\}`.
         */
        name?: string;
        /**
         * Request body metadata
         */
        requestBody?: Schema$RunEvaluationRequest;
    }
    export class Resource$Projects$Locations$Evaluations$Executions$Results {
        context: APIRequestContext;
        constructor(context: APIRequestContext);
        /**
         * Lists the result of a single evaluation.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res =
         *     await workloadmanager.projects.locations.evaluations.executions.results.list(
         *       {
         *         // Filtering results.
         *         filter: 'placeholder-value',
         *         // Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.
         *         pageSize: 'placeholder-value',
         *         // A token identifying a page of results the server should return.
         *         pageToken: 'placeholder-value',
         *         // Required. The execution results. Format: {parent\}/evaluations/x/executions/x/results.
         *         parent:
         *           'projects/my-project/locations/my-location/evaluations/my-evaluation/executions/my-execution',
         *       },
         *     );
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "executionResults": [],
         *   //   "nextPageToken": "my_nextPageToken"
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        list(params: Params$Resource$Projects$Locations$Evaluations$Executions$Results$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        list(params?: Params$Resource$Projects$Locations$Evaluations$Executions$Results$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListExecutionResultsResponse>>;
        list(params: Params$Resource$Projects$Locations$Evaluations$Executions$Results$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        list(params: Params$Resource$Projects$Locations$Evaluations$Executions$Results$List, options: MethodOptions | BodyResponseCallback<Schema$ListExecutionResultsResponse>, callback: BodyResponseCallback<Schema$ListExecutionResultsResponse>): void;
        list(params: Params$Resource$Projects$Locations$Evaluations$Executions$Results$List, callback: BodyResponseCallback<Schema$ListExecutionResultsResponse>): void;
        list(callback: BodyResponseCallback<Schema$ListExecutionResultsResponse>): void;
    }
    export interface Params$Resource$Projects$Locations$Evaluations$Executions$Results$List extends StandardParameters {
        /**
         * Filtering results.
         */
        filter?: string;
        /**
         * Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.
         */
        pageSize?: number;
        /**
         * A token identifying a page of results the server should return.
         */
        pageToken?: string;
        /**
         * Required. The execution results. Format: {parent\}/evaluations/x/executions/x/results.
         */
        parent?: string;
    }
    export class Resource$Projects$Locations$Evaluations$Executions$Scannedresources {
        context: APIRequestContext;
        constructor(context: APIRequestContext);
        /**
         * List all scanned resources for a single Execution.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res =
         *     await workloadmanager.projects.locations.evaluations.executions.scannedResources.list(
         *       {
         *         // Filtering results.
         *         filter: 'placeholder-value',
         *         // Field to sort by. See https://google.aip.dev/132#ordering for more details.
         *         orderBy: 'placeholder-value',
         *         // Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.
         *         pageSize: 'placeholder-value',
         *         // A token identifying a page of results the server should return.
         *         pageToken: 'placeholder-value',
         *         // Required. Parent for ListScannedResourcesRequest.
         *         parent:
         *           'projects/my-project/locations/my-location/evaluations/my-evaluation/executions/my-execution',
         *         // Rule name.
         *         rule: 'placeholder-value',
         *       },
         *     );
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "nextPageToken": "my_nextPageToken",
         *   //   "scannedResources": []
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        list(params: Params$Resource$Projects$Locations$Evaluations$Executions$Scannedresources$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        list(params?: Params$Resource$Projects$Locations$Evaluations$Executions$Scannedresources$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListScannedResourcesResponse>>;
        list(params: Params$Resource$Projects$Locations$Evaluations$Executions$Scannedresources$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        list(params: Params$Resource$Projects$Locations$Evaluations$Executions$Scannedresources$List, options: MethodOptions | BodyResponseCallback<Schema$ListScannedResourcesResponse>, callback: BodyResponseCallback<Schema$ListScannedResourcesResponse>): void;
        list(params: Params$Resource$Projects$Locations$Evaluations$Executions$Scannedresources$List, callback: BodyResponseCallback<Schema$ListScannedResourcesResponse>): void;
        list(callback: BodyResponseCallback<Schema$ListScannedResourcesResponse>): void;
    }
    export interface Params$Resource$Projects$Locations$Evaluations$Executions$Scannedresources$List extends StandardParameters {
        /**
         * Filtering results.
         */
        filter?: string;
        /**
         * Field to sort by. See https://google.aip.dev/132#ordering for more details.
         */
        orderBy?: string;
        /**
         * Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.
         */
        pageSize?: number;
        /**
         * A token identifying a page of results the server should return.
         */
        pageToken?: string;
        /**
         * Required. Parent for ListScannedResourcesRequest.
         */
        parent?: string;
        /**
         * Rule name.
         */
        rule?: string;
    }
    export class Resource$Projects$Locations$Insights {
        context: APIRequestContext;
        constructor(context: APIRequestContext);
        /**
         * Delete the data insights from workload manager data warehouse.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await workloadmanager.projects.locations.insights.delete({
         *     // Required. The system id of the SAP system resource to delete. Formatted as projects/{project\}/locations/{location\}/sapSystems/{sap_system_id\}
         *     name: 'projects/my-project/locations/my-location/insights/my-insight',
         *     // Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
         *     requestId: 'placeholder-value',
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {}
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        delete(params: Params$Resource$Projects$Locations$Insights$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        delete(params?: Params$Resource$Projects$Locations$Insights$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Empty>>;
        delete(params: Params$Resource$Projects$Locations$Insights$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        delete(params: Params$Resource$Projects$Locations$Insights$Delete, options: MethodOptions | BodyResponseCallback<Schema$Empty>, callback: BodyResponseCallback<Schema$Empty>): void;
        delete(params: Params$Resource$Projects$Locations$Insights$Delete, callback: BodyResponseCallback<Schema$Empty>): void;
        delete(callback: BodyResponseCallback<Schema$Empty>): void;
        /**
         * Write the data insights to workload manager data warehouse.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await workloadmanager.projects.locations.insights.writeInsight({
         *     // Required. The GCP location. The format is: projects/{project\}/locations/{location\}.
         *     location: 'projects/my-project/locations/my-location',
         *
         *     // Request body metadata
         *     requestBody: {
         *       // request body parameters
         *       // {
         *       //   "agentVersion": "my_agentVersion",
         *       //   "insight": {},
         *       //   "requestId": "my_requestId"
         *       // }
         *     },
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {}
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        writeInsight(params: Params$Resource$Projects$Locations$Insights$Writeinsight, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        writeInsight(params?: Params$Resource$Projects$Locations$Insights$Writeinsight, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$WriteInsightResponse>>;
        writeInsight(params: Params$Resource$Projects$Locations$Insights$Writeinsight, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        writeInsight(params: Params$Resource$Projects$Locations$Insights$Writeinsight, options: MethodOptions | BodyResponseCallback<Schema$WriteInsightResponse>, callback: BodyResponseCallback<Schema$WriteInsightResponse>): void;
        writeInsight(params: Params$Resource$Projects$Locations$Insights$Writeinsight, callback: BodyResponseCallback<Schema$WriteInsightResponse>): void;
        writeInsight(callback: BodyResponseCallback<Schema$WriteInsightResponse>): void;
    }
    export interface Params$Resource$Projects$Locations$Insights$Delete extends StandardParameters {
        /**
         * Required. The system id of the SAP system resource to delete. Formatted as projects/{project\}/locations/{location\}/sapSystems/{sap_system_id\}
         */
        name?: string;
        /**
         * Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
         */
        requestId?: string;
    }
    export interface Params$Resource$Projects$Locations$Insights$Writeinsight extends StandardParameters {
        /**
         * Required. The GCP location. The format is: projects/{project\}/locations/{location\}.
         */
        location?: string;
        /**
         * Request body metadata
         */
        requestBody?: Schema$WriteInsightRequest;
    }
    export class Resource$Projects$Locations$Operations {
        context: APIRequestContext;
        constructor(context: APIRequestContext);
        /**
         * Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await workloadmanager.projects.locations.operations.cancel({
         *     // The name of the operation resource to be cancelled.
         *     name: 'projects/my-project/locations/my-location/operations/my-operation',
         *
         *     // Request body metadata
         *     requestBody: {
         *       // request body parameters
         *       // {}
         *     },
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {}
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        cancel(params: Params$Resource$Projects$Locations$Operations$Cancel, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        cancel(params?: Params$Resource$Projects$Locations$Operations$Cancel, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Empty>>;
        cancel(params: Params$Resource$Projects$Locations$Operations$Cancel, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        cancel(params: Params$Resource$Projects$Locations$Operations$Cancel, options: MethodOptions | BodyResponseCallback<Schema$Empty>, callback: BodyResponseCallback<Schema$Empty>): void;
        cancel(params: Params$Resource$Projects$Locations$Operations$Cancel, callback: BodyResponseCallback<Schema$Empty>): void;
        cancel(callback: BodyResponseCallback<Schema$Empty>): void;
        /**
         * Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await workloadmanager.projects.locations.operations.delete({
         *     // The name of the operation resource to be deleted.
         *     name: 'projects/my-project/locations/my-location/operations/my-operation',
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {}
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        delete(params: Params$Resource$Projects$Locations$Operations$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        delete(params?: Params$Resource$Projects$Locations$Operations$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Empty>>;
        delete(params: Params$Resource$Projects$Locations$Operations$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        delete(params: Params$Resource$Projects$Locations$Operations$Delete, options: MethodOptions | BodyResponseCallback<Schema$Empty>, callback: BodyResponseCallback<Schema$Empty>): void;
        delete(params: Params$Resource$Projects$Locations$Operations$Delete, callback: BodyResponseCallback<Schema$Empty>): void;
        delete(callback: BodyResponseCallback<Schema$Empty>): void;
        /**
         * Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await workloadmanager.projects.locations.operations.get({
         *     // The name of the operation resource.
         *     name: 'projects/my-project/locations/my-location/operations/my-operation',
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "done": false,
         *   //   "error": {},
         *   //   "metadata": {},
         *   //   "name": "my_name",
         *   //   "response": {}
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        get(params: Params$Resource$Projects$Locations$Operations$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        get(params?: Params$Resource$Projects$Locations$Operations$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Operation>>;
        get(params: Params$Resource$Projects$Locations$Operations$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        get(params: Params$Resource$Projects$Locations$Operations$Get, options: MethodOptions | BodyResponseCallback<Schema$Operation>, callback: BodyResponseCallback<Schema$Operation>): void;
        get(params: Params$Resource$Projects$Locations$Operations$Get, callback: BodyResponseCallback<Schema$Operation>): void;
        get(callback: BodyResponseCallback<Schema$Operation>): void;
        /**
         * Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await workloadmanager.projects.locations.operations.list({
         *     // The standard list filter.
         *     filter: 'placeholder-value',
         *     // The name of the operation's parent resource.
         *     name: 'projects/my-project/locations/my-location',
         *     // The standard list page size.
         *     pageSize: 'placeholder-value',
         *     // The standard list page token.
         *     pageToken: 'placeholder-value',
         *     // When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation.
         *     returnPartialSuccess: 'placeholder-value',
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "nextPageToken": "my_nextPageToken",
         *   //   "operations": [],
         *   //   "unreachable": []
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        list(params: Params$Resource$Projects$Locations$Operations$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        list(params?: Params$Resource$Projects$Locations$Operations$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListOperationsResponse>>;
        list(params: Params$Resource$Projects$Locations$Operations$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        list(params: Params$Resource$Projects$Locations$Operations$List, options: MethodOptions | BodyResponseCallback<Schema$ListOperationsResponse>, callback: BodyResponseCallback<Schema$ListOperationsResponse>): void;
        list(params: Params$Resource$Projects$Locations$Operations$List, callback: BodyResponseCallback<Schema$ListOperationsResponse>): void;
        list(callback: BodyResponseCallback<Schema$ListOperationsResponse>): void;
    }
    export interface Params$Resource$Projects$Locations$Operations$Cancel extends StandardParameters {
        /**
         * The name of the operation resource to be cancelled.
         */
        name?: string;
        /**
         * Request body metadata
         */
        requestBody?: Schema$CancelOperationRequest;
    }
    export interface Params$Resource$Projects$Locations$Operations$Delete extends StandardParameters {
        /**
         * The name of the operation resource to be deleted.
         */
        name?: string;
    }
    export interface Params$Resource$Projects$Locations$Operations$Get extends StandardParameters {
        /**
         * The name of the operation resource.
         */
        name?: string;
    }
    export interface Params$Resource$Projects$Locations$Operations$List extends StandardParameters {
        /**
         * The standard list filter.
         */
        filter?: string;
        /**
         * The name of the operation's parent resource.
         */
        name?: string;
        /**
         * The standard list page size.
         */
        pageSize?: number;
        /**
         * The standard list page token.
         */
        pageToken?: string;
        /**
         * When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation.
         */
        returnPartialSuccess?: boolean;
    }
    export class Resource$Projects$Locations$Rules {
        context: APIRequestContext;
        constructor(context: APIRequestContext);
        /**
         * Lists rules in a given project.
         * @example
         * ```js
         * // Before running the sample:
         * // - Enable the API at:
         * //   https://console.developers.google.com/apis/api/workloadmanager.googleapis.com
         * // - Login into gcloud by running:
         * //   ```sh
         * //   $ gcloud auth application-default login
         * //   ```
         * // - Install the npm module by running:
         * //   ```sh
         * //   $ npm install googleapis
         * //   ```
         *
         * const {google} = require('googleapis');
         * const workloadmanager = google.workloadmanager('v1');
         *
         * async function main() {
         *   const auth = new google.auth.GoogleAuth({
         *     // Scopes can be specified either as an array or as a single, space-delimited string.
         *     scopes: ['https://www.googleapis.com/auth/cloud-platform'],
         *   });
         *
         *   // Acquire an auth client, and bind it to all future calls
         *   const authClient = await auth.getClient();
         *   google.options({auth: authClient});
         *
         *   // Do the magic
         *   const res = await workloadmanager.projects.locations.rules.list({
         *     // The Cloud Storage bucket name for custom rules.
         *     customRulesBucket: 'placeholder-value',
         *     // Optional. The evaluation type of the rules will be applied to. The Cloud Storage bucket name for custom rules.
         *     evaluationType: 'placeholder-value',
         *     // Filter based on primary_category, secondary_category.
         *     filter: 'placeholder-value',
         *     // Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.
         *     pageSize: 'placeholder-value',
         *     // A token identifying a page of results the server should return.
         *     pageToken: 'placeholder-value',
         *     // Required. The [project] on which to execute the request. The format is: projects/{project_id\}/locations/{location\} Currently, the pre-defined rules are global available to all projects and all regions.
         *     parent: 'projects/my-project/locations/my-location',
         *   });
         *   console.log(res.data);
         *
         *   // Example response
         *   // {
         *   //   "rules": []
         *   // }
         * }
         *
         * main().catch(e => {
         *   console.error(e);
         *   throw e;
         * });
         *
         * ```
         *
         * @param params - Parameters for request
         * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
         * @param callback - Optional callback that handles the response.
         * @returns A promise if used with async/await, or void if used with a callback.
         */
        list(params: Params$Resource$Projects$Locations$Rules$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
        list(params?: Params$Resource$Projects$Locations$Rules$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListRulesResponse>>;
        list(params: Params$Resource$Projects$Locations$Rules$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
        list(params: Params$Resource$Projects$Locations$Rules$List, options: MethodOptions | BodyResponseCallback<Schema$ListRulesResponse>, callback: BodyResponseCallback<Schema$ListRulesResponse>): void;
        list(params: Params$Resource$Projects$Locations$Rules$List, callback: BodyResponseCallback<Schema$ListRulesResponse>): void;
        list(callback: BodyResponseCallback<Schema$ListRulesResponse>): void;
    }
    export interface Params$Resource$Projects$Locations$Rules$List extends StandardParameters {
        /**
         * The Cloud Storage bucket name for custom rules.
         */
        customRulesBucket?: string;
        /**
         * Optional. The evaluation type of the rules will be applied to. The Cloud Storage bucket name for custom rules.
         */
        evaluationType?: string;
        /**
         * Filter based on primary_category, secondary_category.
         */
        filter?: string;
        /**
         * Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.
         */
        pageSize?: number;
        /**
         * A token identifying a page of results the server should return.
         */
        pageToken?: string;
        /**
         * Required. The [project] on which to execute the request. The format is: projects/{project_id\}/locations/{location\} Currently, the pre-defined rules are global available to all projects and all regions.
         */
        parent?: string;
    }
    export {};
}
