@maxim_mazurok/gapi.client.beyondcorp-v1 0.1.20250910 → 0.1.20251008
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 +75 -3
- 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://beyondcorp.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20251008
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -457,10 +457,12 @@ declare namespace gapi.client {
|
|
|
457
457
|
createTime?: string;
|
|
458
458
|
/** Optional. An arbitrary user-provided name for the application resource. Cannot exceed 64 characters. */
|
|
459
459
|
displayName?: string;
|
|
460
|
-
/** Required. Endpoint matchers associated with an application. A combination of hostname and ports as endpoint matchers is used to match the application. Match conditions for OR logic. An array of match conditions to allow for multiple matching criteria. The rule is considered a match if one of the conditions is met. The conditions
|
|
460
|
+
/** Required. Endpoint matchers associated with an application. A combination of hostname and ports as endpoint matchers is used to match the application. Match conditions for OR logic. An array of match conditions to allow for multiple matching criteria. The rule is considered a match if one of the conditions is met. The conditions should be the following combination: (Hostname & Ports) EXAMPLES: Hostname and Ports - ("*.example.com", "443"), ("example.com" and "22"), ("example.com" and "22,33") etc */
|
|
461
461
|
endpointMatchers?: GoogleCloudBeyondcorpSecuritygatewaysV1EndpointMatcher[];
|
|
462
462
|
/** Identifier. Name of the resource. */
|
|
463
463
|
name?: string;
|
|
464
|
+
/** Optional. Type of the external application. */
|
|
465
|
+
schema?: string;
|
|
464
466
|
/** Output only. Timestamp when the resource was last modified. */
|
|
465
467
|
updateTime?: string;
|
|
466
468
|
/** Optional. Which upstream resources to forward traffic to. */
|
|
@@ -469,21 +471,57 @@ declare namespace gapi.client {
|
|
|
469
471
|
interface GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstream {
|
|
470
472
|
/** Optional. Routing policy information. */
|
|
471
473
|
egressPolicy?: GoogleCloudBeyondcorpSecuritygatewaysV1EgressPolicy;
|
|
474
|
+
/** List of the external endpoints to forward traffic to. */
|
|
475
|
+
external?: GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamExternal;
|
|
472
476
|
/** Network to forward traffic to. */
|
|
473
477
|
network?: GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamNetwork;
|
|
478
|
+
/** Optional. Enables proxy protocol configuration for the upstream. */
|
|
479
|
+
proxyProtocol?: GoogleCloudBeyondcorpSecuritygatewaysV1ProxyProtocolConfig;
|
|
480
|
+
}
|
|
481
|
+
interface GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamExternal {
|
|
482
|
+
/** Required. List of the endpoints to forward traffic to. */
|
|
483
|
+
endpoints?: GoogleCloudBeyondcorpSecuritygatewaysV1Endpoint[];
|
|
474
484
|
}
|
|
475
485
|
interface GoogleCloudBeyondcorpSecuritygatewaysV1ApplicationUpstreamNetwork {
|
|
476
486
|
/** Required. Network name is of the format: `projects/{project}/global/networks/{network} */
|
|
477
487
|
name?: string;
|
|
478
488
|
}
|
|
489
|
+
interface GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeaders {
|
|
490
|
+
/** Optional. Device info configuration. */
|
|
491
|
+
deviceInfo?: GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedDeviceInfo;
|
|
492
|
+
/** Optional. Group info configuration. */
|
|
493
|
+
groupInfo?: GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedGroupInfo;
|
|
494
|
+
/** Optional. Default output type for all enabled headers. */
|
|
495
|
+
outputType?: string;
|
|
496
|
+
/** Optional. User info configuration. */
|
|
497
|
+
userInfo?: GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedUserInfo;
|
|
498
|
+
}
|
|
499
|
+
interface GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedDeviceInfo {
|
|
500
|
+
/** Optional. The output type of the delegated device info. */
|
|
501
|
+
outputType?: string;
|
|
502
|
+
}
|
|
503
|
+
interface GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedGroupInfo {
|
|
504
|
+
/** Optional. The output type of the delegated group info. */
|
|
505
|
+
outputType?: string;
|
|
506
|
+
}
|
|
507
|
+
interface GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeadersDelegatedUserInfo {
|
|
508
|
+
/** Optional. The output type of the delegated user info. */
|
|
509
|
+
outputType?: string;
|
|
510
|
+
}
|
|
479
511
|
interface GoogleCloudBeyondcorpSecuritygatewaysV1EgressPolicy {
|
|
480
512
|
/** Required. List of the regions where the application sends traffic. */
|
|
481
513
|
regions?: string[];
|
|
482
514
|
}
|
|
515
|
+
interface GoogleCloudBeyondcorpSecuritygatewaysV1Endpoint {
|
|
516
|
+
/** Required. Hostname of the endpoint. */
|
|
517
|
+
hostname?: string;
|
|
518
|
+
/** Required. Port of the endpoint. */
|
|
519
|
+
port?: number;
|
|
520
|
+
}
|
|
483
521
|
interface GoogleCloudBeyondcorpSecuritygatewaysV1EndpointMatcher {
|
|
484
522
|
/** Required. Hostname of the application. */
|
|
485
523
|
hostname?: string;
|
|
486
|
-
/**
|
|
524
|
+
/** Required. Ports of the application. */
|
|
487
525
|
ports?: number[];
|
|
488
526
|
}
|
|
489
527
|
interface GoogleCloudBeyondcorpSecuritygatewaysV1Hub {
|
|
@@ -510,6 +548,18 @@ declare namespace gapi.client {
|
|
|
510
548
|
/** A list of locations that could not be reached. */
|
|
511
549
|
unreachable?: string[];
|
|
512
550
|
}
|
|
551
|
+
interface GoogleCloudBeyondcorpSecuritygatewaysV1ProxyProtocolConfig {
|
|
552
|
+
/** Optional. List of the allowed client header names. */
|
|
553
|
+
allowedClientHeaders?: string[];
|
|
554
|
+
/** Optional. Client IP configuration. The client IP address is included if true. */
|
|
555
|
+
clientIp?: boolean;
|
|
556
|
+
/** Optional. Configuration for the contextual headers. */
|
|
557
|
+
contextualHeaders?: GoogleCloudBeyondcorpSecuritygatewaysV1ContextualHeaders;
|
|
558
|
+
/** Optional. Gateway identity configuration. */
|
|
559
|
+
gatewayIdentity?: string;
|
|
560
|
+
/** Optional. Custom resource specific headers along with the values. The names should conform to RFC 9110: > Field names SHOULD constrain themselves to alphanumeric characters, "-", and ".", and SHOULD begin with a letter. Field values SHOULD contain only ASCII printable characters and tab. */
|
|
561
|
+
metadataHeaders?: {[P in string]: string};
|
|
562
|
+
}
|
|
513
563
|
interface GoogleCloudBeyondcorpSecuritygatewaysV1SecurityGateway {
|
|
514
564
|
/** Output only. Timestamp when the resource was created. */
|
|
515
565
|
createTime?: string;
|
|
@@ -523,6 +573,10 @@ declare namespace gapi.client {
|
|
|
523
573
|
hubs?: {[P in string]: GoogleCloudBeyondcorpSecuritygatewaysV1Hub};
|
|
524
574
|
/** Identifier. Name of the resource. */
|
|
525
575
|
name?: string;
|
|
576
|
+
/** Optional. Shared proxy configuration for all apps. */
|
|
577
|
+
proxyProtocolConfig?: GoogleCloudBeyondcorpSecuritygatewaysV1ProxyProtocolConfig;
|
|
578
|
+
/** Optional. Settings related to the Service Discovery. */
|
|
579
|
+
serviceDiscovery?: GoogleCloudBeyondcorpSecuritygatewaysV1ServiceDiscovery;
|
|
526
580
|
/** Output only. The operational state of the SecurityGateway. */
|
|
527
581
|
state?: string;
|
|
528
582
|
/** Output only. Timestamp when the resource was last modified. */
|
|
@@ -544,6 +598,18 @@ declare namespace gapi.client {
|
|
|
544
598
|
/** Output only. Name of the verb executed by the operation. */
|
|
545
599
|
verb?: string;
|
|
546
600
|
}
|
|
601
|
+
interface GoogleCloudBeyondcorpSecuritygatewaysV1ServiceDiscovery {
|
|
602
|
+
/** Required. External API configuration. */
|
|
603
|
+
apiGateway?: GoogleCloudBeyondcorpSecuritygatewaysV1ServiceDiscoveryApiGateway;
|
|
604
|
+
}
|
|
605
|
+
interface GoogleCloudBeyondcorpSecuritygatewaysV1ServiceDiscoveryApiGateway {
|
|
606
|
+
/** Required. Enables fetching resource model updates to alter service behavior per Chrome profile. */
|
|
607
|
+
resourceOverride?: GoogleCloudBeyondcorpSecuritygatewaysV1ServiceDiscoveryApiGatewayOperationDescriptor;
|
|
608
|
+
}
|
|
609
|
+
interface GoogleCloudBeyondcorpSecuritygatewaysV1ServiceDiscoveryApiGatewayOperationDescriptor {
|
|
610
|
+
/** Required. Contains uri path fragment where HTTP request is sent. */
|
|
611
|
+
path?: string;
|
|
612
|
+
}
|
|
547
613
|
interface GoogleCloudLocationListLocationsResponse {
|
|
548
614
|
/** A list of locations that matches the specified filter in the request. */
|
|
549
615
|
locations?: GoogleCloudLocationLocation[];
|
|
@@ -612,6 +678,8 @@ declare namespace gapi.client {
|
|
|
612
678
|
nextPageToken?: string;
|
|
613
679
|
/** A list of operations that matches the specified filter in the request. */
|
|
614
680
|
operations?: GoogleLongrunningOperation[];
|
|
681
|
+
/** Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections e.g. when attempting to list all resources across all supported locations. */
|
|
682
|
+
unreachable?: string[];
|
|
615
683
|
}
|
|
616
684
|
interface GoogleLongrunningOperation {
|
|
617
685
|
/** If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available. */
|
|
@@ -810,6 +878,8 @@ declare namespace gapi.client {
|
|
|
810
878
|
prettyPrint?: boolean;
|
|
811
879
|
/** 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. */
|
|
812
880
|
quotaUser?: string;
|
|
881
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
882
|
+
returnPartialSuccess?: boolean;
|
|
813
883
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
814
884
|
upload_protocol?: string;
|
|
815
885
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -1987,6 +2057,8 @@ declare namespace gapi.client {
|
|
|
1987
2057
|
prettyPrint?: boolean;
|
|
1988
2058
|
/** 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. */
|
|
1989
2059
|
quotaUser?: string;
|
|
2060
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
2061
|
+
returnPartialSuccess?: boolean;
|
|
1990
2062
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1991
2063
|
upload_protocol?: string;
|
|
1992
2064
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|