@maxim_mazurok/gapi.client.beyondcorp-v1 0.1.20250903 → 0.1.20250922
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 +70 -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://beyondcorp.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250922
|
|
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[];
|
|
@@ -2664,7 +2730,7 @@ declare namespace gapi.client {
|
|
|
2664
2730
|
alt?: string;
|
|
2665
2731
|
/** JSONP */
|
|
2666
2732
|
callback?: string;
|
|
2667
|
-
/** Optional.
|
|
2733
|
+
/** Optional. Unless explicitly documented otherwise, don't use this unsupported field which is primarily intended for internal usage. */
|
|
2668
2734
|
extraLocationTypes?: string | string[];
|
|
2669
2735
|
/** Selector specifying which fields to include in a partial response. */
|
|
2670
2736
|
fields?: string;
|