@maxim_mazurok/gapi.client.networksecurity-v1beta1 0.0.20250108 → 0.0.20250126
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 +83 -65
- package/package.json +1 -1
- package/readme.md +2 -2
package/index.d.ts
CHANGED
|
@@ -9,14 +9,14 @@
|
|
|
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://networksecurity.googleapis.com/$discovery/rest?version=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250126
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
16
16
|
declare namespace gapi.client {
|
|
17
17
|
/** Load Network Security API v1beta1 */
|
|
18
18
|
function load(
|
|
19
|
-
urlOrObject: 'https://networksecurity.googleapis.com/$discovery/rest?version=v1beta1'
|
|
19
|
+
urlOrObject: 'https://networksecurity.googleapis.com/$discovery/rest?version=v1beta1',
|
|
20
20
|
): Promise<void>;
|
|
21
21
|
/** @deprecated Please load APIs with discovery documents. */
|
|
22
22
|
function load(name: 'networksecurity', version: 'v1beta1'): Promise<void>;
|
|
@@ -24,7 +24,7 @@ declare namespace gapi.client {
|
|
|
24
24
|
function load(
|
|
25
25
|
name: 'networksecurity',
|
|
26
26
|
version: 'v1beta1',
|
|
27
|
-
callback: () => any
|
|
27
|
+
callback: () => any,
|
|
28
28
|
): void;
|
|
29
29
|
|
|
30
30
|
namespace networksecurity {
|
|
@@ -662,6 +662,8 @@ declare namespace gapi.client {
|
|
|
662
662
|
interface MirroringDeployment {
|
|
663
663
|
/** Output only. [Output only] Create time stamp */
|
|
664
664
|
createTime?: string;
|
|
665
|
+
/** Optional. User-provided description of the deployment. Used as additional context for the deployment. */
|
|
666
|
+
description?: string;
|
|
665
667
|
/** Required. Immutable. The regional load balancer which the mirrored traffic should be forwarded to. Format is: projects/{project}/regions/{region}/forwardingRules/{forwardingRule} */
|
|
666
668
|
forwardingRule?: string;
|
|
667
669
|
/** Optional. Labels as key value pairs */
|
|
@@ -682,6 +684,8 @@ declare namespace gapi.client {
|
|
|
682
684
|
connectedEndpointGroups?: MirroringDeploymentGroupConnectedEndpointGroup[];
|
|
683
685
|
/** Output only. [Output only] Create time stamp */
|
|
684
686
|
createTime?: string;
|
|
687
|
+
/** Optional. User-provided description of the deployment group. Used as additional context for the deployment group. */
|
|
688
|
+
description?: string;
|
|
685
689
|
/** Optional. Labels as key value pairs */
|
|
686
690
|
labels?: {[P in string]: string};
|
|
687
691
|
/** Immutable. Identifier. Then name of the MirroringDeploymentGroup. */
|
|
@@ -700,8 +704,12 @@ declare namespace gapi.client {
|
|
|
700
704
|
name?: string;
|
|
701
705
|
}
|
|
702
706
|
interface MirroringEndpointGroup {
|
|
707
|
+
/** Output only. List of Mirroring Endpoint Group Associations that are associated to this endpoint group. */
|
|
708
|
+
associations?: MirroringEndpointGroupAssociationDetails[];
|
|
703
709
|
/** Output only. [Output only] Create time stamp */
|
|
704
710
|
createTime?: string;
|
|
711
|
+
/** Optional. User-provided description of the endpoint group. Used as additional context for the endpoint group. */
|
|
712
|
+
description?: string;
|
|
705
713
|
/** Optional. Labels as key value pairs */
|
|
706
714
|
labels?: {[P in string]: string};
|
|
707
715
|
/** Required. Immutable. The Mirroring Deployment Group that this resource is connected to. Format is: `projects/{project}/locations/global/mirroringDeploymentGroups/{mirroringDeploymentGroup}` */
|
|
@@ -735,6 +743,14 @@ declare namespace gapi.client {
|
|
|
735
743
|
/** Output only. [Output only] Update time stamp */
|
|
736
744
|
updateTime?: string;
|
|
737
745
|
}
|
|
746
|
+
interface MirroringEndpointGroupAssociationDetails {
|
|
747
|
+
/** Output only. The resource name of the MirroringEndpointGroupAssociation. Format: projects/{project}/locations/{location}/mirroringEndpointGroupAssociations/{mirroringEndpointGroupAssociation} */
|
|
748
|
+
name?: string;
|
|
749
|
+
/** Output only. The VPC network associated. Format: projects/{project}/global/networks/{name}. */
|
|
750
|
+
network?: string;
|
|
751
|
+
/** Output only. Current state of the association. */
|
|
752
|
+
state?: string;
|
|
753
|
+
}
|
|
738
754
|
interface MirroringEndpointGroupAssociationLocationDetails {
|
|
739
755
|
/** Output only. The cloud location. */
|
|
740
756
|
location?: string;
|
|
@@ -818,6 +834,8 @@ declare namespace gapi.client {
|
|
|
818
834
|
customInterceptProfile?: string;
|
|
819
835
|
/** Optional. Reference to a SecurityProfile with the CustomMirroring configuration. */
|
|
820
836
|
customMirroringProfile?: string;
|
|
837
|
+
/** Output only. Identifier used by the data-path. Unique within {container, location}. */
|
|
838
|
+
dataPathId?: string;
|
|
821
839
|
/** Optional. An optional description of the profile group. Max length 2048 characters. */
|
|
822
840
|
description?: string;
|
|
823
841
|
/** Output only. This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding. */
|
|
@@ -980,7 +998,7 @@ declare namespace gapi.client {
|
|
|
980
998
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
981
999
|
uploadType?: string;
|
|
982
1000
|
},
|
|
983
|
-
body: AddAddressGroupItemsRequest
|
|
1001
|
+
body: AddAddressGroupItemsRequest,
|
|
984
1002
|
): Request<Operation>;
|
|
985
1003
|
/** Clones items from one address group to another. */
|
|
986
1004
|
cloneItems(request: {
|
|
@@ -1038,7 +1056,7 @@ declare namespace gapi.client {
|
|
|
1038
1056
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1039
1057
|
uploadType?: string;
|
|
1040
1058
|
},
|
|
1041
|
-
body: CloneAddressGroupItemsRequest
|
|
1059
|
+
body: CloneAddressGroupItemsRequest,
|
|
1042
1060
|
): Request<Operation>;
|
|
1043
1061
|
/** Creates a new address group in a given project and location. */
|
|
1044
1062
|
create(request: {
|
|
@@ -1104,7 +1122,7 @@ declare namespace gapi.client {
|
|
|
1104
1122
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1105
1123
|
uploadType?: string;
|
|
1106
1124
|
},
|
|
1107
|
-
body: AddressGroup
|
|
1125
|
+
body: AddressGroup,
|
|
1108
1126
|
): Request<Operation>;
|
|
1109
1127
|
/** Deletes an address group. */
|
|
1110
1128
|
delete(request?: {
|
|
@@ -1288,7 +1306,7 @@ declare namespace gapi.client {
|
|
|
1288
1306
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1289
1307
|
uploadType?: string;
|
|
1290
1308
|
},
|
|
1291
|
-
body: AddressGroup
|
|
1309
|
+
body: AddressGroup,
|
|
1292
1310
|
): Request<Operation>;
|
|
1293
1311
|
/** Removes items from an address group. */
|
|
1294
1312
|
removeItems(request: {
|
|
@@ -1346,7 +1364,7 @@ declare namespace gapi.client {
|
|
|
1346
1364
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1347
1365
|
uploadType?: string;
|
|
1348
1366
|
},
|
|
1349
|
-
body: RemoveAddressGroupItemsRequest
|
|
1367
|
+
body: RemoveAddressGroupItemsRequest,
|
|
1350
1368
|
): Request<Operation>;
|
|
1351
1369
|
}
|
|
1352
1370
|
interface FirewallEndpointsResource {
|
|
@@ -1414,7 +1432,7 @@ declare namespace gapi.client {
|
|
|
1414
1432
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1415
1433
|
uploadType?: string;
|
|
1416
1434
|
},
|
|
1417
|
-
body: FirewallEndpoint
|
|
1435
|
+
body: FirewallEndpoint,
|
|
1418
1436
|
): Request<Operation>;
|
|
1419
1437
|
/** Deletes a single Endpoint. */
|
|
1420
1438
|
delete(request?: {
|
|
@@ -1571,7 +1589,7 @@ declare namespace gapi.client {
|
|
|
1571
1589
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1572
1590
|
uploadType?: string;
|
|
1573
1591
|
},
|
|
1574
|
-
body: FirewallEndpoint
|
|
1592
|
+
body: FirewallEndpoint,
|
|
1575
1593
|
): Request<Operation>;
|
|
1576
1594
|
}
|
|
1577
1595
|
interface OperationsResource {
|
|
@@ -1631,7 +1649,7 @@ declare namespace gapi.client {
|
|
|
1631
1649
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1632
1650
|
uploadType?: string;
|
|
1633
1651
|
},
|
|
1634
|
-
body: CancelOperationRequest
|
|
1652
|
+
body: CancelOperationRequest,
|
|
1635
1653
|
): Request<{}>;
|
|
1636
1654
|
/** Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. */
|
|
1637
1655
|
delete(request?: {
|
|
@@ -1782,7 +1800,7 @@ declare namespace gapi.client {
|
|
|
1782
1800
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1783
1801
|
uploadType?: string;
|
|
1784
1802
|
},
|
|
1785
|
-
body: SecurityProfileGroup
|
|
1803
|
+
body: SecurityProfileGroup,
|
|
1786
1804
|
): Request<Operation>;
|
|
1787
1805
|
/** Deletes a single SecurityProfileGroup. */
|
|
1788
1806
|
delete(request?: {
|
|
@@ -1931,7 +1949,7 @@ declare namespace gapi.client {
|
|
|
1931
1949
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1932
1950
|
uploadType?: string;
|
|
1933
1951
|
},
|
|
1934
|
-
body: SecurityProfileGroup
|
|
1952
|
+
body: SecurityProfileGroup,
|
|
1935
1953
|
): Request<Operation>;
|
|
1936
1954
|
}
|
|
1937
1955
|
interface SecurityProfilesResource {
|
|
@@ -1995,7 +2013,7 @@ declare namespace gapi.client {
|
|
|
1995
2013
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1996
2014
|
uploadType?: string;
|
|
1997
2015
|
},
|
|
1998
|
-
body: SecurityProfile
|
|
2016
|
+
body: SecurityProfile,
|
|
1999
2017
|
): Request<Operation>;
|
|
2000
2018
|
/** Deletes a single SecurityProfile. */
|
|
2001
2019
|
delete(request?: {
|
|
@@ -2144,7 +2162,7 @@ declare namespace gapi.client {
|
|
|
2144
2162
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2145
2163
|
uploadType?: string;
|
|
2146
2164
|
},
|
|
2147
|
-
body: SecurityProfile
|
|
2165
|
+
body: SecurityProfile,
|
|
2148
2166
|
): Request<Operation>;
|
|
2149
2167
|
}
|
|
2150
2168
|
interface LocationsResource {
|
|
@@ -2214,7 +2232,7 @@ declare namespace gapi.client {
|
|
|
2214
2232
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2215
2233
|
uploadType?: string;
|
|
2216
2234
|
},
|
|
2217
|
-
body: AddAddressGroupItemsRequest
|
|
2235
|
+
body: AddAddressGroupItemsRequest,
|
|
2218
2236
|
): Request<Operation>;
|
|
2219
2237
|
/** Clones items from one address group to another. */
|
|
2220
2238
|
cloneItems(request: {
|
|
@@ -2272,7 +2290,7 @@ declare namespace gapi.client {
|
|
|
2272
2290
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2273
2291
|
uploadType?: string;
|
|
2274
2292
|
},
|
|
2275
|
-
body: CloneAddressGroupItemsRequest
|
|
2293
|
+
body: CloneAddressGroupItemsRequest,
|
|
2276
2294
|
): Request<Operation>;
|
|
2277
2295
|
/** Creates a new address group in a given project and location. */
|
|
2278
2296
|
create(request: {
|
|
@@ -2338,7 +2356,7 @@ declare namespace gapi.client {
|
|
|
2338
2356
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2339
2357
|
uploadType?: string;
|
|
2340
2358
|
},
|
|
2341
|
-
body: AddressGroup
|
|
2359
|
+
body: AddressGroup,
|
|
2342
2360
|
): Request<Operation>;
|
|
2343
2361
|
/** Deletes a single address group. */
|
|
2344
2362
|
delete(request?: {
|
|
@@ -2551,7 +2569,7 @@ declare namespace gapi.client {
|
|
|
2551
2569
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2552
2570
|
uploadType?: string;
|
|
2553
2571
|
},
|
|
2554
|
-
body: AddressGroup
|
|
2572
|
+
body: AddressGroup,
|
|
2555
2573
|
): Request<Operation>;
|
|
2556
2574
|
/** Removes items from an address group. */
|
|
2557
2575
|
removeItems(request: {
|
|
@@ -2609,7 +2627,7 @@ declare namespace gapi.client {
|
|
|
2609
2627
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2610
2628
|
uploadType?: string;
|
|
2611
2629
|
},
|
|
2612
|
-
body: RemoveAddressGroupItemsRequest
|
|
2630
|
+
body: RemoveAddressGroupItemsRequest,
|
|
2613
2631
|
): Request<Operation>;
|
|
2614
2632
|
/** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
|
|
2615
2633
|
setIamPolicy(
|
|
@@ -2639,7 +2657,7 @@ declare namespace gapi.client {
|
|
|
2639
2657
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2640
2658
|
uploadType?: string;
|
|
2641
2659
|
},
|
|
2642
|
-
body: GoogleIamV1SetIamPolicyRequest
|
|
2660
|
+
body: GoogleIamV1SetIamPolicyRequest,
|
|
2643
2661
|
): Request<GoogleIamV1Policy>;
|
|
2644
2662
|
/** Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a `NOT_FOUND` error. Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning. */
|
|
2645
2663
|
testIamPermissions(
|
|
@@ -2669,7 +2687,7 @@ declare namespace gapi.client {
|
|
|
2669
2687
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2670
2688
|
uploadType?: string;
|
|
2671
2689
|
},
|
|
2672
|
-
body: GoogleIamV1TestIamPermissionsRequest
|
|
2690
|
+
body: GoogleIamV1TestIamPermissionsRequest,
|
|
2673
2691
|
): Request<GoogleIamV1TestIamPermissionsResponse>;
|
|
2674
2692
|
}
|
|
2675
2693
|
interface AuthorizationPoliciesResource {
|
|
@@ -2733,7 +2751,7 @@ declare namespace gapi.client {
|
|
|
2733
2751
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2734
2752
|
uploadType?: string;
|
|
2735
2753
|
},
|
|
2736
|
-
body: AuthorizationPolicy
|
|
2754
|
+
body: AuthorizationPolicy,
|
|
2737
2755
|
): Request<Operation>;
|
|
2738
2756
|
/** Deletes a single AuthorizationPolicy. */
|
|
2739
2757
|
delete(request?: {
|
|
@@ -2909,7 +2927,7 @@ declare namespace gapi.client {
|
|
|
2909
2927
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2910
2928
|
uploadType?: string;
|
|
2911
2929
|
},
|
|
2912
|
-
body: AuthorizationPolicy
|
|
2930
|
+
body: AuthorizationPolicy,
|
|
2913
2931
|
): Request<Operation>;
|
|
2914
2932
|
/** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
|
|
2915
2933
|
setIamPolicy(
|
|
@@ -2939,7 +2957,7 @@ declare namespace gapi.client {
|
|
|
2939
2957
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2940
2958
|
uploadType?: string;
|
|
2941
2959
|
},
|
|
2942
|
-
body: GoogleIamV1SetIamPolicyRequest
|
|
2960
|
+
body: GoogleIamV1SetIamPolicyRequest,
|
|
2943
2961
|
): Request<GoogleIamV1Policy>;
|
|
2944
2962
|
/** Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a `NOT_FOUND` error. Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning. */
|
|
2945
2963
|
testIamPermissions(
|
|
@@ -2969,7 +2987,7 @@ declare namespace gapi.client {
|
|
|
2969
2987
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2970
2988
|
uploadType?: string;
|
|
2971
2989
|
},
|
|
2972
|
-
body: GoogleIamV1TestIamPermissionsRequest
|
|
2990
|
+
body: GoogleIamV1TestIamPermissionsRequest,
|
|
2973
2991
|
): Request<GoogleIamV1TestIamPermissionsResponse>;
|
|
2974
2992
|
}
|
|
2975
2993
|
interface AuthzPoliciesResource {
|
|
@@ -3037,7 +3055,7 @@ declare namespace gapi.client {
|
|
|
3037
3055
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3038
3056
|
uploadType?: string;
|
|
3039
3057
|
},
|
|
3040
|
-
body: AuthzPolicy
|
|
3058
|
+
body: AuthzPolicy,
|
|
3041
3059
|
): Request<Operation>;
|
|
3042
3060
|
/** Deletes a single AuthzPolicy. */
|
|
3043
3061
|
delete(request?: {
|
|
@@ -3223,7 +3241,7 @@ declare namespace gapi.client {
|
|
|
3223
3241
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3224
3242
|
uploadType?: string;
|
|
3225
3243
|
},
|
|
3226
|
-
body: AuthzPolicy
|
|
3244
|
+
body: AuthzPolicy,
|
|
3227
3245
|
): Request<Operation>;
|
|
3228
3246
|
/** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
|
|
3229
3247
|
setIamPolicy(
|
|
@@ -3253,7 +3271,7 @@ declare namespace gapi.client {
|
|
|
3253
3271
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3254
3272
|
uploadType?: string;
|
|
3255
3273
|
},
|
|
3256
|
-
body: GoogleIamV1SetIamPolicyRequest
|
|
3274
|
+
body: GoogleIamV1SetIamPolicyRequest,
|
|
3257
3275
|
): Request<GoogleIamV1Policy>;
|
|
3258
3276
|
/** Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a `NOT_FOUND` error. Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning. */
|
|
3259
3277
|
testIamPermissions(
|
|
@@ -3283,7 +3301,7 @@ declare namespace gapi.client {
|
|
|
3283
3301
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3284
3302
|
uploadType?: string;
|
|
3285
3303
|
},
|
|
3286
|
-
body: GoogleIamV1TestIamPermissionsRequest
|
|
3304
|
+
body: GoogleIamV1TestIamPermissionsRequest,
|
|
3287
3305
|
): Request<GoogleIamV1TestIamPermissionsResponse>;
|
|
3288
3306
|
}
|
|
3289
3307
|
interface ClientTlsPoliciesResource {
|
|
@@ -3347,7 +3365,7 @@ declare namespace gapi.client {
|
|
|
3347
3365
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3348
3366
|
uploadType?: string;
|
|
3349
3367
|
},
|
|
3350
|
-
body: ClientTlsPolicy
|
|
3368
|
+
body: ClientTlsPolicy,
|
|
3351
3369
|
): Request<Operation>;
|
|
3352
3370
|
/** Deletes a single ClientTlsPolicy. */
|
|
3353
3371
|
delete(request?: {
|
|
@@ -3523,7 +3541,7 @@ declare namespace gapi.client {
|
|
|
3523
3541
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3524
3542
|
uploadType?: string;
|
|
3525
3543
|
},
|
|
3526
|
-
body: ClientTlsPolicy
|
|
3544
|
+
body: ClientTlsPolicy,
|
|
3527
3545
|
): Request<Operation>;
|
|
3528
3546
|
/** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
|
|
3529
3547
|
setIamPolicy(
|
|
@@ -3553,7 +3571,7 @@ declare namespace gapi.client {
|
|
|
3553
3571
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3554
3572
|
uploadType?: string;
|
|
3555
3573
|
},
|
|
3556
|
-
body: GoogleIamV1SetIamPolicyRequest
|
|
3574
|
+
body: GoogleIamV1SetIamPolicyRequest,
|
|
3557
3575
|
): Request<GoogleIamV1Policy>;
|
|
3558
3576
|
/** Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a `NOT_FOUND` error. Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning. */
|
|
3559
3577
|
testIamPermissions(
|
|
@@ -3583,7 +3601,7 @@ declare namespace gapi.client {
|
|
|
3583
3601
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3584
3602
|
uploadType?: string;
|
|
3585
3603
|
},
|
|
3586
|
-
body: GoogleIamV1TestIamPermissionsRequest
|
|
3604
|
+
body: GoogleIamV1TestIamPermissionsRequest,
|
|
3587
3605
|
): Request<GoogleIamV1TestIamPermissionsResponse>;
|
|
3588
3606
|
}
|
|
3589
3607
|
interface FirewallEndpointAssociationsResource {
|
|
@@ -3651,7 +3669,7 @@ declare namespace gapi.client {
|
|
|
3651
3669
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3652
3670
|
uploadType?: string;
|
|
3653
3671
|
},
|
|
3654
|
-
body: FirewallEndpointAssociation
|
|
3672
|
+
body: FirewallEndpointAssociation,
|
|
3655
3673
|
): Request<Operation>;
|
|
3656
3674
|
/** Deletes a single FirewallEndpointAssociation. */
|
|
3657
3675
|
delete(request?: {
|
|
@@ -3808,7 +3826,7 @@ declare namespace gapi.client {
|
|
|
3808
3826
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3809
3827
|
uploadType?: string;
|
|
3810
3828
|
},
|
|
3811
|
-
body: FirewallEndpointAssociation
|
|
3829
|
+
body: FirewallEndpointAssociation,
|
|
3812
3830
|
): Request<Operation>;
|
|
3813
3831
|
}
|
|
3814
3832
|
interface RulesResource {
|
|
@@ -3872,7 +3890,7 @@ declare namespace gapi.client {
|
|
|
3872
3890
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3873
3891
|
uploadType?: string;
|
|
3874
3892
|
},
|
|
3875
|
-
body: GatewaySecurityPolicyRule
|
|
3893
|
+
body: GatewaySecurityPolicyRule,
|
|
3876
3894
|
): Request<Operation>;
|
|
3877
3895
|
/** Deletes a single GatewaySecurityPolicyRule. */
|
|
3878
3896
|
delete(request?: {
|
|
@@ -4019,7 +4037,7 @@ declare namespace gapi.client {
|
|
|
4019
4037
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4020
4038
|
uploadType?: string;
|
|
4021
4039
|
},
|
|
4022
|
-
body: GatewaySecurityPolicyRule
|
|
4040
|
+
body: GatewaySecurityPolicyRule,
|
|
4023
4041
|
): Request<Operation>;
|
|
4024
4042
|
}
|
|
4025
4043
|
interface GatewaySecurityPoliciesResource {
|
|
@@ -4083,7 +4101,7 @@ declare namespace gapi.client {
|
|
|
4083
4101
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4084
4102
|
uploadType?: string;
|
|
4085
4103
|
},
|
|
4086
|
-
body: GatewaySecurityPolicy
|
|
4104
|
+
body: GatewaySecurityPolicy,
|
|
4087
4105
|
): Request<Operation>;
|
|
4088
4106
|
/** Deletes a single GatewaySecurityPolicy. */
|
|
4089
4107
|
delete(request?: {
|
|
@@ -4230,7 +4248,7 @@ declare namespace gapi.client {
|
|
|
4230
4248
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4231
4249
|
uploadType?: string;
|
|
4232
4250
|
},
|
|
4233
|
-
body: GatewaySecurityPolicy
|
|
4251
|
+
body: GatewaySecurityPolicy,
|
|
4234
4252
|
): Request<Operation>;
|
|
4235
4253
|
rules: RulesResource;
|
|
4236
4254
|
}
|
|
@@ -4299,7 +4317,7 @@ declare namespace gapi.client {
|
|
|
4299
4317
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4300
4318
|
uploadType?: string;
|
|
4301
4319
|
},
|
|
4302
|
-
body: InterceptDeploymentGroup
|
|
4320
|
+
body: InterceptDeploymentGroup,
|
|
4303
4321
|
): Request<Operation>;
|
|
4304
4322
|
/** Deletes a single InterceptDeploymentGroup. */
|
|
4305
4323
|
delete(request?: {
|
|
@@ -4456,7 +4474,7 @@ declare namespace gapi.client {
|
|
|
4456
4474
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4457
4475
|
uploadType?: string;
|
|
4458
4476
|
},
|
|
4459
|
-
body: InterceptDeploymentGroup
|
|
4477
|
+
body: InterceptDeploymentGroup,
|
|
4460
4478
|
): Request<Operation>;
|
|
4461
4479
|
}
|
|
4462
4480
|
interface InterceptDeploymentsResource {
|
|
@@ -4524,7 +4542,7 @@ declare namespace gapi.client {
|
|
|
4524
4542
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4525
4543
|
uploadType?: string;
|
|
4526
4544
|
},
|
|
4527
|
-
body: InterceptDeployment
|
|
4545
|
+
body: InterceptDeployment,
|
|
4528
4546
|
): Request<Operation>;
|
|
4529
4547
|
/** Deletes a single InterceptDeployment. */
|
|
4530
4548
|
delete(request?: {
|
|
@@ -4681,7 +4699,7 @@ declare namespace gapi.client {
|
|
|
4681
4699
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4682
4700
|
uploadType?: string;
|
|
4683
4701
|
},
|
|
4684
|
-
body: InterceptDeployment
|
|
4702
|
+
body: InterceptDeployment,
|
|
4685
4703
|
): Request<Operation>;
|
|
4686
4704
|
}
|
|
4687
4705
|
interface InterceptEndpointGroupAssociationsResource {
|
|
@@ -4749,7 +4767,7 @@ declare namespace gapi.client {
|
|
|
4749
4767
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4750
4768
|
uploadType?: string;
|
|
4751
4769
|
},
|
|
4752
|
-
body: InterceptEndpointGroupAssociation
|
|
4770
|
+
body: InterceptEndpointGroupAssociation,
|
|
4753
4771
|
): Request<Operation>;
|
|
4754
4772
|
/** Deletes a single InterceptEndpointGroupAssociation. */
|
|
4755
4773
|
delete(request?: {
|
|
@@ -4906,7 +4924,7 @@ declare namespace gapi.client {
|
|
|
4906
4924
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4907
4925
|
uploadType?: string;
|
|
4908
4926
|
},
|
|
4909
|
-
body: InterceptEndpointGroupAssociation
|
|
4927
|
+
body: InterceptEndpointGroupAssociation,
|
|
4910
4928
|
): Request<Operation>;
|
|
4911
4929
|
}
|
|
4912
4930
|
interface InterceptEndpointGroupsResource {
|
|
@@ -4974,7 +4992,7 @@ declare namespace gapi.client {
|
|
|
4974
4992
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4975
4993
|
uploadType?: string;
|
|
4976
4994
|
},
|
|
4977
|
-
body: InterceptEndpointGroup
|
|
4995
|
+
body: InterceptEndpointGroup,
|
|
4978
4996
|
): Request<Operation>;
|
|
4979
4997
|
/** Deletes a single InterceptEndpointGroup. */
|
|
4980
4998
|
delete(request?: {
|
|
@@ -5131,7 +5149,7 @@ declare namespace gapi.client {
|
|
|
5131
5149
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5132
5150
|
uploadType?: string;
|
|
5133
5151
|
},
|
|
5134
|
-
body: InterceptEndpointGroup
|
|
5152
|
+
body: InterceptEndpointGroup,
|
|
5135
5153
|
): Request<Operation>;
|
|
5136
5154
|
}
|
|
5137
5155
|
interface MirroringDeploymentGroupsResource {
|
|
@@ -5199,7 +5217,7 @@ declare namespace gapi.client {
|
|
|
5199
5217
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5200
5218
|
uploadType?: string;
|
|
5201
5219
|
},
|
|
5202
|
-
body: MirroringDeploymentGroup
|
|
5220
|
+
body: MirroringDeploymentGroup,
|
|
5203
5221
|
): Request<Operation>;
|
|
5204
5222
|
/** Deletes a single MirroringDeploymentGroup. */
|
|
5205
5223
|
delete(request?: {
|
|
@@ -5356,7 +5374,7 @@ declare namespace gapi.client {
|
|
|
5356
5374
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5357
5375
|
uploadType?: string;
|
|
5358
5376
|
},
|
|
5359
|
-
body: MirroringDeploymentGroup
|
|
5377
|
+
body: MirroringDeploymentGroup,
|
|
5360
5378
|
): Request<Operation>;
|
|
5361
5379
|
}
|
|
5362
5380
|
interface MirroringDeploymentsResource {
|
|
@@ -5424,7 +5442,7 @@ declare namespace gapi.client {
|
|
|
5424
5442
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5425
5443
|
uploadType?: string;
|
|
5426
5444
|
},
|
|
5427
|
-
body: MirroringDeployment
|
|
5445
|
+
body: MirroringDeployment,
|
|
5428
5446
|
): Request<Operation>;
|
|
5429
5447
|
/** Deletes a single MirroringDeployment. */
|
|
5430
5448
|
delete(request?: {
|
|
@@ -5581,7 +5599,7 @@ declare namespace gapi.client {
|
|
|
5581
5599
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5582
5600
|
uploadType?: string;
|
|
5583
5601
|
},
|
|
5584
|
-
body: MirroringDeployment
|
|
5602
|
+
body: MirroringDeployment,
|
|
5585
5603
|
): Request<Operation>;
|
|
5586
5604
|
}
|
|
5587
5605
|
interface MirroringEndpointGroupAssociationsResource {
|
|
@@ -5649,7 +5667,7 @@ declare namespace gapi.client {
|
|
|
5649
5667
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5650
5668
|
uploadType?: string;
|
|
5651
5669
|
},
|
|
5652
|
-
body: MirroringEndpointGroupAssociation
|
|
5670
|
+
body: MirroringEndpointGroupAssociation,
|
|
5653
5671
|
): Request<Operation>;
|
|
5654
5672
|
/** Deletes a single MirroringEndpointGroupAssociation. */
|
|
5655
5673
|
delete(request?: {
|
|
@@ -5806,7 +5824,7 @@ declare namespace gapi.client {
|
|
|
5806
5824
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5807
5825
|
uploadType?: string;
|
|
5808
5826
|
},
|
|
5809
|
-
body: MirroringEndpointGroupAssociation
|
|
5827
|
+
body: MirroringEndpointGroupAssociation,
|
|
5810
5828
|
): Request<Operation>;
|
|
5811
5829
|
}
|
|
5812
5830
|
interface MirroringEndpointGroupsResource {
|
|
@@ -5874,7 +5892,7 @@ declare namespace gapi.client {
|
|
|
5874
5892
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5875
5893
|
uploadType?: string;
|
|
5876
5894
|
},
|
|
5877
|
-
body: MirroringEndpointGroup
|
|
5895
|
+
body: MirroringEndpointGroup,
|
|
5878
5896
|
): Request<Operation>;
|
|
5879
5897
|
/** Deletes a single MirroringEndpointGroup. */
|
|
5880
5898
|
delete(request?: {
|
|
@@ -6031,7 +6049,7 @@ declare namespace gapi.client {
|
|
|
6031
6049
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6032
6050
|
uploadType?: string;
|
|
6033
6051
|
},
|
|
6034
|
-
body: MirroringEndpointGroup
|
|
6052
|
+
body: MirroringEndpointGroup,
|
|
6035
6053
|
): Request<Operation>;
|
|
6036
6054
|
}
|
|
6037
6055
|
interface OperationsResource {
|
|
@@ -6091,7 +6109,7 @@ declare namespace gapi.client {
|
|
|
6091
6109
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6092
6110
|
uploadType?: string;
|
|
6093
6111
|
},
|
|
6094
|
-
body: CancelOperationRequest
|
|
6112
|
+
body: CancelOperationRequest,
|
|
6095
6113
|
): Request<{}>;
|
|
6096
6114
|
/** Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. */
|
|
6097
6115
|
delete(request?: {
|
|
@@ -6242,7 +6260,7 @@ declare namespace gapi.client {
|
|
|
6242
6260
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6243
6261
|
uploadType?: string;
|
|
6244
6262
|
},
|
|
6245
|
-
body: ServerTlsPolicy
|
|
6263
|
+
body: ServerTlsPolicy,
|
|
6246
6264
|
): Request<Operation>;
|
|
6247
6265
|
/** Deletes a single ServerTlsPolicy. */
|
|
6248
6266
|
delete(request?: {
|
|
@@ -6418,7 +6436,7 @@ declare namespace gapi.client {
|
|
|
6418
6436
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6419
6437
|
uploadType?: string;
|
|
6420
6438
|
},
|
|
6421
|
-
body: ServerTlsPolicy
|
|
6439
|
+
body: ServerTlsPolicy,
|
|
6422
6440
|
): Request<Operation>;
|
|
6423
6441
|
/** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
|
|
6424
6442
|
setIamPolicy(
|
|
@@ -6448,7 +6466,7 @@ declare namespace gapi.client {
|
|
|
6448
6466
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6449
6467
|
uploadType?: string;
|
|
6450
6468
|
},
|
|
6451
|
-
body: GoogleIamV1SetIamPolicyRequest
|
|
6469
|
+
body: GoogleIamV1SetIamPolicyRequest,
|
|
6452
6470
|
): Request<GoogleIamV1Policy>;
|
|
6453
6471
|
/** Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a `NOT_FOUND` error. Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning. */
|
|
6454
6472
|
testIamPermissions(
|
|
@@ -6478,7 +6496,7 @@ declare namespace gapi.client {
|
|
|
6478
6496
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6479
6497
|
uploadType?: string;
|
|
6480
6498
|
},
|
|
6481
|
-
body: GoogleIamV1TestIamPermissionsRequest
|
|
6499
|
+
body: GoogleIamV1TestIamPermissionsRequest,
|
|
6482
6500
|
): Request<GoogleIamV1TestIamPermissionsResponse>;
|
|
6483
6501
|
}
|
|
6484
6502
|
interface TlsInspectionPoliciesResource {
|
|
@@ -6542,7 +6560,7 @@ declare namespace gapi.client {
|
|
|
6542
6560
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6543
6561
|
uploadType?: string;
|
|
6544
6562
|
},
|
|
6545
|
-
body: TlsInspectionPolicy
|
|
6563
|
+
body: TlsInspectionPolicy,
|
|
6546
6564
|
): Request<Operation>;
|
|
6547
6565
|
/** Deletes a single TlsInspectionPolicy. */
|
|
6548
6566
|
delete(request?: {
|
|
@@ -6691,7 +6709,7 @@ declare namespace gapi.client {
|
|
|
6691
6709
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6692
6710
|
uploadType?: string;
|
|
6693
6711
|
},
|
|
6694
|
-
body: TlsInspectionPolicy
|
|
6712
|
+
body: TlsInspectionPolicy,
|
|
6695
6713
|
): Request<Operation>;
|
|
6696
6714
|
}
|
|
6697
6715
|
interface UrlListsResource {
|
|
@@ -6755,7 +6773,7 @@ declare namespace gapi.client {
|
|
|
6755
6773
|
/** Required. Short name of the UrlList resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "url_list". */
|
|
6756
6774
|
urlListId?: string;
|
|
6757
6775
|
},
|
|
6758
|
-
body: UrlList
|
|
6776
|
+
body: UrlList,
|
|
6759
6777
|
): Request<Operation>;
|
|
6760
6778
|
/** Deletes a single UrlList. */
|
|
6761
6779
|
delete(request?: {
|
|
@@ -6902,7 +6920,7 @@ declare namespace gapi.client {
|
|
|
6902
6920
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6903
6921
|
uploadType?: string;
|
|
6904
6922
|
},
|
|
6905
|
-
body: UrlList
|
|
6923
|
+
body: UrlList,
|
|
6906
6924
|
): Request<Operation>;
|
|
6907
6925
|
}
|
|
6908
6926
|
interface LocationsResource {
|
package/package.json
CHANGED
package/readme.md
CHANGED