Skip to content

Commit

Permalink
fix(advisorynotifications): update the API
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation authored and sofisl committed Feb 2, 2023
1 parent fcf0cc7 commit 7021d81
Show file tree
Hide file tree
Showing 7 changed files with 1,219 additions and 0 deletions.
397 changes: 397 additions & 0 deletions discovery/advisorynotifications-v1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,397 @@
{
"auth": {
"oauth2": {
"scopes": {
"https://www.googleapis.com/auth/cloud-platform": {
"description": "See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account."
}
}
}
},
"basePath": "",
"baseUrl": "https://advisorynotifications.googleapis.com/",
"batchPath": "batch",
"canonicalName": "Advisorynotifications",
"description": "",
"discoveryVersion": "v1",
"documentationLink": "https://cloud.google.com/advisory-notifications",
"fullyEncodeReservedExpansion": true,
"icons": {
"x16": "http://www.google.com/images/icons/product/search-16.gif",
"x32": "http://www.google.com/images/icons/product/search-32.gif"
},
"id": "advisorynotifications:v1",
"kind": "discovery#restDescription",
"mtlsRootUrl": "https://advisorynotifications.mtls.googleapis.com/",
"name": "advisorynotifications",
"ownerDomain": "google.com",
"ownerName": "Google",
"parameters": {
"$.xgafv": {
"description": "V1 error format.",
"enum": [
"1",
"2"
],
"enumDescriptions": [
"v1 error format",
"v2 error format"
],
"location": "query",
"type": "string"
},
"access_token": {
"description": "OAuth access token.",
"location": "query",
"type": "string"
},
"alt": {
"default": "json",
"description": "Data format for response.",
"enum": [
"json",
"media",
"proto"
],
"enumDescriptions": [
"Responses with Content-Type of application/json",
"Media download with context-dependent Content-Type",
"Responses with Content-Type of application/x-protobuf"
],
"location": "query",
"type": "string"
},
"callback": {
"description": "JSONP",
"location": "query",
"type": "string"
},
"fields": {
"description": "Selector specifying which fields to include in a partial response.",
"location": "query",
"type": "string"
},
"key": {
"description": "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.",
"location": "query",
"type": "string"
},
"oauth_token": {
"description": "OAuth 2.0 token for the current user.",
"location": "query",
"type": "string"
},
"prettyPrint": {
"default": "true",
"description": "Returns response with indentations and line breaks.",
"location": "query",
"type": "boolean"
},
"quotaUser": {
"description": "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.",
"location": "query",
"type": "string"
},
"uploadType": {
"description": "Legacy upload protocol for media (e.g. \"media\", \"multipart\").",
"location": "query",
"type": "string"
},
"upload_protocol": {
"description": "Upload protocol for media (e.g. \"raw\", \"multipart\").",
"location": "query",
"type": "string"
}
},
"protocol": "rest",
"resources": {
"organizations": {
"resources": {
"locations": {
"resources": {
"notifications": {
"methods": {
"get": {
"description": "Gets a notification.",
"flatPath": "v1/organizations/{organizationsId}/locations/{locationsId}/notifications/{notificationsId}",
"httpMethod": "GET",
"id": "advisorynotifications.organizations.locations.notifications.get",
"parameterOrder": [
"name"
],
"parameters": {
"languageCode": {
"description": "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.",
"location": "query",
"type": "string"
},
"name": {
"description": "Required. A name of the notification to retrieve. Format: organizations/{organization}/locations/{location}/notifications/{notification}.",
"location": "path",
"pattern": "^organizations/[^/]+/locations/[^/]+/notifications/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+name}",
"response": {
"$ref": "GoogleCloudAdvisorynotificationsV1Notification"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"list": {
"description": "Lists notifications under a given parent.",
"flatPath": "v1/organizations/{organizationsId}/locations/{locationsId}/notifications",
"httpMethod": "GET",
"id": "advisorynotifications.organizations.locations.notifications.list",
"parameterOrder": [
"parent"
],
"parameters": {
"languageCode": {
"description": "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.",
"location": "query",
"type": "string"
},
"pageSize": {
"description": "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.",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "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.",
"location": "query",
"type": "string"
},
"parent": {
"description": "Required. The parent, which owns this collection of notifications. Must be of the form \"organizations/{organization}/locations/{location}\".",
"location": "path",
"pattern": "^organizations/[^/]+/locations/[^/]+$",
"required": true,
"type": "string"
},
"view": {
"description": "Specifies which parts of the notification resource should be returned in the response.",
"enum": [
"NOTIFICATION_VIEW_UNSPECIFIED",
"BASIC",
"FULL"
],
"enumDescriptions": [
"Not specified, equivalent to BASIC.",
"Server responses only include title, creation time and Notification ID. Note: for internal use responses also include the last update time, the latest message text and whether notification has attachments.",
"Include everything."
],
"location": "query",
"type": "string"
}
},
"path": "v1/{+parent}/notifications",
"response": {
"$ref": "GoogleCloudAdvisorynotificationsV1ListNotificationsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
}
}
}
}
}
}
}
},
"revision": "20230129",
"rootUrl": "https://advisorynotifications.googleapis.com/",
"schemas": {
"GoogleCloudAdvisorynotificationsV1Attachment": {
"description": "Attachment with specific information about the issue.",
"id": "GoogleCloudAdvisorynotificationsV1Attachment",
"properties": {
"csv": {
"$ref": "GoogleCloudAdvisorynotificationsV1Csv",
"description": "A CSV file attachment. Max size is 10 MB."
},
"displayName": {
"description": "The title of the attachment.",
"type": "string"
}
},
"type": "object"
},
"GoogleCloudAdvisorynotificationsV1Csv": {
"description": "A representation of a CSV file attachment, as a list of column headers and a list of data rows.",
"id": "GoogleCloudAdvisorynotificationsV1Csv",
"properties": {
"dataRows": {
"description": "The list of data rows in a CSV file, as string arrays rather than as a single comma-separated string.",
"items": {
"$ref": "GoogleCloudAdvisorynotificationsV1CsvCsvRow"
},
"type": "array"
},
"headers": {
"description": "The list of headers for data columns in a CSV file.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"GoogleCloudAdvisorynotificationsV1CsvCsvRow": {
"description": "A representation of a single data row in a CSV file.",
"id": "GoogleCloudAdvisorynotificationsV1CsvCsvRow",
"properties": {
"entries": {
"description": "The data entries in a CSV file row, as a string array rather than a single comma-separated string.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"GoogleCloudAdvisorynotificationsV1ListNotificationsResponse": {
"description": "Response of ListNotifications endpoint.",
"id": "GoogleCloudAdvisorynotificationsV1ListNotificationsResponse",
"properties": {
"nextPageToken": {
"description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.",
"type": "string"
},
"notifications": {
"description": "List of notifications under a given parent.",
"items": {
"$ref": "GoogleCloudAdvisorynotificationsV1Notification"
},
"type": "array"
},
"totalSize": {
"description": "Estimation of a total number of notifications.",
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"GoogleCloudAdvisorynotificationsV1Message": {
"description": "A message which contains notification details.",
"id": "GoogleCloudAdvisorynotificationsV1Message",
"properties": {
"attachments": {
"description": "The attachments to download.",
"items": {
"$ref": "GoogleCloudAdvisorynotificationsV1Attachment"
},
"type": "array"
},
"body": {
"$ref": "GoogleCloudAdvisorynotificationsV1MessageBody",
"description": "The message content."
},
"createTime": {
"description": "The Message creation timestamp.",
"format": "google-datetime",
"type": "string"
},
"localizationTime": {
"description": "Time when Message was localized",
"format": "google-datetime",
"type": "string"
}
},
"type": "object"
},
"GoogleCloudAdvisorynotificationsV1MessageBody": {
"description": "A message body containing text.",
"id": "GoogleCloudAdvisorynotificationsV1MessageBody",
"properties": {
"text": {
"$ref": "GoogleCloudAdvisorynotificationsV1Text",
"description": "The text content of the message body."
}
},
"type": "object"
},
"GoogleCloudAdvisorynotificationsV1Notification": {
"description": "A notification object for notifying customers about security and privacy issues.",
"id": "GoogleCloudAdvisorynotificationsV1Notification",
"properties": {
"createTime": {
"description": "Output only. Time the notification was created.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
},
"messages": {
"description": "A list of messages in the notification.",
"items": {
"$ref": "GoogleCloudAdvisorynotificationsV1Message"
},
"type": "array"
},
"name": {
"description": "The resource name of the notification. Format: organizations/{organization}/locations/{location}/notifications/{notification}.",
"type": "string"
},
"subject": {
"$ref": "GoogleCloudAdvisorynotificationsV1Subject",
"description": "The subject line of the notification."
}
},
"type": "object"
},
"GoogleCloudAdvisorynotificationsV1Subject": {
"description": "A subject line of a notification.",
"id": "GoogleCloudAdvisorynotificationsV1Subject",
"properties": {
"text": {
"$ref": "GoogleCloudAdvisorynotificationsV1Text",
"description": "The text content."
}
},
"type": "object"
},
"GoogleCloudAdvisorynotificationsV1Text": {
"description": "A text object containing the English text and its localized copies.",
"id": "GoogleCloudAdvisorynotificationsV1Text",
"properties": {
"enText": {
"description": "The English copy.",
"type": "string"
},
"localizationState": {
"description": "Status of the localization.",
"enum": [
"LOCALIZATION_STATE_UNSPECIFIED",
"LOCALIZATION_STATE_NOT_APPLICABLE",
"LOCALIZATION_STATE_PENDING",
"LOCALIZATION_STATE_COMPLETED"
],
"enumDescriptions": [
"Not used.",
"Localization is not applicable for requested language. This can happen when: - The requested language was not supported by Advisory Notifications at the time of localization (including notifications created before the localization feature was launched). - The requested language is English, so only the English text is returned.",
"Localization for requested language is in progress, and not ready yet.",
"Localization for requested language is completed."
],
"type": "string"
},
"localizedText": {
"description": "The requested localized copy (if applicable).",
"type": "string"
}
},
"type": "object"
}
},
"servicePath": "",
"title": "Advisory Notifications API",
"version": "v1",
"version_module": true
}

0 comments on commit 7021d81

Please sign in to comment.