Skip to content

Commit d0e57ae

Browse files
1 parent 1818e14 commit d0e57ae

File tree

6 files changed

+319
-6
lines changed

6 files changed

+319
-6
lines changed

clients/google-api-services-meet/v2/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-meet</artifactId>
25-
<version>v2-rev20260315-2.0.0</version>
25+
<version>v2-rev20260329-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-meet:v2-rev20260315-2.0.0'
38+
implementation 'com.google.apis:google-api-services-meet:v2-rev20260329-2.0.0'
3939
}
4040
```
4141

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
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.meet.v2.model;
18+
19+
/**
20+
* Details how to join the conference via a SIP gateway.
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 Google Meet 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 GatewaySipAccess extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Permanent numeric code for manual entry on specially configured devices.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String sipAccessCode;
38+
39+
/**
40+
* The SIP URI the conference can be reached through. The string is on one of the formats: "sip:@"
41+
* "sips:@" where currently is the 13-digit universal pin, and is a valid address to be resolved
42+
* using a DNS SRV lookup, or a dotted quad.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String uri;
47+
48+
/**
49+
* Permanent numeric code for manual entry on specially configured devices.
50+
* @return value or {@code null} for none
51+
*/
52+
public java.lang.String getSipAccessCode() {
53+
return sipAccessCode;
54+
}
55+
56+
/**
57+
* Permanent numeric code for manual entry on specially configured devices.
58+
* @param sipAccessCode sipAccessCode or {@code null} for none
59+
*/
60+
public GatewaySipAccess setSipAccessCode(java.lang.String sipAccessCode) {
61+
this.sipAccessCode = sipAccessCode;
62+
return this;
63+
}
64+
65+
/**
66+
* The SIP URI the conference can be reached through. The string is on one of the formats: "sip:@"
67+
* "sips:@" where currently is the 13-digit universal pin, and is a valid address to be resolved
68+
* using a DNS SRV lookup, or a dotted quad.
69+
* @return value or {@code null} for none
70+
*/
71+
public java.lang.String getUri() {
72+
return uri;
73+
}
74+
75+
/**
76+
* The SIP URI the conference can be reached through. The string is on one of the formats: "sip:@"
77+
* "sips:@" where currently is the 13-digit universal pin, and is a valid address to be resolved
78+
* using a DNS SRV lookup, or a dotted quad.
79+
* @param uri uri or {@code null} for none
80+
*/
81+
public GatewaySipAccess setUri(java.lang.String uri) {
82+
this.uri = uri;
83+
return this;
84+
}
85+
86+
@Override
87+
public GatewaySipAccess set(String fieldName, Object value) {
88+
return (GatewaySipAccess) super.set(fieldName, value);
89+
}
90+
91+
@Override
92+
public GatewaySipAccess clone() {
93+
return (GatewaySipAccess) super.clone();
94+
}
95+
96+
}
Lines changed: 154 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,154 @@
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.meet.v2.model;
18+
19+
/**
20+
* Phone access contains information required to dial into a conference using a regional phone
21+
* number and a PIN that is specific to that phone number.
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 Google Meet 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 PhoneAccess extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The BCP 47/LDML language code for the language associated with this phone access. To be parsed
35+
* by the i18n LanguageCode utility. Examples: "es-419" for Latin American Spanish, "fr-CA" for
36+
* Canadian French.
37+
* The value may be {@code null}.
38+
*/
39+
@com.google.api.client.util.Key
40+
private java.lang.String languageCode;
41+
42+
/**
43+
* The phone number to dial for this meeting space in E.164 format. Full phone number with a
44+
* leading '+' character.
45+
* The value may be {@code null}.
46+
*/
47+
@com.google.api.client.util.Key
48+
private java.lang.String phoneNumber;
49+
50+
/**
51+
* The PIN that users must enter after dialing the given number. The PIN consists of only decimal
52+
* digits and the length may vary.
53+
* The value may be {@code null}.
54+
*/
55+
@com.google.api.client.util.Key
56+
private java.lang.String pin;
57+
58+
/**
59+
* The CLDR/ISO 3166 region code for the country associated with this phone access. To be parsed
60+
* by the i18n RegionCode utility. Example: "SE" for Sweden.
61+
* The value may be {@code null}.
62+
*/
63+
@com.google.api.client.util.Key
64+
private java.lang.String regionCode;
65+
66+
/**
67+
* The BCP 47/LDML language code for the language associated with this phone access. To be parsed
68+
* by the i18n LanguageCode utility. Examples: "es-419" for Latin American Spanish, "fr-CA" for
69+
* Canadian French.
70+
* @return value or {@code null} for none
71+
*/
72+
public java.lang.String getLanguageCode() {
73+
return languageCode;
74+
}
75+
76+
/**
77+
* The BCP 47/LDML language code for the language associated with this phone access. To be parsed
78+
* by the i18n LanguageCode utility. Examples: "es-419" for Latin American Spanish, "fr-CA" for
79+
* Canadian French.
80+
* @param languageCode languageCode or {@code null} for none
81+
*/
82+
public PhoneAccess setLanguageCode(java.lang.String languageCode) {
83+
this.languageCode = languageCode;
84+
return this;
85+
}
86+
87+
/**
88+
* The phone number to dial for this meeting space in E.164 format. Full phone number with a
89+
* leading '+' character.
90+
* @return value or {@code null} for none
91+
*/
92+
public java.lang.String getPhoneNumber() {
93+
return phoneNumber;
94+
}
95+
96+
/**
97+
* The phone number to dial for this meeting space in E.164 format. Full phone number with a
98+
* leading '+' character.
99+
* @param phoneNumber phoneNumber or {@code null} for none
100+
*/
101+
public PhoneAccess setPhoneNumber(java.lang.String phoneNumber) {
102+
this.phoneNumber = phoneNumber;
103+
return this;
104+
}
105+
106+
/**
107+
* The PIN that users must enter after dialing the given number. The PIN consists of only decimal
108+
* digits and the length may vary.
109+
* @return value or {@code null} for none
110+
*/
111+
public java.lang.String getPin() {
112+
return pin;
113+
}
114+
115+
/**
116+
* The PIN that users must enter after dialing the given number. The PIN consists of only decimal
117+
* digits and the length may vary.
118+
* @param pin pin or {@code null} for none
119+
*/
120+
public PhoneAccess setPin(java.lang.String pin) {
121+
this.pin = pin;
122+
return this;
123+
}
124+
125+
/**
126+
* The CLDR/ISO 3166 region code for the country associated with this phone access. To be parsed
127+
* by the i18n RegionCode utility. Example: "SE" for Sweden.
128+
* @return value or {@code null} for none
129+
*/
130+
public java.lang.String getRegionCode() {
131+
return regionCode;
132+
}
133+
134+
/**
135+
* The CLDR/ISO 3166 region code for the country associated with this phone access. To be parsed
136+
* by the i18n RegionCode utility. Example: "SE" for Sweden.
137+
* @param regionCode regionCode or {@code null} for none
138+
*/
139+
public PhoneAccess setRegionCode(java.lang.String regionCode) {
140+
this.regionCode = regionCode;
141+
return this;
142+
}
143+
144+
@Override
145+
public PhoneAccess set(String fieldName, Object value) {
146+
return (PhoneAccess) super.set(fieldName, value);
147+
}
148+
149+
@Override
150+
public PhoneAccess clone() {
151+
return (PhoneAccess) super.clone();
152+
}
153+
154+
}

clients/google-api-services-meet/v2/2.0.0/com/google/api/services/meet/v2/model/Space.java

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,20 @@ public final class Space extends com.google.api.client.json.GenericJson {
4444
@com.google.api.client.util.Key
4545
private SpaceConfig config;
4646

47+
/**
48+
* Output only. The SIP based access methods that can be used to join the conference. Can be
49+
* empty.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.util.List<GatewaySipAccess> gatewaySipAccess;
54+
55+
static {
56+
// hack to force ProGuard to consider GatewaySipAccess used, since otherwise it would be stripped out
57+
// see https://github.com/google/google-api-java-client/issues/543
58+
com.google.api.client.util.Data.nullOf(GatewaySipAccess.class);
59+
}
60+
4761
/**
4862
* Output only. Type friendly unique string used to join the meeting. Format:
4963
* `[a-z]+-[a-z]+-[a-z]+`. For example, `abc-mnop-xyz`. The maximum length is 128 characters. Can
@@ -72,6 +86,19 @@ public final class Space extends com.google.api.client.json.GenericJson {
7286
@com.google.api.client.util.Key
7387
private java.lang.String name;
7488

89+
/**
90+
* Output only. All regional phone access methods for this meeting space. Can be empty.
91+
* The value may be {@code null}.
92+
*/
93+
@com.google.api.client.util.Key
94+
private java.util.List<PhoneAccess> phoneAccess;
95+
96+
static {
97+
// hack to force ProGuard to consider PhoneAccess used, since otherwise it would be stripped out
98+
// see https://github.com/google/google-api-java-client/issues/543
99+
com.google.api.client.util.Data.nullOf(PhoneAccess.class);
100+
}
101+
75102
/**
76103
* Active conference, if it exists.
77104
* @return value or {@code null} for none
@@ -106,6 +133,25 @@ public Space setConfig(SpaceConfig config) {
106133
return this;
107134
}
108135

136+
/**
137+
* Output only. The SIP based access methods that can be used to join the conference. Can be
138+
* empty.
139+
* @return value or {@code null} for none
140+
*/
141+
public java.util.List<GatewaySipAccess> getGatewaySipAccess() {
142+
return gatewaySipAccess;
143+
}
144+
145+
/**
146+
* Output only. The SIP based access methods that can be used to join the conference. Can be
147+
* empty.
148+
* @param gatewaySipAccess gatewaySipAccess or {@code null} for none
149+
*/
150+
public Space setGatewaySipAccess(java.util.List<GatewaySipAccess> gatewaySipAccess) {
151+
this.gatewaySipAccess = gatewaySipAccess;
152+
return this;
153+
}
154+
109155
/**
110156
* Output only. Type friendly unique string used to join the meeting. Format:
111157
* `[a-z]+-[a-z]+-[a-z]+`. For example, `abc-mnop-xyz`. The maximum length is 128 characters. Can
@@ -171,6 +217,23 @@ public Space setName(java.lang.String name) {
171217
return this;
172218
}
173219

220+
/**
221+
* Output only. All regional phone access methods for this meeting space. Can be empty.
222+
* @return value or {@code null} for none
223+
*/
224+
public java.util.List<PhoneAccess> getPhoneAccess() {
225+
return phoneAccess;
226+
}
227+
228+
/**
229+
* Output only. All regional phone access methods for this meeting space. Can be empty.
230+
* @param phoneAccess phoneAccess or {@code null} for none
231+
*/
232+
public Space setPhoneAccess(java.util.List<PhoneAccess> phoneAccess) {
233+
this.phoneAccess = phoneAccess;
234+
return this;
235+
}
236+
174237
@Override
175238
public Space set(String fieldName, Object value) {
176239
return (Space) super.set(fieldName, value);

clients/google-api-services-meet/v2/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-meet</artifactId>
11-
<version>v2-rev20260315-2.0.0</version>
12-
<name>Google Meet API v2-rev20260315-2.0.0</name>
11+
<version>v2-rev20260329-2.0.0</version>
12+
<name>Google Meet API v2-rev20260329-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-meet/v2/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-meet</artifactId>
25-
<version>v2-rev20260315-2.0.0</version>
25+
<version>v2-rev20260329-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-meet:v2-rev20260315-2.0.0'
38+
implementation 'com.google.apis:google-api-services-meet:v2-rev20260329-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)