Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34514,7 +34514,6 @@ components:
- id
- type
- inputs
- auth
- customer_id
type: object
ObservabilityPipelineGoogleChronicleDestinationEncoding:
Expand Down Expand Up @@ -34580,9 +34579,7 @@ components:
- type
- inputs
- bucket
- auth
- storage_class
- acl
type: object
ObservabilityPipelineGoogleCloudStorageDestinationAcl:
description: Access control list setting for objects written to the bucket.
Expand Down Expand Up @@ -34713,7 +34710,6 @@ components:
required:
- id
- type
- auth
- decoding
- project
- subscription
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export class ObservabilityPipelineGoogleChronicleDestination {
/**
* GCP credentials used to authenticate with Google Cloud Storage.
*/
"auth": ObservabilityPipelineGcpAuth;
"auth"?: ObservabilityPipelineGcpAuth;
/**
* The Google Chronicle customer ID.
*/
Expand Down Expand Up @@ -54,7 +54,6 @@ export class ObservabilityPipelineGoogleChronicleDestination {
auth: {
baseName: "auth",
type: "ObservabilityPipelineGcpAuth",
required: true,
},
customerId: {
baseName: "customer_id",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ export class ObservabilityPipelineGoogleCloudStorageDestination {
/**
* Access control list setting for objects written to the bucket.
*/
"acl": ObservabilityPipelineGoogleCloudStorageDestinationAcl;
"acl"?: ObservabilityPipelineGoogleCloudStorageDestinationAcl;
/**
* GCP credentials used to authenticate with Google Cloud Storage.
*/
"auth": ObservabilityPipelineGcpAuth;
"auth"?: ObservabilityPipelineGcpAuth;
/**
* Name of the GCS bucket.
*/
Expand Down Expand Up @@ -65,12 +65,10 @@ export class ObservabilityPipelineGoogleCloudStorageDestination {
acl: {
baseName: "acl",
type: "ObservabilityPipelineGoogleCloudStorageDestinationAcl",
required: true,
},
auth: {
baseName: "auth",
type: "ObservabilityPipelineGcpAuth",
required: true,
},
bucket: {
baseName: "bucket",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export class ObservabilityPipelineGooglePubSubSource {
/**
* GCP credentials used to authenticate with Google Cloud Storage.
*/
"auth": ObservabilityPipelineGcpAuth;
"auth"?: ObservabilityPipelineGcpAuth;
/**
* The decoding format used to interpret incoming logs.
*/
Expand Down Expand Up @@ -55,7 +55,6 @@ export class ObservabilityPipelineGooglePubSubSource {
auth: {
baseName: "auth",
type: "ObservabilityPipelineGcpAuth",
required: true,
},
decoding: {
baseName: "decoding",
Expand Down