@maxim_mazurok/gapi.client.networksecurity-v1 0.1.20260131 → 0.1.20260204
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 +17 -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: 20260204
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -966,6 +966,8 @@ declare namespace gapi.client {
|
|
|
966
966
|
type?: string;
|
|
967
967
|
/** Output only. Last resource update timestamp. */
|
|
968
968
|
updateTime?: string;
|
|
969
|
+
/** The URL filtering configuration for the SecurityProfile. */
|
|
970
|
+
urlFilteringProfile?: UrlFilteringProfile;
|
|
969
971
|
}
|
|
970
972
|
interface SecurityProfileGroup {
|
|
971
973
|
/** Output only. Resource creation timestamp. */
|
|
@@ -988,6 +990,8 @@ declare namespace gapi.client {
|
|
|
988
990
|
threatPreventionProfile?: string;
|
|
989
991
|
/** Output only. Last resource update timestamp. */
|
|
990
992
|
updateTime?: string;
|
|
993
|
+
/** Optional. Reference to a SecurityProfile with the UrlFiltering configuration. */
|
|
994
|
+
urlFilteringProfile?: string;
|
|
991
995
|
}
|
|
992
996
|
interface ServerTlsPolicy {
|
|
993
997
|
/** This field applies only for Traffic Director policies. It is must be set to false for Application Load Balancer policies. Determines if server allows plaintext connections. If set to true, server allows plain text connections. By default, it is set to false. This setting is not exclusive of other encryption modes. For example, if `allow_open` and `mtls_policy` are set, server allows both plain text and mTLS connections. See documentation of other encryption modes to confirm compatibility. Consider using it if you wish to upgrade in place your deployment to TLS while having mixed TLS and non-TLS traffic reaching port :80. */
|
|
@@ -1065,6 +1069,18 @@ declare namespace gapi.client {
|
|
|
1065
1069
|
/** Output only. The timestamp when the resource was updated. */
|
|
1066
1070
|
updateTime?: string;
|
|
1067
1071
|
}
|
|
1072
|
+
interface UrlFilter {
|
|
1073
|
+
/** Required. The action taken when this filter is applied. */
|
|
1074
|
+
filteringAction?: string;
|
|
1075
|
+
/** Required. The priority of this filter within the URL Filtering Profile. Lower integers indicate higher priorities. The priority of a filter must be unique within a URL Filtering Profile. */
|
|
1076
|
+
priority?: number;
|
|
1077
|
+
/** Required. The list of strings that a URL must match with for this filter to be applied. */
|
|
1078
|
+
urls?: string[];
|
|
1079
|
+
}
|
|
1080
|
+
interface UrlFilteringProfile {
|
|
1081
|
+
/** Optional. The list of filtering configs in which each config defines an action to take for some URL match. */
|
|
1082
|
+
urlFilters?: UrlFilter[];
|
|
1083
|
+
}
|
|
1068
1084
|
interface UrlList {
|
|
1069
1085
|
/** Output only. Time when the security policy was created. */
|
|
1070
1086
|
createTime?: string;
|