@maxim_mazurok/gapi.client.eventarc-v1 0.1.20250821 → 0.1.20250912
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +16 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://eventarc.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250912
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -200,6 +200,10 @@ declare namespace gapi.client {
|
|
|
200
200
|
loggingConfig?: LoggingConfig;
|
|
201
201
|
/** Identifier. Resource name of the form projects/{project}/locations/{location}/googleApiSources/{google_api_source} */
|
|
202
202
|
name?: string;
|
|
203
|
+
/** Optional. Config to enable subscribing to events from all projects in the GoogleApiSource's org. */
|
|
204
|
+
organizationSubscription?: OrganizationSubscription;
|
|
205
|
+
/** Optional. Config to enable subscribing to all events from a list of projects. All the projects must be in the same org as the GoogleApiSource. */
|
|
206
|
+
projectSubscriptions?: ProjectSubscriptions;
|
|
203
207
|
/** Output only. Server assigned unique identifier for the channel. The value is a UUID4 string and guaranteed to remain unchanged until the resource is deleted. */
|
|
204
208
|
uid?: string;
|
|
205
209
|
/** Output only. The last-modified time. */
|
|
@@ -216,7 +220,7 @@ declare namespace gapi.client {
|
|
|
216
220
|
updateTime?: string;
|
|
217
221
|
}
|
|
218
222
|
interface GoogleCloudEventarcV1PipelineDestination {
|
|
219
|
-
/** Optional. An authentication config used to authenticate message requests, such that destinations can verify the source. For example, this can be used with private
|
|
223
|
+
/** Optional. An authentication config used to authenticate message requests, such that destinations can verify the source. For example, this can be used with private Google Cloud destinations that require Google Cloud credentials for access like Cloud Run. This field is optional and should be set only by users interested in authenticated push. */
|
|
220
224
|
authenticationConfig?: GoogleCloudEventarcV1PipelineDestinationAuthenticationConfig;
|
|
221
225
|
/** Optional. An HTTP endpoint destination described by an URI. If a DNS FQDN is provided as the endpoint, Pipeline will create a peering zone to the consumer VPC and forward DNS requests to the VPC specified by network config to resolve the service endpoint. See: https://cloud.google.com/dns/docs/zones/zones-overview#peering_zones */
|
|
222
226
|
httpEndpoint?: GoogleCloudEventarcV1PipelineDestinationHttpEndpoint;
|
|
@@ -232,7 +236,7 @@ declare namespace gapi.client {
|
|
|
232
236
|
workflow?: string;
|
|
233
237
|
}
|
|
234
238
|
interface GoogleCloudEventarcV1PipelineDestinationAuthenticationConfig {
|
|
235
|
-
/** Optional. This authenticate method will apply Google OIDC tokens signed by a
|
|
239
|
+
/** Optional. This authenticate method will apply Google OIDC tokens signed by a Google Cloud service account to the requests. */
|
|
236
240
|
googleOidc?: GoogleCloudEventarcV1PipelineDestinationAuthenticationConfigOidcToken;
|
|
237
241
|
/** Optional. If specified, an [OAuth token](https://developers.google.com/identity/protocols/OAuth2) will be generated and attached as an `Authorization` header in the HTTP request. This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com. */
|
|
238
242
|
oauthToken?: GoogleCloudEventarcV1PipelineDestinationAuthenticationConfigOAuthToken;
|
|
@@ -459,6 +463,10 @@ declare namespace gapi.client {
|
|
|
459
463
|
/** Output only. Name of the verb executed by the operation. */
|
|
460
464
|
verb?: string;
|
|
461
465
|
}
|
|
466
|
+
interface OrganizationSubscription {
|
|
467
|
+
/** Required. Enable org level subscription. */
|
|
468
|
+
enabled?: boolean;
|
|
469
|
+
}
|
|
462
470
|
interface Pipeline {
|
|
463
471
|
/** Optional. User-defined annotations. See https://google.aip.dev/128#annotations. */
|
|
464
472
|
annotations?: {[P in string]: string};
|
|
@@ -501,6 +509,10 @@ declare namespace gapi.client {
|
|
|
501
509
|
/** Specifies the format of the policy. Valid values are `0`, `1`, and `3`. Requests that specify an invalid value are rejected. Any operation that affects conditional role bindings must specify version `3`. This requirement applies to the following operations: * Getting a policy that includes a conditional role binding * Adding a conditional role binding to a policy * Changing a conditional role binding in a policy * Removing any role binding, with or without a condition, from a policy that includes conditions **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost. If a policy does not include any conditions, operations on that policy may specify any valid version or leave the field unset. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). */
|
|
502
510
|
version?: number;
|
|
503
511
|
}
|
|
512
|
+
interface ProjectSubscriptions {
|
|
513
|
+
/** Required. A list of projects to receive events from. All the projects must be in the same org. The listed projects should have the format project/{identifier} where identifier can be either the project id for project number. A single list may contain both formats. At most 100 projects can be listed. */
|
|
514
|
+
list?: string[];
|
|
515
|
+
}
|
|
504
516
|
interface Provider {
|
|
505
517
|
/** Output only. Human friendly name for the Provider. For example "Cloud Storage". */
|
|
506
518
|
displayName?: string;
|
|
@@ -3127,7 +3139,7 @@ declare namespace gapi.client {
|
|
|
3127
3139
|
alt?: string;
|
|
3128
3140
|
/** JSONP */
|
|
3129
3141
|
callback?: string;
|
|
3130
|
-
/** Optional.
|
|
3142
|
+
/** Optional. Unless explicitly documented otherwise, don't use this unsupported field which is primarily intended for internal usage. */
|
|
3131
3143
|
extraLocationTypes?: string | string[];
|
|
3132
3144
|
/** Selector specifying which fields to include in a partial response. */
|
|
3133
3145
|
fields?: string;
|