Skip to content

Commit 7b4f9f4

Browse files
1 parent 3f8c88c commit 7b4f9f4

File tree

7 files changed

+246
-6
lines changed

7 files changed

+246
-6
lines changed

clients/google-api-services-networksecurity/v1beta1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-networksecurity</artifactId>
25-
<version>v1beta1-rev20250822-2.0.0</version>
25+
<version>v1beta1-rev20250903-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-networksecurity:v1beta1-rev20250822-2.0.0'
38+
implementation 'com.google.apis:google-api-services-networksecurity:v1beta1-rev20250903-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-networksecurity/v1beta1/2.0.0/com/google/api/services/networksecurity/v1beta1/model/SecurityProfile.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,13 @@ public final class SecurityProfile extends com.google.api.client.json.GenericJso
102102
@com.google.api.client.util.Key
103103
private String updateTime;
104104

105+
/**
106+
* The URL filtering configuration for the SecurityProfile.
107+
* The value may be {@code null}.
108+
*/
109+
@com.google.api.client.util.Key
110+
private UrlFilteringProfile urlFilteringProfile;
111+
105112
/**
106113
* Output only. Resource creation timestamp.
107114
* @return value or {@code null} for none
@@ -278,6 +285,23 @@ public SecurityProfile setUpdateTime(String updateTime) {
278285
return this;
279286
}
280287

288+
/**
289+
* The URL filtering configuration for the SecurityProfile.
290+
* @return value or {@code null} for none
291+
*/
292+
public UrlFilteringProfile getUrlFilteringProfile() {
293+
return urlFilteringProfile;
294+
}
295+
296+
/**
297+
* The URL filtering configuration for the SecurityProfile.
298+
* @param urlFilteringProfile urlFilteringProfile or {@code null} for none
299+
*/
300+
public SecurityProfile setUrlFilteringProfile(UrlFilteringProfile urlFilteringProfile) {
301+
this.urlFilteringProfile = urlFilteringProfile;
302+
return this;
303+
}
304+
281305
@Override
282306
public SecurityProfile set(String fieldName, Object value) {
283307
return (SecurityProfile) super.set(fieldName, value);

clients/google-api-services-networksecurity/v1beta1/2.0.0/com/google/api/services/networksecurity/v1beta1/model/SecurityProfileGroup.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,13 @@ public final class SecurityProfileGroup extends com.google.api.client.json.Gener
102102
@com.google.api.client.util.Key
103103
private String updateTime;
104104

105+
/**
106+
* Optional. Reference to a SecurityProfile with the UrlFiltering configuration.
107+
* The value may be {@code null}.
108+
*/
109+
@com.google.api.client.util.Key
110+
private java.lang.String urlFilteringProfile;
111+
105112
/**
106113
* Output only. Resource creation timestamp.
107114
* @return value or {@code null} for none
@@ -278,6 +285,23 @@ public SecurityProfileGroup setUpdateTime(String updateTime) {
278285
return this;
279286
}
280287

288+
/**
289+
* Optional. Reference to a SecurityProfile with the UrlFiltering configuration.
290+
* @return value or {@code null} for none
291+
*/
292+
public java.lang.String getUrlFilteringProfile() {
293+
return urlFilteringProfile;
294+
}
295+
296+
/**
297+
* Optional. Reference to a SecurityProfile with the UrlFiltering configuration.
298+
* @param urlFilteringProfile urlFilteringProfile or {@code null} for none
299+
*/
300+
public SecurityProfileGroup setUrlFilteringProfile(java.lang.String urlFilteringProfile) {
301+
this.urlFilteringProfile = urlFilteringProfile;
302+
return this;
303+
}
304+
281305
@Override
282306
public SecurityProfileGroup set(String fieldName, Object value) {
283307
return (SecurityProfileGroup) super.set(fieldName, value);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.networksecurity.v1beta1.model;
18+
19+
/**
20+
* A URL filter defines an action to take for some URL match.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Network Security API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class UrlFilter extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Required. The action taken when this filter is applied.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String filteringAction;
38+
39+
/**
40+
* Required. The priority of this filter within the URL Filtering Profile. Lower integers indicate
41+
* higher priorities. The priority of a filter must be unique within a URL Filtering Profile.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.Integer priority;
46+
47+
/**
48+
* Required. The list of strings that a URL must match with for this filter to be applied.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.util.List<java.lang.String> urls;
53+
54+
/**
55+
* Required. The action taken when this filter is applied.
56+
* @return value or {@code null} for none
57+
*/
58+
public java.lang.String getFilteringAction() {
59+
return filteringAction;
60+
}
61+
62+
/**
63+
* Required. The action taken when this filter is applied.
64+
* @param filteringAction filteringAction or {@code null} for none
65+
*/
66+
public UrlFilter setFilteringAction(java.lang.String filteringAction) {
67+
this.filteringAction = filteringAction;
68+
return this;
69+
}
70+
71+
/**
72+
* Required. The priority of this filter within the URL Filtering Profile. Lower integers indicate
73+
* higher priorities. The priority of a filter must be unique within a URL Filtering Profile.
74+
* @return value or {@code null} for none
75+
*/
76+
public java.lang.Integer getPriority() {
77+
return priority;
78+
}
79+
80+
/**
81+
* Required. The priority of this filter within the URL Filtering Profile. Lower integers indicate
82+
* higher priorities. The priority of a filter must be unique within a URL Filtering Profile.
83+
* @param priority priority or {@code null} for none
84+
*/
85+
public UrlFilter setPriority(java.lang.Integer priority) {
86+
this.priority = priority;
87+
return this;
88+
}
89+
90+
/**
91+
* Required. The list of strings that a URL must match with for this filter to be applied.
92+
* @return value or {@code null} for none
93+
*/
94+
public java.util.List<java.lang.String> getUrls() {
95+
return urls;
96+
}
97+
98+
/**
99+
* Required. The list of strings that a URL must match with for this filter to be applied.
100+
* @param urls urls or {@code null} for none
101+
*/
102+
public UrlFilter setUrls(java.util.List<java.lang.String> urls) {
103+
this.urls = urls;
104+
return this;
105+
}
106+
107+
@Override
108+
public UrlFilter set(String fieldName, Object value) {
109+
return (UrlFilter) super.set(fieldName, value);
110+
}
111+
112+
@Override
113+
public UrlFilter clone() {
114+
return (UrlFilter) super.clone();
115+
}
116+
117+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.networksecurity.v1beta1.model;
18+
19+
/**
20+
* UrlFilteringProfile defines filters based on URL.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Network Security API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class UrlFilteringProfile extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. The list of filtering configs in which each config defines an action to take for some
34+
* URL match.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.List<UrlFilter> urlFilters;
39+
40+
static {
41+
// hack to force ProGuard to consider UrlFilter used, since otherwise it would be stripped out
42+
// see https://github.com/google/google-api-java-client/issues/543
43+
com.google.api.client.util.Data.nullOf(UrlFilter.class);
44+
}
45+
46+
/**
47+
* Optional. The list of filtering configs in which each config defines an action to take for some
48+
* URL match.
49+
* @return value or {@code null} for none
50+
*/
51+
public java.util.List<UrlFilter> getUrlFilters() {
52+
return urlFilters;
53+
}
54+
55+
/**
56+
* Optional. The list of filtering configs in which each config defines an action to take for some
57+
* URL match.
58+
* @param urlFilters urlFilters or {@code null} for none
59+
*/
60+
public UrlFilteringProfile setUrlFilters(java.util.List<UrlFilter> urlFilters) {
61+
this.urlFilters = urlFilters;
62+
return this;
63+
}
64+
65+
@Override
66+
public UrlFilteringProfile set(String fieldName, Object value) {
67+
return (UrlFilteringProfile) super.set(fieldName, value);
68+
}
69+
70+
@Override
71+
public UrlFilteringProfile clone() {
72+
return (UrlFilteringProfile) super.clone();
73+
}
74+
75+
}

clients/google-api-services-networksecurity/v1beta1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-networksecurity</artifactId>
11-
<version>v1beta1-rev20250822-2.0.0</version>
12-
<name>Network Security API v1beta1-rev20250822-2.0.0</name>
11+
<version>v1beta1-rev20250903-2.0.0</version>
12+
<name>Network Security API v1beta1-rev20250903-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-networksecurity/v1beta1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-networksecurity</artifactId>
25-
<version>v1beta1-rev20250822-2.0.0</version>
25+
<version>v1beta1-rev20250903-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-networksecurity:v1beta1-rev20250822-2.0.0'
38+
implementation 'com.google.apis:google-api-services-networksecurity:v1beta1-rev20250903-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)