@maxim_mazurok/gapi.client.networksecurity-v1 0.0.20240821 → 0.0.20240919
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 +9 -1
- 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: 20240919
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -101,6 +101,10 @@ declare namespace gapi.client {
|
|
|
101
101
|
/** Required. Source address group to clone items from. */
|
|
102
102
|
sourceAddressGroup?: string;
|
|
103
103
|
}
|
|
104
|
+
interface CustomMirroringProfile {
|
|
105
|
+
/** Required. The MirroringEndpointGroup to which traffic associated with the SP should be mirrored. */
|
|
106
|
+
mirroringEndpointGroup?: string;
|
|
107
|
+
}
|
|
104
108
|
interface Destination {
|
|
105
109
|
/** Required. List of host names to match. Matched against the ":authority" header in http requests. At least one host should match. Each host can be an exact match, or a prefix match (example "mydomain.*") or a suffix match (example "*.myorg.com") or a presence (any) match "*". */
|
|
106
110
|
hosts?: string[];
|
|
@@ -439,6 +443,8 @@ declare namespace gapi.client {
|
|
|
439
443
|
interface SecurityProfile {
|
|
440
444
|
/** Output only. Resource creation timestamp. */
|
|
441
445
|
createTime?: string;
|
|
446
|
+
/** The custom Packet Mirroring v2 configuration for the SecurityProfile. */
|
|
447
|
+
customMirroringProfile?: CustomMirroringProfile;
|
|
442
448
|
/** Optional. An optional description of the profile. Max length 512 characters. */
|
|
443
449
|
description?: string;
|
|
444
450
|
/** 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. */
|
|
@@ -457,6 +463,8 @@ declare namespace gapi.client {
|
|
|
457
463
|
interface SecurityProfileGroup {
|
|
458
464
|
/** Output only. Resource creation timestamp. */
|
|
459
465
|
createTime?: string;
|
|
466
|
+
/** Optional. Reference to a SecurityProfile with the CustomMirroring configuration. */
|
|
467
|
+
customMirroringProfile?: string;
|
|
460
468
|
/** Optional. An optional description of the profile group. Max length 2048 characters. */
|
|
461
469
|
description?: string;
|
|
462
470
|
/** 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. */
|