Skip to content

Commit 79823c0

Browse files
1 parent 14f8e80 commit 79823c0

File tree

5 files changed

+154
-6
lines changed

5 files changed

+154
-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-rev20250101-2.0.0</version>
25+
<version>v1beta1-rev20250118-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-rev20250101-2.0.0'
38+
implementation 'com.google.apis:google-api-services-networksecurity:v1beta1-rev20250118-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@
2929
@SuppressWarnings("javadoc")
3030
public final class MirroringEndpointGroup extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Output only. List of Mirroring Endpoint Group Associations that are associated to this endpoint
34+
* group.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.List<MirroringEndpointGroupAssociationDetails> associations;
39+
3240
/**
3341
* Output only. [Output only] Create time stamp
3442
* The value may be {@code null}.
@@ -79,6 +87,25 @@ public final class MirroringEndpointGroup extends com.google.api.client.json.Gen
7987
@com.google.api.client.util.Key
8088
private String updateTime;
8189

90+
/**
91+
* Output only. List of Mirroring Endpoint Group Associations that are associated to this endpoint
92+
* group.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.util.List<MirroringEndpointGroupAssociationDetails> getAssociations() {
96+
return associations;
97+
}
98+
99+
/**
100+
* Output only. List of Mirroring Endpoint Group Associations that are associated to this endpoint
101+
* group.
102+
* @param associations associations or {@code null} for none
103+
*/
104+
public MirroringEndpointGroup setAssociations(java.util.List<MirroringEndpointGroupAssociationDetails> associations) {
105+
this.associations = associations;
106+
return this;
107+
}
108+
82109
/**
83110
* Output only. [Output only] Create time stamp
84111
* @return value or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
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+
* This is a subset of the MirroringEndpointGroupAssociation message, containing fields to be used
21+
* by the consumer.
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the Network Security API. For a detailed explanation see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class MirroringEndpointGroupAssociationDetails extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Output only. The resource name of the MirroringEndpointGroupAssociation. Format: projects/{proj
35+
* ect}/locations/{location}/mirroringEndpointGroupAssociations/{mirroringEndpointGroupAssociation
36+
* }
37+
* The value may be {@code null}.
38+
*/
39+
@com.google.api.client.util.Key
40+
private java.lang.String name;
41+
42+
/**
43+
* Output only. The VPC network associated. Format: projects/{project}/global/networks/{name}.
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private java.lang.String network;
48+
49+
/**
50+
* Output only. Current state of the association.
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private java.lang.String state;
55+
56+
/**
57+
* Output only. The resource name of the MirroringEndpointGroupAssociation. Format: projects/{proj
58+
* ect}/locations/{location}/mirroringEndpointGroupAssociations/{mirroringEndpointGroupAssociation
59+
* }
60+
* @return value or {@code null} for none
61+
*/
62+
public java.lang.String getName() {
63+
return name;
64+
}
65+
66+
/**
67+
* Output only. The resource name of the MirroringEndpointGroupAssociation. Format: projects/{proj
68+
* ect}/locations/{location}/mirroringEndpointGroupAssociations/{mirroringEndpointGroupAssociation
69+
* }
70+
* @param name name or {@code null} for none
71+
*/
72+
public MirroringEndpointGroupAssociationDetails setName(java.lang.String name) {
73+
this.name = name;
74+
return this;
75+
}
76+
77+
/**
78+
* Output only. The VPC network associated. Format: projects/{project}/global/networks/{name}.
79+
* @return value or {@code null} for none
80+
*/
81+
public java.lang.String getNetwork() {
82+
return network;
83+
}
84+
85+
/**
86+
* Output only. The VPC network associated. Format: projects/{project}/global/networks/{name}.
87+
* @param network network or {@code null} for none
88+
*/
89+
public MirroringEndpointGroupAssociationDetails setNetwork(java.lang.String network) {
90+
this.network = network;
91+
return this;
92+
}
93+
94+
/**
95+
* Output only. Current state of the association.
96+
* @return value or {@code null} for none
97+
*/
98+
public java.lang.String getState() {
99+
return state;
100+
}
101+
102+
/**
103+
* Output only. Current state of the association.
104+
* @param state state or {@code null} for none
105+
*/
106+
public MirroringEndpointGroupAssociationDetails setState(java.lang.String state) {
107+
this.state = state;
108+
return this;
109+
}
110+
111+
@Override
112+
public MirroringEndpointGroupAssociationDetails set(String fieldName, Object value) {
113+
return (MirroringEndpointGroupAssociationDetails) super.set(fieldName, value);
114+
}
115+
116+
@Override
117+
public MirroringEndpointGroupAssociationDetails clone() {
118+
return (MirroringEndpointGroupAssociationDetails) super.clone();
119+
}
120+
121+
}

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-rev20250101-2.0.0</version>
12-
<name>Network Security API v1beta1-rev20250101-2.0.0</name>
11+
<version>v1beta1-rev20250118-2.0.0</version>
12+
<name>Network Security API v1beta1-rev20250118-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-rev20250101-2.0.0</version>
25+
<version>v1beta1-rev20250118-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-rev20250101-2.0.0'
38+
implementation 'com.google.apis:google-api-services-networksecurity:v1beta1-rev20250118-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)