Skip to content

Commit

Permalink
Merge branch 'main' into chunk-retry-err
Browse files Browse the repository at this point in the history
  • Loading branch information
tritone committed Jun 28, 2024
2 parents b9b88e9 + 719f988 commit e448a93
Show file tree
Hide file tree
Showing 20 changed files with 1,525 additions and 68 deletions.
483 changes: 480 additions & 3 deletions analyticshub/v1/analyticshub-api.json

Large diffs are not rendered by default.

677 changes: 673 additions & 4 deletions analyticshub/v1/analyticshub-gen.go

Large diffs are not rendered by default.

37 changes: 35 additions & 2 deletions analyticshub/v1beta1/analyticshub-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@
}
}
},
"revision": "20240122",
"revision": "20240624",
"rootUrl": "https://analyticshub.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down Expand Up @@ -938,6 +938,16 @@
"description": "Output only. Name of the linked dataset, e.g. projects/subscriberproject/datasets/linked_dataset",
"readOnly": true,
"type": "string"
},
"linkedPubsubSubscription": {
"description": "Output only. Name of the Pub/Sub subscription, e.g. projects/subscriberproject/subscriptions/subscriptions/sub_id",
"readOnly": true,
"type": "string"
},
"listing": {
"description": "Output only. Listing for which linked resource is created.",
"readOnly": true,
"type": "string"
}
},
"type": "object"
Expand Down Expand Up @@ -1095,7 +1105,7 @@
},
"restrictedExportConfig": {
"$ref": "RestrictedExportConfig",
"description": "Optional. If set, restricted export configuration will be propagated and enforced on the linked dataset."
"description": "Optional. If set, restricted export configuration will be propagated and enforced on the linked dataset. This is a required field for data clean room exchanges."
},
"state": {
"description": "Output only. Current state of the listing.",
Expand Down Expand Up @@ -1307,6 +1317,14 @@
"readOnly": true,
"type": "object"
},
"linkedResources": {
"description": "Output only. Linked resources created in the subscription. Only contains values if state = STATE_ACTIVE.",
"items": {
"$ref": "LinkedResource"
},
"readOnly": true,
"type": "array"
},
"listing": {
"description": "Output only. Resource name of the source Listing. e.g. projects/123/locations/US/dataExchanges/456/listings/789",
"readOnly": true,
Expand All @@ -1327,6 +1345,21 @@
"readOnly": true,
"type": "string"
},
"resourceType": {
"description": "Output only. Listing shared asset type.",
"enum": [
"SHARED_RESOURCE_TYPE_UNSPECIFIED",
"BIGQUERY_DATASET",
"PUBSUB_TOPIC"
],
"enumDescriptions": [
"Not specified.",
"BigQuery Dataset Asset.",
"Pub/Sub Topic Asset."
],
"readOnly": true,
"type": "string"
},
"state": {
"description": "Output only. Current state of the subscription.",
"enum": [
Expand Down
18 changes: 17 additions & 1 deletion analyticshub/v1beta1/analyticshub-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions chat/v1/chat-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1241,7 +1241,7 @@
}
}
},
"revision": "20240613",
"revision": "20240623",
"rootUrl": "https://chat.googleapis.com/",
"schemas": {
"AccessoryWidget": {
Expand Down Expand Up @@ -1833,7 +1833,7 @@
},
"common": {
"$ref": "CommonEventObject",
"description": "Represents information about the user's client, such as locale, host app, and platform. For Chat apps, `CommonEventObject` includes information submitted by users interacting with [dialogs](https://developers.google.com/workspace/chat/dialogs), like data entered on a card."
"description": "Represents informatmessage_visibilityion about the user's client, such as locale, host app, and platform. For Chat apps, `CommonEventObject` includes information submitted by users interacting with [dialogs](https://developers.google.com/workspace/chat/dialogs), like data entered on a card."
},
"configCompleteRedirectUrl": {
"description": "The URL the Chat app should redirect the user to after they have completed an authorization or configuration flow outside of Google Chat. For more information, see [Connect a Chat app with other services \u0026 tools](https://developers.google.com/workspace/chat/connect-web-services-tools).",
Expand Down
6 changes: 3 additions & 3 deletions chat/v1/chat-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 35 additions & 1 deletion containeranalysis/v1/containeranalysis-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1072,7 +1072,7 @@
}
}
},
"revision": "20240614",
"revision": "20240625",
"rootUrl": "https://containeranalysis.googleapis.com/",
"schemas": {
"AliasContext": {
Expand Down Expand Up @@ -3748,6 +3748,10 @@
"sbomStatus": {
"$ref": "SBOMStatus",
"description": "The status of an SBOM generation."
},
"vulnerabilityAttestation": {
"$ref": "VulnerabilityAttestation",
"description": "The status of an vulnerability attestation generation."
}
},
"type": "object"
Expand Down Expand Up @@ -5901,6 +5905,36 @@
},
"type": "object"
},
"VulnerabilityAttestation": {
"description": "The status of an vulnerability attestation generation.",
"id": "VulnerabilityAttestation",
"properties": {
"error": {
"description": "If failure, the error reason for why the attestation generation failed.",
"type": "string"
},
"lastAttemptTime": {
"description": "The last time we attempted to generate an attestation.",
"format": "google-datetime",
"type": "string"
},
"state": {
"description": "The success/failure state of the latest attestation attempt.",
"enum": [
"VULNERABILITY_ATTESTATION_STATE_UNSPECIFIED",
"SUCCESS",
"FAILURE"
],
"enumDescriptions": [
"Default unknown state.",
"Attestation was successfully generated and stored.",
"Attestation was unsuccessfully generated and stored."
],
"type": "string"
}
},
"type": "object"
},
"VulnerabilityNote": {
"description": "A security vulnerability that can be found in resources.",
"id": "VulnerabilityNote",
Expand Down
36 changes: 36 additions & 0 deletions containeranalysis/v1/containeranalysis-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 39 additions & 1 deletion containeranalysis/v1alpha1/containeranalysis-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1240,7 +1240,7 @@
}
}
},
"revision": "20240614",
"revision": "20240625",
"rootUrl": "https://containeranalysis.googleapis.com/",
"schemas": {
"AnalysisCompleted": {
Expand Down Expand Up @@ -3716,6 +3716,11 @@
"$ref": "SBOMStatus",
"description": "Output only. The status of an SBOM generation.",
"readOnly": true
},
"vulnerabilityAttestation": {
"$ref": "VulnerabilityAttestation",
"description": "Output only. The status of a vulnerability attestation generation.",
"readOnly": true
}
},
"type": "object"
Expand Down Expand Up @@ -6728,6 +6733,39 @@
},
"type": "object"
},
"VulnerabilityAttestation": {
"description": "The status of a vulnerability attestation generation.",
"id": "VulnerabilityAttestation",
"properties": {
"error": {
"description": "Output only. If failure, the error reason for why the attestation generation failed.",
"readOnly": true,
"type": "string"
},
"lastAttemptTime": {
"description": "Output only. The last time we attempted to generate an attestation.",
"format": "google-datetime",
"readOnly": true,
"type": "string"
},
"state": {
"description": "Output only. The success/failure state of the latest attestation attempt.",
"enum": [
"VULNERABILITY_ATTESTATION_STATE_UNSPECIFIED",
"SUCCESS",
"FAILURE"
],
"enumDescriptions": [
"Default unknown state.",
"Attestation was successfully generated and stored.",
"Attestation was unsuccessfully generated and stored."
],
"readOnly": true,
"type": "string"
}
},
"type": "object"
},
"VulnerabilityDetails": {
"description": "Used by Occurrence to point to where the vulnerability exists and how to fix it.",
"id": "VulnerabilityDetails",
Expand Down
38 changes: 38 additions & 0 deletions containeranalysis/v1alpha1/containeranalysis-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit e448a93

Please sign in to comment.