/
home
/
infinitibizsol
/
.trash
/
node_modules.3
/
googleapis
/
build
/
src
/
apis
/
advisorynotifications
/
File Upload :
llllll
Current File: /home/infinitibizsol/.trash/node_modules.3/googleapis/build/src/apis/advisorynotifications/v1.d.ts
/// <reference types="node" /> import { OAuth2Client, JWT, Compute, UserRefreshClient, BaseExternalAccountClient, GaxiosPromise, GoogleConfigurable, MethodOptions, StreamMethodOptions, GlobalOptions, GoogleAuth, BodyResponseCallback, APIRequestContext } from 'googleapis-common'; import { Readable } from 'stream'; export declare namespace advisorynotifications_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; } /** * Advisory Notifications API * * An API for accessing Advisory Notifications in Google Cloud * * @example * ```js * const {google} = require('googleapis'); * const advisorynotifications = google.advisorynotifications('v1'); * ``` */ export class Advisorynotifications { context: APIRequestContext; organizations: Resource$Organizations; projects: Resource$Projects; constructor(options: GlobalOptions, google?: GoogleConfigurable); } /** * Attachment with specific information about the issue. */ export interface Schema$GoogleCloudAdvisorynotificationsV1Attachment { /** * A CSV file attachment. Max size is 10 MB. */ csv?: Schema$GoogleCloudAdvisorynotificationsV1Csv; /** * The title of the attachment. */ displayName?: string | null; } /** * A representation of a CSV file attachment, as a list of column headers and a list of data rows. */ export interface Schema$GoogleCloudAdvisorynotificationsV1Csv { /** * The list of data rows in a CSV file, as string arrays rather than as a single comma-separated string. */ dataRows?: Schema$GoogleCloudAdvisorynotificationsV1CsvCsvRow[]; /** * The list of headers for data columns in a CSV file. */ headers?: string[] | null; } /** * A representation of a single data row in a CSV file. */ export interface Schema$GoogleCloudAdvisorynotificationsV1CsvCsvRow { /** * The data entries in a CSV file row, as a string array rather than a single comma-separated string. */ entries?: string[] | null; } /** * Response of ListNotifications endpoint. */ export interface Schema$GoogleCloudAdvisorynotificationsV1ListNotificationsResponse { /** * 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; /** * List of notifications under a given parent. */ notifications?: Schema$GoogleCloudAdvisorynotificationsV1Notification[]; /** * Estimation of a total number of notifications. */ totalSize?: number | null; } /** * A message which contains notification details. */ export interface Schema$GoogleCloudAdvisorynotificationsV1Message { /** * The attachments to download. */ attachments?: Schema$GoogleCloudAdvisorynotificationsV1Attachment[]; /** * The message content. */ body?: Schema$GoogleCloudAdvisorynotificationsV1MessageBody; /** * The Message creation timestamp. */ createTime?: string | null; /** * Time when Message was localized */ localizationTime?: string | null; } /** * A message body containing text. */ export interface Schema$GoogleCloudAdvisorynotificationsV1MessageBody { /** * The text content of the message body. */ text?: Schema$GoogleCloudAdvisorynotificationsV1Text; } /** * A notification object for notifying customers about security and privacy issues. */ export interface Schema$GoogleCloudAdvisorynotificationsV1Notification { /** * Output only. Time the notification was created. */ createTime?: string | null; /** * A list of messages in the notification. */ messages?: Schema$GoogleCloudAdvisorynotificationsV1Message[]; /** * The resource name of the notification. Format: organizations/{organization\}/locations/{location\}/notifications/{notification\} or projects/{project\}/locations/{location\}/notifications/{notification\}. */ name?: string | null; /** * Type of notification */ notificationType?: string | null; /** * The subject line of the notification. */ subject?: Schema$GoogleCloudAdvisorynotificationsV1Subject; } /** * Settings for each NotificationType. */ export interface Schema$GoogleCloudAdvisorynotificationsV1NotificationSettings { /** * Whether the associated NotificationType is enabled. */ enabled?: boolean | null; } /** * Settings for Advisory Notifications. */ export interface Schema$GoogleCloudAdvisorynotificationsV1Settings { /** * Required. Fingerprint for optimistic concurrency returned in Get requests. Must be provided for Update requests. If the value provided does not match the value known to the server, ABORTED will be thrown, and the client should retry the read-modify-write cycle. */ etag?: string | null; /** * Identifier. The resource name of the settings to retrieve. Format: organizations/{organization\}/locations/{location\}/settings. */ name?: string | null; /** * Required. Map of each notification type and its settings to get/set all settings at once. The server will validate the value for each notification type. */ notificationSettings?: { [key: string]: Schema$GoogleCloudAdvisorynotificationsV1NotificationSettings; } | null; } /** * A subject line of a notification. */ export interface Schema$GoogleCloudAdvisorynotificationsV1Subject { /** * The text content. */ text?: Schema$GoogleCloudAdvisorynotificationsV1Text; } /** * A text object containing the English text and its localized copies. */ export interface Schema$GoogleCloudAdvisorynotificationsV1Text { /** * The English copy. */ enText?: string | null; /** * Status of the localization. */ localizationState?: string | null; /** * The requested localized copy (if applicable). */ localizedText?: string | null; } export class Resource$Organizations { context: APIRequestContext; locations: Resource$Organizations$Locations; constructor(context: APIRequestContext); } export class Resource$Organizations$Locations { context: APIRequestContext; notifications: Resource$Organizations$Locations$Notifications; constructor(context: APIRequestContext); /** * Get notification settings. * * @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. */ getSettings(params: Params$Resource$Organizations$Locations$Getsettings, options: StreamMethodOptions): GaxiosPromise<Readable>; getSettings(params?: Params$Resource$Organizations$Locations$Getsettings, options?: MethodOptions): GaxiosPromise<Schema$GoogleCloudAdvisorynotificationsV1Settings>; getSettings(params: Params$Resource$Organizations$Locations$Getsettings, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void; getSettings(params: Params$Resource$Organizations$Locations$Getsettings, options: MethodOptions | BodyResponseCallback<Schema$GoogleCloudAdvisorynotificationsV1Settings>, callback: BodyResponseCallback<Schema$GoogleCloudAdvisorynotificationsV1Settings>): void; getSettings(params: Params$Resource$Organizations$Locations$Getsettings, callback: BodyResponseCallback<Schema$GoogleCloudAdvisorynotificationsV1Settings>): void; getSettings(callback: BodyResponseCallback<Schema$GoogleCloudAdvisorynotificationsV1Settings>): void; /** * Update notification settings. * * @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. */ updateSettings(params: Params$Resource$Organizations$Locations$Updatesettings, options: StreamMethodOptions): GaxiosPromise<Readable>; updateSettings(params?: Params$Resource$Organizations$Locations$Updatesettings, options?: MethodOptions): GaxiosPromise<Schema$GoogleCloudAdvisorynotificationsV1Settings>; updateSettings(params: Params$Resource$Organizations$Locations$Updatesettings, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void; updateSettings(params: Params$Resource$Organizations$Locations$Updatesettings, options: MethodOptions | BodyResponseCallback<Schema$GoogleCloudAdvisorynotificationsV1Settings>, callback: BodyResponseCallback<Schema$GoogleCloudAdvisorynotificationsV1Settings>): void; updateSettings(params: Params$Resource$Organizations$Locations$Updatesettings, callback: BodyResponseCallback<Schema$GoogleCloudAdvisorynotificationsV1Settings>): void; updateSettings(callback: BodyResponseCallback<Schema$GoogleCloudAdvisorynotificationsV1Settings>): void; } export interface Params$Resource$Organizations$Locations$Getsettings extends StandardParameters { /** * Required. The resource name of the settings to retrieve. Format: organizations/{organization\}/locations/{location\}/settings. */ name?: string; } export interface Params$Resource$Organizations$Locations$Updatesettings extends StandardParameters { /** * Identifier. The resource name of the settings to retrieve. Format: organizations/{organization\}/locations/{location\}/settings. */ name?: string; /** * Request body metadata */ requestBody?: Schema$GoogleCloudAdvisorynotificationsV1Settings; } export class Resource$Organizations$Locations$Notifications { context: APIRequestContext; constructor(context: APIRequestContext); /** * Gets a notification. * * @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$Organizations$Locations$Notifications$Get, options: StreamMethodOptions): GaxiosPromise<Readable>; get(params?: Params$Resource$Organizations$Locations$Notifications$Get, options?: MethodOptions): GaxiosPromise<Schema$GoogleCloudAdvisorynotificationsV1Notification>; get(params: Params$Resource$Organizations$Locations$Notifications$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void; get(params: Params$Resource$Organizations$Locations$Notifications$Get, options: MethodOptions | BodyResponseCallback<Schema$GoogleCloudAdvisorynotificationsV1Notification>, callback: BodyResponseCallback<Schema$GoogleCloudAdvisorynotificationsV1Notification>): void; get(params: Params$Resource$Organizations$Locations$Notifications$Get, callback: BodyResponseCallback<Schema$GoogleCloudAdvisorynotificationsV1Notification>): void; get(callback: BodyResponseCallback<Schema$GoogleCloudAdvisorynotificationsV1Notification>): void; /** * Lists notifications under a given parent. * * @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$Organizations$Locations$Notifications$List, options: StreamMethodOptions): GaxiosPromise<Readable>; list(params?: Params$Resource$Organizations$Locations$Notifications$List, options?: MethodOptions): GaxiosPromise<Schema$GoogleCloudAdvisorynotificationsV1ListNotificationsResponse>; list(params: Params$Resource$Organizations$Locations$Notifications$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void; list(params: Params$Resource$Organizations$Locations$Notifications$List, options: MethodOptions | BodyResponseCallback<Schema$GoogleCloudAdvisorynotificationsV1ListNotificationsResponse>, callback: BodyResponseCallback<Schema$GoogleCloudAdvisorynotificationsV1ListNotificationsResponse>): void; list(params: Params$Resource$Organizations$Locations$Notifications$List, callback: BodyResponseCallback<Schema$GoogleCloudAdvisorynotificationsV1ListNotificationsResponse>): void; list(callback: BodyResponseCallback<Schema$GoogleCloudAdvisorynotificationsV1ListNotificationsResponse>): void; } export interface Params$Resource$Organizations$Locations$Notifications$Get extends StandardParameters { /** * ISO code for requested localization language. If unset, will be interpereted as "en". If the requested language is valid, but not supported for this notification, English will be returned with an "Not applicable" LocalizationState. If the ISO code is invalid (i.e. not a real language), this RPC will throw an error. */ languageCode?: string; /** * Required. A name of the notification to retrieve. Format: organizations/{organization\}/locations/{location\}/notifications/{notification\} or projects/{projects\}/locations/{location\}/notifications/{notification\}. */ name?: string; } export interface Params$Resource$Organizations$Locations$Notifications$List extends StandardParameters { /** * ISO code for requested localization language. If unset, will be interpereted as "en". If the requested language is valid, but not supported for this notification, English will be returned with an "Not applicable" LocalizationState. If the ISO code is invalid (i.e. not a real language), this RPC will throw an error. */ languageCode?: string; /** * The maximum number of notifications to return. The service may return fewer than this value. If unspecified or equal to 0, at most 50 notifications will be returned. The maximum value is 50; values above 50 will be coerced to 50. */ pageSize?: number; /** * A page token returned from a previous request. When paginating, all other parameters provided in the request must match the call that returned the page token. */ pageToken?: string; /** * Required. The parent, which owns this collection of notifications. Must be of the form "organizations/{organization\}/locations/{location\}" or "projects/{project\}/locations/{location\}" */ parent?: string; /** * Specifies which parts of the notification resource should be returned in the response. */ view?: string; } export class Resource$Projects { context: APIRequestContext; locations: Resource$Projects$Locations; constructor(context: APIRequestContext); } export class Resource$Projects$Locations { context: APIRequestContext; notifications: Resource$Projects$Locations$Notifications; constructor(context: APIRequestContext); } export class Resource$Projects$Locations$Notifications { context: APIRequestContext; constructor(context: APIRequestContext); /** * Gets a notification. * * @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$Notifications$Get, options: StreamMethodOptions): GaxiosPromise<Readable>; get(params?: Params$Resource$Projects$Locations$Notifications$Get, options?: MethodOptions): GaxiosPromise<Schema$GoogleCloudAdvisorynotificationsV1Notification>; get(params: Params$Resource$Projects$Locations$Notifications$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void; get(params: Params$Resource$Projects$Locations$Notifications$Get, options: MethodOptions | BodyResponseCallback<Schema$GoogleCloudAdvisorynotificationsV1Notification>, callback: BodyResponseCallback<Schema$GoogleCloudAdvisorynotificationsV1Notification>): void; get(params: Params$Resource$Projects$Locations$Notifications$Get, callback: BodyResponseCallback<Schema$GoogleCloudAdvisorynotificationsV1Notification>): void; get(callback: BodyResponseCallback<Schema$GoogleCloudAdvisorynotificationsV1Notification>): void; /** * Lists notifications under a given parent. * * @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$Notifications$List, options: StreamMethodOptions): GaxiosPromise<Readable>; list(params?: Params$Resource$Projects$Locations$Notifications$List, options?: MethodOptions): GaxiosPromise<Schema$GoogleCloudAdvisorynotificationsV1ListNotificationsResponse>; list(params: Params$Resource$Projects$Locations$Notifications$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void; list(params: Params$Resource$Projects$Locations$Notifications$List, options: MethodOptions | BodyResponseCallback<Schema$GoogleCloudAdvisorynotificationsV1ListNotificationsResponse>, callback: BodyResponseCallback<Schema$GoogleCloudAdvisorynotificationsV1ListNotificationsResponse>): void; list(params: Params$Resource$Projects$Locations$Notifications$List, callback: BodyResponseCallback<Schema$GoogleCloudAdvisorynotificationsV1ListNotificationsResponse>): void; list(callback: BodyResponseCallback<Schema$GoogleCloudAdvisorynotificationsV1ListNotificationsResponse>): void; } export interface Params$Resource$Projects$Locations$Notifications$Get extends StandardParameters { /** * ISO code for requested localization language. If unset, will be interpereted as "en". If the requested language is valid, but not supported for this notification, English will be returned with an "Not applicable" LocalizationState. If the ISO code is invalid (i.e. not a real language), this RPC will throw an error. */ languageCode?: string; /** * Required. A name of the notification to retrieve. Format: organizations/{organization\}/locations/{location\}/notifications/{notification\} or projects/{projects\}/locations/{location\}/notifications/{notification\}. */ name?: string; } export interface Params$Resource$Projects$Locations$Notifications$List extends StandardParameters { /** * ISO code for requested localization language. If unset, will be interpereted as "en". If the requested language is valid, but not supported for this notification, English will be returned with an "Not applicable" LocalizationState. If the ISO code is invalid (i.e. not a real language), this RPC will throw an error. */ languageCode?: string; /** * The maximum number of notifications to return. The service may return fewer than this value. If unspecified or equal to 0, at most 50 notifications will be returned. The maximum value is 50; values above 50 will be coerced to 50. */ pageSize?: number; /** * A page token returned from a previous request. When paginating, all other parameters provided in the request must match the call that returned the page token. */ pageToken?: string; /** * Required. The parent, which owns this collection of notifications. Must be of the form "organizations/{organization\}/locations/{location\}" or "projects/{project\}/locations/{location\}" */ parent?: string; /** * Specifies which parts of the notification resource should be returned in the response. */ view?: string; } export {}; }
Copyright ©2k19 -
Hexid
|
Tex7ure