UNPKG

@datadog/datadog-api-client

Version:

OpenAPI client for Datadog APIs

17 lines (16 loc) 1.03 kB
/** * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. * This product includes software developed at Datadog (https://www.datadoghq.com/). * Copyright 2020-Present Datadog, Inc. */ import { UnparsedObject } from "../../datadog-api-client-common/util"; /** * Access control list setting for objects written to the bucket. */ export declare type ObservabilityPipelineGoogleCloudStorageDestinationAcl = typeof PRIVATE | typeof PROJECTNOT_PRIVATE | typeof PUBLICNOT_READ | typeof AUTHENTICATEDNOT_READ | typeof BUCKETNOT_OWNERNOT_READ | typeof BUCKETNOT_OWNERNOT_FULLNOT_CONTROL | UnparsedObject; export declare const PRIVATE = "private"; export declare const PROJECTNOT_PRIVATE = "project-private"; export declare const PUBLICNOT_READ = "public-read"; export declare const AUTHENTICATEDNOT_READ = "authenticated-read"; export declare const BUCKETNOT_OWNERNOT_READ = "bucket-owner-read"; export declare const BUCKETNOT_OWNERNOT_FULLNOT_CONTROL = "bucket-owner-full-control";