@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
90 lines (89 loc) • 2.62 kB
TypeScript
/**
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
* This product includes software developed at Datadog (https://www.datadoghq.com/).
* Copyright 2020-Present Datadog, Inc.
*/
import { CloudInventoryCloudProviderId } from "./CloudInventoryCloudProviderId";
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
/**
* Attributes for a Storage Management configuration. Fields other than `id` may be empty in the response immediately after a create or update; subsequent reads return the full configuration.
*/
export declare class CloudInventorySyncConfigAttributes {
/**
* AWS account ID for the inventory bucket.
*/
"awsAccountId": string;
/**
* AWS S3 bucket name for inventory files.
*/
"awsBucketName": string;
/**
* AWS Region for the inventory bucket.
*/
"awsRegion": string;
/**
* Azure AD application (client) ID.
*/
"azureClientId": string;
/**
* Azure blob container name.
*/
"azureContainerName": string;
/**
* Azure storage account name.
*/
"azureStorageAccountName": string;
/**
* Azure AD tenant ID.
*/
"azureTenantId": string;
/**
* Cloud provider for this sync configuration (`aws`, `gcp`, or `azure`). For requests, must match the provider block supplied under `attributes`.
*/
"cloudProvider": CloudInventoryCloudProviderId;
/**
* Human-readable error detail when sync is unhealthy.
*/
"error": string;
/**
* Machine-readable error code when sync is unhealthy.
*/
"errorCode": string;
/**
* GCS bucket name for inventory files Datadog reads.
*/
"gcpBucketName": string;
/**
* GCP project ID.
*/
"gcpProjectId": string;
/**
* Service account email for bucket access.
*/
"gcpServiceAccountEmail": string;
/**
* Object key prefix where inventory reports are written. Returns `/` when reports are written at the bucket root.
*/
"prefix": string;
/**
* A container for additional, undeclared properties.
* This is a holder for any undeclared properties as specified with
* the 'additionalProperties' keyword in the OAS document.
*/
"additionalProperties"?: {
[key: string]: any;
};
/**
* @ignore
*/
"_unparsed"?: boolean;
/**
* @ignore
*/
static readonly attributeTypeMap: AttributeTypeMap;
/**
* @ignore
*/
static getAttributeTypeMap(): AttributeTypeMap;
constructor();
}