@maxim_mazurok/gapi.client.networksecurity-v1 0.0.20241109 → 0.0.20241202
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 +15 -7
- 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://networksecurity.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20241202
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -93,9 +93,9 @@ declare namespace gapi.client {
|
|
|
93
93
|
updateTime?: string;
|
|
94
94
|
}
|
|
95
95
|
interface AuthzPolicyAuthzRule {
|
|
96
|
-
/** Optional. Describes properties of
|
|
96
|
+
/** Optional. Describes properties of a source of a request. */
|
|
97
97
|
from?: AuthzPolicyAuthzRuleFrom;
|
|
98
|
-
/** Optional. Describes properties of
|
|
98
|
+
/** Optional. Describes properties of a target of a request. */
|
|
99
99
|
to?: AuthzPolicyAuthzRuleTo;
|
|
100
100
|
/** Optional. CEL expression that describes the conditions to be satisfied for the action. The result of the CEL expression is ANDed with the from and to. Refer to the CEL language reference for a list of available attributes. */
|
|
101
101
|
when?: string;
|
|
@@ -103,7 +103,7 @@ declare namespace gapi.client {
|
|
|
103
103
|
interface AuthzPolicyAuthzRuleFrom {
|
|
104
104
|
/** Optional. Describes the negated properties of request sources. Matches requests from sources that do not match the criteria specified in this field. At least one of sources or notSources must be specified. */
|
|
105
105
|
notSources?: AuthzPolicyAuthzRuleFromRequestSource[];
|
|
106
|
-
/** Optional. Describes the properties of a request's sources. At least one of sources or notSources must be specified. Limited to
|
|
106
|
+
/** Optional. Describes the properties of a request's sources. At least one of sources or notSources must be specified. Limited to 1 source. A match occurs when ANY source (in sources or notSources) matches the request. Within a single source, the match follows AND semantics across fields and OR semantics within a single field, i.e. a match occurs when ANY principal matches AND ANY ipBlocks match. */
|
|
107
107
|
sources?: AuthzPolicyAuthzRuleFromRequestSource[];
|
|
108
108
|
}
|
|
109
109
|
interface AuthzPolicyAuthzRuleFromRequestSource {
|
|
@@ -143,7 +143,7 @@ declare namespace gapi.client {
|
|
|
143
143
|
interface AuthzPolicyAuthzRuleTo {
|
|
144
144
|
/** Optional. Describes the negated properties of the targets of a request. Matches requests for operations that do not match the criteria specified in this field. At least one of operations or notOperations must be specified. */
|
|
145
145
|
notOperations?: AuthzPolicyAuthzRuleToRequestOperation[];
|
|
146
|
-
/** Optional. Describes properties of one or more targets of a request. At least one of operations or notOperations must be specified. Limited to
|
|
146
|
+
/** Optional. Describes properties of one or more targets of a request. At least one of operations or notOperations must be specified. Limited to 1 operation. A match occurs when ANY operation (in operations or notOperations) matches. Within an operation, the match follows AND semantics across fields and OR semantics within a field, i.e. a match occurs when ANY path matches AND ANY header matches and ANY method matches. */
|
|
147
147
|
operations?: AuthzPolicyAuthzRuleToRequestOperation[];
|
|
148
148
|
}
|
|
149
149
|
interface AuthzPolicyAuthzRuleToRequestOperation {
|
|
@@ -206,6 +206,10 @@ declare namespace gapi.client {
|
|
|
206
206
|
/** Required. Source address group to clone items from. */
|
|
207
207
|
sourceAddressGroup?: string;
|
|
208
208
|
}
|
|
209
|
+
interface CustomInterceptProfile {
|
|
210
|
+
/** Required. The InterceptEndpointGroup to which traffic associated with the SP should be mirrored. */
|
|
211
|
+
interceptEndpointGroup?: string;
|
|
212
|
+
}
|
|
209
213
|
interface CustomMirroringProfile {
|
|
210
214
|
/** Required. The MirroringEndpointGroup to which traffic associated with the SP should be mirrored. */
|
|
211
215
|
mirroringEndpointGroup?: string;
|
|
@@ -556,6 +560,8 @@ declare namespace gapi.client {
|
|
|
556
560
|
interface SecurityProfile {
|
|
557
561
|
/** Output only. Resource creation timestamp. */
|
|
558
562
|
createTime?: string;
|
|
563
|
+
/** The custom TPPI configuration for the SecurityProfile. */
|
|
564
|
+
customInterceptProfile?: CustomInterceptProfile;
|
|
559
565
|
/** The custom Packet Mirroring v2 configuration for the SecurityProfile. */
|
|
560
566
|
customMirroringProfile?: CustomMirroringProfile;
|
|
561
567
|
/** Optional. An optional description of the profile. Max length 512 characters. */
|
|
@@ -576,6 +582,8 @@ declare namespace gapi.client {
|
|
|
576
582
|
interface SecurityProfileGroup {
|
|
577
583
|
/** Output only. Resource creation timestamp. */
|
|
578
584
|
createTime?: string;
|
|
585
|
+
/** Optional. Reference to a SecurityProfile with the CustomIntercept configuration. */
|
|
586
|
+
customInterceptProfile?: string;
|
|
579
587
|
/** Optional. Reference to a SecurityProfile with the CustomMirroring configuration. */
|
|
580
588
|
customMirroringProfile?: string;
|
|
581
589
|
/** Optional. An optional description of the profile group. Max length 2048 characters. */
|
|
@@ -1335,7 +1343,7 @@ declare namespace gapi.client {
|
|
|
1335
1343
|
): Request<Operation>;
|
|
1336
1344
|
}
|
|
1337
1345
|
interface OperationsResource {
|
|
1338
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
1346
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
1339
1347
|
cancel(request: {
|
|
1340
1348
|
/** V1 error format. */
|
|
1341
1349
|
'$.xgafv'?: string;
|
|
@@ -3995,7 +4003,7 @@ declare namespace gapi.client {
|
|
|
3995
4003
|
rules: RulesResource;
|
|
3996
4004
|
}
|
|
3997
4005
|
interface OperationsResource {
|
|
3998
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
4006
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
3999
4007
|
cancel(request: {
|
|
4000
4008
|
/** V1 error format. */
|
|
4001
4009
|
'$.xgafv'?: string;
|