1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
// Copyright 2026 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Code generated by sidekick. DO NOT EDIT.
#![allow(rustdoc::bare_urls)]
#![allow(rustdoc::broken_intra_doc_links)]
#![allow(rustdoc::invalid_html_tags)]
#![allow(rustdoc::redundant_explicit_links)]
/// Implements a client for the Google Chat API.
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_cloud_gax::paginator::ItemPaginator as _;
/// async fn sample(
/// space_id: &str,
/// ) -> anyhow::Result<()> {
/// let client = ChatService::builder().build().await?;
/// let mut list = client.list_messages()
/// .set_parent(format!("spaces/{space_id}"))
/// .by_item();
/// while let Some(item) = list.next().await.transpose()? {
/// println!("{:?}", item);
/// }
/// Ok(())
/// }
/// ```
///
/// # Service Description
///
/// Enables developers to build Chat apps and
/// integrations on Google Chat Platform.
///
/// # Configuration
///
/// To configure `ChatService` use the `with_*` methods in the type returned
/// by [builder()][ChatService::builder]. The default configuration should
/// work for most applications. Common configuration changes include
///
/// * [with_endpoint()]: by default this client uses the global default endpoint
/// (`https://chat.googleapis.com`). Applications using regional
/// endpoints or running in restricted networks (e.g. a network configured
/// with [Private Google Access with VPC Service Controls]) may want to
/// override this default.
/// * [with_credentials()]: by default this client uses
/// [Application Default Credentials]. Applications using custom
/// authentication may need to override this default.
///
/// [with_endpoint()]: super::builder::chat_service::ClientBuilder::with_endpoint
/// [with_credentials()]: super::builder::chat_service::ClientBuilder::with_credentials
/// [Private Google Access with VPC Service Controls]: https://cloud.google.com/vpc-service-controls/docs/private-connectivity
/// [Application Default Credentials]: https://cloud.google.com/docs/authentication#adc
///
/// # Pooling and Cloning
///
/// `ChatService` holds a connection pool internally, it is advised to
/// create one and reuse it. You do not need to wrap `ChatService` in
/// an [Rc](std::rc::Rc) or [Arc](std::sync::Arc) to reuse it, because it
/// already uses an `Arc` internally.
#[derive(Clone, Debug)]
pub struct ChatService {
inner: std::sync::Arc<dyn super::stub::dynamic::ChatService>,
}
impl ChatService {
/// Returns a builder for [ChatService].
///
/// ```
/// # async fn sample() -> google_cloud_gax::client_builder::Result<()> {
/// # use google_chat_v1::client::ChatService;
/// let client = ChatService::builder().build().await?;
/// # Ok(()) }
/// ```
pub fn builder() -> super::builder::chat_service::ClientBuilder {
crate::new_client_builder(super::builder::chat_service::client::Factory)
}
/// Creates a new client from the provided stub.
///
/// The most common case for calling this function is in tests mocking the
/// client's behavior.
pub fn from_stub<T>(stub: impl Into<std::sync::Arc<T>>) -> Self
where
T: super::stub::ChatService + 'static,
{
Self { inner: stub.into() }
}
pub(crate) async fn new(
config: gaxi::options::ClientConfig,
) -> crate::ClientBuilderResult<Self> {
let inner = Self::build_inner(config).await?;
Ok(Self { inner })
}
async fn build_inner(
conf: gaxi::options::ClientConfig,
) -> crate::ClientBuilderResult<std::sync::Arc<dyn super::stub::dynamic::ChatService>> {
if gaxi::options::tracing_enabled(&conf) {
return Ok(std::sync::Arc::new(Self::build_with_tracing(conf).await?));
}
Ok(std::sync::Arc::new(Self::build_transport(conf).await?))
}
async fn build_transport(
conf: gaxi::options::ClientConfig,
) -> crate::ClientBuilderResult<impl super::stub::ChatService> {
super::transport::ChatService::new(conf).await
}
async fn build_with_tracing(
conf: gaxi::options::ClientConfig,
) -> crate::ClientBuilderResult<impl super::stub::ChatService> {
Self::build_transport(conf)
.await
.map(super::tracing::ChatService::new)
}
/// Creates a message in a Google Chat space. For an example, see [Send a
/// message](https://developers.google.com/workspace/chat/create-messages).
///
/// Supports the following types of
/// [authentication](https://developers.google.com/workspace/chat/authenticate-authorize):
///
/// - [App
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app)
/// with the authorization scope:
/// - `<https://www.googleapis.com/auth/chat.bot>`
/// - [User
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following authorization scopes:
/// - `<https://www.googleapis.com/auth/chat.messages.create>`
/// - `<https://www.googleapis.com/auth/chat.messages>`
/// - `<https://www.googleapis.com/auth/chat.import>` (import mode spaces
/// only)
///
/// Chat attributes the message sender differently depending on the type of
/// authentication that you use in your request.
///
/// The following image shows how Chat attributes a message when you use app
/// authentication. Chat displays the Chat app as the message
/// sender. The content of the message can contain text (`text`), cards
/// (`cardsV2`), and accessory widgets (`accessoryWidgets`).
///
/// 
///
/// The following image shows how Chat attributes a message when you use user
/// authentication. Chat displays the user as the message sender and attributes
/// the Chat app to the message by displaying its name. The content of message
/// can only contain text (`text`).
///
/// 
///
/// The maximum message size, including the message contents, is 32,000 bytes.
///
/// For
/// [webhook](https://developers.google.com/workspace/chat/quickstart/webhooks)
/// requests, the response doesn't contain the full message. The response only
/// populates the `name` and `thread.name` fields in addition to the
/// information that was in the request.
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::model::Message;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, space_id: &str
/// ) -> Result<()> {
/// let response = client.create_message()
/// .set_parent(format!("spaces/{space_id}"))
/// .set_message_id("message_id_value")
/// .set_message(
/// Message::new()/* set fields */
/// )
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn create_message(&self) -> super::builder::chat_service::CreateMessage {
super::builder::chat_service::CreateMessage::new(self.inner.clone())
}
/// Lists messages in a space that the caller is a member of, including
/// messages from blocked members and spaces. System messages, like those
/// announcing new space members, aren't included. If you list messages from a
/// space with no messages, the response is an empty object. When using a
/// REST/HTTP interface, the response contains an empty JSON object, `{}`.
/// For an example, see
/// [List
/// messages](https://developers.google.com/workspace/chat/api/guides/v1/messages/list).
///
/// Supports the following types of
/// [authentication](https://developers.google.com/workspace/chat/authenticate-authorize):
///
/// - [App
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app)
/// with [administrator
/// approval](https://support.google.com/a?p=chat-app-auth)
/// with the authorization scope:
///
/// - `<https://www.googleapis.com/auth/chat.app.messages.readonly>`. When
/// using this authentication scope, this method only returns public
/// messages in a space. It doesn't include private messages.
/// - [User
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following authorization scopes:
///
/// - `<https://www.googleapis.com/auth/chat.messages.readonly>`
/// - `<https://www.googleapis.com/auth/chat.messages>`
/// - `<https://www.googleapis.com/auth/chat.import>` (import mode spaces
/// only)
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_cloud_gax::paginator::ItemPaginator as _;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, space_id: &str
/// ) -> Result<()> {
/// let mut list = client.list_messages()
/// .set_parent(format!("spaces/{space_id}"))
/// .by_item();
/// while let Some(item) = list.next().await.transpose()? {
/// println!("{:?}", item);
/// }
/// Ok(())
/// }
/// ```
pub fn list_messages(&self) -> super::builder::chat_service::ListMessages {
super::builder::chat_service::ListMessages::new(self.inner.clone())
}
/// Lists memberships in a space. For an example, see [List users and Google
/// Chat apps in a
/// space](https://developers.google.com/workspace/chat/list-members). Listing
/// memberships with [app
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app)
/// lists memberships in spaces that the Chat app has
/// access to, but excludes Chat app memberships,
/// including its own. Listing memberships with
/// [User
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// lists memberships in spaces that the authenticated user has access to.
///
/// Supports the following types of
/// [authentication](https://developers.google.com/workspace/chat/authenticate-authorize):
///
/// - [App
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app)
/// with one of the following authorization scopes:
///
/// - `<https://www.googleapis.com/auth/chat.bot>`
/// - `<https://www.googleapis.com/auth/chat.app.memberships>` (requires
/// [administrator approval](https://support.google.com/a?p=chat-app-auth))
/// - [User
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following authorization scopes:
///
/// - `<https://www.googleapis.com/auth/chat.memberships.readonly>`
/// - `<https://www.googleapis.com/auth/chat.memberships>`
/// - `<https://www.googleapis.com/auth/chat.import>` (import mode spaces
/// only)
/// - User authentication grants administrator privileges when an
/// administrator account authenticates, `use_admin_access` is `true`, and
/// one of the following authorization scopes is used:
/// - `<https://www.googleapis.com/auth/chat.admin.memberships.readonly>`
/// - `<https://www.googleapis.com/auth/chat.admin.memberships>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_cloud_gax::paginator::ItemPaginator as _;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, space_id: &str
/// ) -> Result<()> {
/// let mut list = client.list_memberships()
/// .set_parent(format!("spaces/{space_id}"))
/// .by_item();
/// while let Some(item) = list.next().await.transpose()? {
/// println!("{:?}", item);
/// }
/// Ok(())
/// }
/// ```
pub fn list_memberships(&self) -> super::builder::chat_service::ListMemberships {
super::builder::chat_service::ListMemberships::new(self.inner.clone())
}
/// Returns details about a membership. For an example, see
/// [Get details about a user's or Google Chat app's
/// membership](https://developers.google.com/workspace/chat/get-members).
///
/// Supports the following types of
/// [authentication](https://developers.google.com/workspace/chat/authenticate-authorize):
///
/// - [App
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app)
/// with one of the following authorization scopes:
///
/// - `<https://www.googleapis.com/auth/chat.bot>`
/// - `<https://www.googleapis.com/auth/chat.app.memberships>` (requires
/// [administrator approval](https://support.google.com/a?p=chat-app-auth))
/// - [User
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following authorization scopes:
///
/// - `<https://www.googleapis.com/auth/chat.memberships.readonly>`
/// - `<https://www.googleapis.com/auth/chat.memberships>`
/// - User authentication grants administrator privileges when an
/// administrator account authenticates, `use_admin_access` is `true`, and
/// one of the following authorization scopes is used:
/// - `<https://www.googleapis.com/auth/chat.admin.memberships.readonly>`
/// - `<https://www.googleapis.com/auth/chat.admin.memberships>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, space_id: &str, member_id: &str
/// ) -> Result<()> {
/// let response = client.get_membership()
/// .set_name(format!("spaces/{space_id}/members/{member_id}"))
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn get_membership(&self) -> super::builder::chat_service::GetMembership {
super::builder::chat_service::GetMembership::new(self.inner.clone())
}
/// Returns details about a message.
/// For an example, see [Get details about a
/// message](https://developers.google.com/workspace/chat/get-messages).
///
/// Supports the following types of
/// [authentication](https://developers.google.com/workspace/chat/authenticate-authorize):
///
/// - [App
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app)
/// with one of the following authorization scopes:
///
/// - `<https://www.googleapis.com/auth/chat.bot>`: When using this
/// authorization scope, this method returns details about a message the
/// Chat app has access to, like direct messages and [slash
/// commands](https://developers.google.com/workspace/chat/slash-commands)
/// that invoke the Chat app.
/// - `<https://www.googleapis.com/auth/chat.app.messages.readonly>`
/// with [administrator
/// approval](https://support.google.com/a?p=chat-app-auth).
/// When using this authentication scope,
/// this method returns details about a public message in a space.
/// - [User
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following authorization scopes:
///
/// - `<https://www.googleapis.com/auth/chat.messages.readonly>`
/// - `<https://www.googleapis.com/auth/chat.messages>`
///
/// Note: Might return a message from a blocked member or space.
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, space_id: &str, message_id: &str
/// ) -> Result<()> {
/// let response = client.get_message()
/// .set_name(format!("spaces/{space_id}/messages/{message_id}"))
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn get_message(&self) -> super::builder::chat_service::GetMessage {
super::builder::chat_service::GetMessage::new(self.inner.clone())
}
/// Updates a message. There's a difference between the `patch` and `update`
/// methods. The `patch`
/// method uses a `patch` request while the `update` method uses a `put`
/// request. We recommend using the `patch` method. For an example, see
/// [Update a
/// message](https://developers.google.com/workspace/chat/update-messages).
///
/// Supports the following types of
/// [authentication](https://developers.google.com/workspace/chat/authenticate-authorize):
///
/// - [App
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app)
/// with the authorization scope:
///
/// - `<https://www.googleapis.com/auth/chat.bot>`
/// - [User
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following authorization scopes:
///
/// - `<https://www.googleapis.com/auth/chat.messages>`
/// - `<https://www.googleapis.com/auth/chat.import>` (import mode spaces
/// only)
///
/// When using app authentication, requests can only update messages
/// created by the calling Chat app.
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// # extern crate wkt as google_cloud_wkt;
/// use google_cloud_wkt::FieldMask;
/// use google_chat_v1::model::Message;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, space_id: &str, message_id: &str
/// ) -> Result<()> {
/// let response = client.update_message()
/// .set_message(
/// Message::new().set_name(format!("spaces/{space_id}/messages/{message_id}"))/* set fields */
/// )
/// .set_update_mask(FieldMask::default().set_paths(["updated.field.path1", "updated.field.path2"]))
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn update_message(&self) -> super::builder::chat_service::UpdateMessage {
super::builder::chat_service::UpdateMessage::new(self.inner.clone())
}
/// Deletes a message.
/// For an example, see [Delete a
/// message](https://developers.google.com/workspace/chat/delete-messages).
///
/// Supports the following types of
/// [authentication](https://developers.google.com/workspace/chat/authenticate-authorize):
///
/// - [App
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app)
/// with the authorization scope:
///
/// - `<https://www.googleapis.com/auth/chat.bot>`
/// - [User
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following authorization scopes:
///
/// - `<https://www.googleapis.com/auth/chat.messages>`
/// - `<https://www.googleapis.com/auth/chat.import>` (import mode spaces
/// only)
///
/// When using app authentication, requests can only delete messages
/// created by the calling Chat app.
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, space_id: &str, message_id: &str
/// ) -> Result<()> {
/// client.delete_message()
/// .set_name(format!("spaces/{space_id}/messages/{message_id}"))
/// .send().await?;
/// Ok(())
/// }
/// ```
pub fn delete_message(&self) -> super::builder::chat_service::DeleteMessage {
super::builder::chat_service::DeleteMessage::new(self.inner.clone())
}
/// Searches for messages in Google Chat that the calling user has access to.
/// Returns a list of messages matching the search criteria.
///
/// To search across all spaces the user has access to, set `parent` to
/// `spaces/-`. Using any other value for `parent` results in an
/// `INVALID_ARGUMENT` error. The returned messages have their `name` field
/// populated with the full resource name, which includes the specific `space`
/// in which the message resides.
///
/// This API doesn't return all message types. The types of messages listed
/// below aren't included in the response. Use
/// [ListMessages][google.chat.v1.ChatService.ListMessages] to list all
/// messages.
///
/// - Private Messages that are visible to the authenticated user.
/// - Messages posted by Chat apps in spaces or group chats.
/// - Messages in a Chat app DM.
/// - Messages from blocked users.
/// - Messages in spaces that the caller has muted.
///
/// Requires [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following [authorization
/// scopes](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.messages.readonly>`
/// - `<https://www.googleapis.com/auth/chat.messages>`
///
/// [google.chat.v1.ChatService.ListMessages]: crate::client::ChatService::list_messages
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_cloud_gax::paginator::ItemPaginator as _;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService
/// ) -> Result<()> {
/// let mut list = client.search_messages()
/// /* set fields */
/// .by_item();
/// while let Some(item) = list.next().await.transpose()? {
/// println!("{:?}", item);
/// }
/// Ok(())
/// }
/// ```
pub fn search_messages(&self) -> super::builder::chat_service::SearchMessages {
super::builder::chat_service::SearchMessages::new(self.inner.clone())
}
/// Gets the metadata of a message attachment. The attachment data is fetched
/// using the [media
/// API](https://developers.google.com/workspace/chat/api/reference/rest/v1/media/download).
/// For an example, see
/// [Get metadata about a message
/// attachment](https://developers.google.com/workspace/chat/get-media-attachments).
///
/// Requires [app
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app)
/// with the [authorization
/// scope](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.bot>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, space_id: &str, message_id: &str, attachment_id: &str
/// ) -> Result<()> {
/// let response = client.get_attachment()
/// .set_name(format!("spaces/{space_id}/messages/{message_id}/attachments/{attachment_id}"))
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn get_attachment(&self) -> super::builder::chat_service::GetAttachment {
super::builder::chat_service::GetAttachment::new(self.inner.clone())
}
/// Uploads an attachment. For an example, see
/// [Upload media as a file
/// attachment](https://developers.google.com/workspace/chat/upload-media-attachments).
///
/// Requires user
/// [authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following [authorization
/// scopes](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.messages.create>`
/// - `<https://www.googleapis.com/auth/chat.messages>`
/// - `<https://www.googleapis.com/auth/chat.import>` (import mode spaces only)
///
/// You can upload attachments up to 200 MB. Certain file types aren't
/// supported. For details, see [File types blocked by Google
/// Chat](https://support.google.com/chat/answer/7651457?&co=GENIE.Platform%3DDesktop#File%20types%20blocked%20in%20Google%20Chat).
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService
/// ) -> Result<()> {
/// let response = client.upload_attachment()
/// /* set fields */
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn upload_attachment(&self) -> super::builder::chat_service::UploadAttachment {
super::builder::chat_service::UploadAttachment::new(self.inner.clone())
}
/// Lists spaces the caller is a member of. Group chats and DMs aren't listed
/// until the first message is sent. For an example, see
/// [List
/// spaces](https://developers.google.com/workspace/chat/list-spaces).
///
/// Supports the following types of
/// [authentication](https://developers.google.com/workspace/chat/authenticate-authorize):
///
/// - [App
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app)
/// with the authorization scope:
///
/// - `<https://www.googleapis.com/auth/chat.bot>`
/// - [User
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following authorization scopes:
///
/// - `<https://www.googleapis.com/auth/chat.spaces.readonly>`
/// - `<https://www.googleapis.com/auth/chat.spaces>`
///
/// To list all named spaces by Google Workspace organization, use the
/// [`spaces.search()`](https://developers.google.com/workspace/chat/api/reference/rest/v1/spaces/search)
/// method using Workspace administrator privileges instead.
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_cloud_gax::paginator::ItemPaginator as _;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService
/// ) -> Result<()> {
/// let mut list = client.list_spaces()
/// /* set fields */
/// .by_item();
/// while let Some(item) = list.next().await.transpose()? {
/// println!("{:?}", item);
/// }
/// Ok(())
/// }
/// ```
pub fn list_spaces(&self) -> super::builder::chat_service::ListSpaces {
super::builder::chat_service::ListSpaces::new(self.inner.clone())
}
/// Returns a list of spaces in a Google Workspace organization. For an
/// example, see [Search for and manage
/// spaces](https://developers.google.com/workspace/chat/search-manage-admin).
///
/// When `use_admin_access` is set to `false`, the results are limited to
/// spaces where the calling user is a joined member. To search with
/// administrator privileges, set `use_admin_access` to `true`.
///
/// Supports the following types of
/// [authentication](https://developers.google.com/workspace/chat/authenticate-authorize):
///
/// - [User
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following authorization scopes:
///
/// - `<https://www.googleapis.com/auth/chat.spaces.readonly>`
/// - `<https://www.googleapis.com/auth/chat.spaces>`
/// - [User
/// authentication with administrator
/// privileges](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user#admin-privileges)
/// and one of the following [authorization
/// scopes](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.admin.spaces.readonly>`
/// - `<https://www.googleapis.com/auth/chat.admin.spaces>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_cloud_gax::paginator::ItemPaginator as _;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService
/// ) -> Result<()> {
/// let mut list = client.search_spaces()
/// /* set fields */
/// .by_item();
/// while let Some(item) = list.next().await.transpose()? {
/// println!("{:?}", item);
/// }
/// Ok(())
/// }
/// ```
pub fn search_spaces(&self) -> super::builder::chat_service::SearchSpaces {
super::builder::chat_service::SearchSpaces::new(self.inner.clone())
}
/// Returns details about a space. For an example, see
/// [Get details about a
/// space](https://developers.google.com/workspace/chat/get-spaces).
///
/// Supports the following types of
/// [authentication](https://developers.google.com/workspace/chat/authenticate-authorize):
///
/// - [App
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app)
/// with one of the following authorization scopes:
///
/// - `<https://www.googleapis.com/auth/chat.bot>`
/// - `<https://www.googleapis.com/auth/chat.app.spaces>` with [administrator
/// approval](https://support.google.com/a?p=chat-app-auth)
/// - [User
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following authorization scopes:
///
/// - `<https://www.googleapis.com/auth/chat.spaces.readonly>`
/// - `<https://www.googleapis.com/auth/chat.spaces>`
/// - User authentication grants administrator privileges when an
/// administrator account authenticates, `use_admin_access` is `true`, and
/// one of the following authorization scopes is used:
/// - `<https://www.googleapis.com/auth/chat.admin.spaces.readonly>`
/// - `<https://www.googleapis.com/auth/chat.admin.spaces>`
///
/// App authentication has the following limitations:
///
/// - `space.access_settings` is only populated when using the
/// `chat.app.spaces` scope.
/// - `space.predefind_permission_settings` and `space.permission_settings` are
/// only populated when using the `chat.app.spaces` scope, and only for
/// spaces the app created.
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, space_id: &str
/// ) -> Result<()> {
/// let response = client.get_space()
/// .set_name(format!("spaces/{space_id}"))
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn get_space(&self) -> super::builder::chat_service::GetSpace {
super::builder::chat_service::GetSpace::new(self.inner.clone())
}
/// Creates a space. Can be used to create a named space, or a
/// group chat in `Import mode`. For an example, see [Create a
/// space](https://developers.google.com/workspace/chat/create-spaces).
///
/// Supports the following types of
/// [authentication](https://developers.google.com/workspace/chat/authenticate-authorize):
///
/// - [App
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app)
/// with [administrator approval](https://support.google.com/a?p=chat-app-auth)
/// and one of the following authorization scopes:
///
/// - `<https://www.googleapis.com/auth/chat.app.spaces.create>`
/// - `<https://www.googleapis.com/auth/chat.app.spaces>`
/// - [User
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following authorization scopes:
///
/// - `<https://www.googleapis.com/auth/chat.spaces.create>`
/// - `<https://www.googleapis.com/auth/chat.spaces>`
/// - `<https://www.googleapis.com/auth/chat.import>` (import mode spaces
/// only)
///
/// When authenticating as an app, the `space.customer` field must be set in
/// the request.
///
/// When authenticating as an app, the Chat app is added as a member of the
/// space. However, unlike human authentication, the Chat app is not added as a
/// space manager. By default, the Chat app can be removed from the space by
/// all space members. To allow only space managers to remove the app from a
/// space, set `space.permission_settings.manage_apps` to `managers_allowed`.
///
/// Space membership upon creation depends on whether the space is created in
/// `Import mode`:
///
/// * **Import mode:** No members are created.
/// * **All other modes:** The calling user is added as a member. This is:
/// * The app itself when using app authentication.
/// * The human user when using user authentication.
///
/// If you receive the error message `ALREADY_EXISTS` when creating
/// a space, try a different `displayName`. An existing space within
/// the Google Workspace organization might already use this display name.
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService
/// ) -> Result<()> {
/// let response = client.create_space()
/// /* set fields */
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn create_space(&self) -> super::builder::chat_service::CreateSpace {
super::builder::chat_service::CreateSpace::new(self.inner.clone())
}
/// Creates a space and adds specified users to it. The calling user is
/// automatically added to the space, and shouldn't be specified as a
/// membership in the request. For an example, see
/// [Set up a space with initial
/// members](https://developers.google.com/workspace/chat/set-up-spaces).
///
/// To specify the human members to add, add memberships with the appropriate
/// `membership.member.name`. To add a human user, use `users/{user}`, where
/// `{user}` can be the email address for the user. For users in the same
/// Workspace organization `{user}` can also be the `id` for the person from
/// the People API, or the `id` for the user in the Directory API. For example,
/// if the People API Person profile ID for `user@example.com` is `123456789`,
/// you can add the user to the space by setting the `membership.member.name`
/// to `users/user@example.com` or `users/123456789`.
///
/// To specify the Google groups to add, add memberships with the
/// appropriate `membership.group_member.name`. To add or invite a Google
/// group, use `groups/{group}`, where `{group}` is the `id` for the group from
/// the Cloud Identity Groups API. For example, you can use [Cloud Identity
/// Groups lookup
/// API](https://cloud.google.com/identity/docs/reference/rest/v1/groups/lookup)
/// to retrieve the ID `123456789` for group email `group@example.com`, then
/// you can add the group to the space by setting the
/// `membership.group_member.name` to `groups/123456789`. Group email is not
/// supported, and Google groups can only be added as members in named spaces.
///
/// For a named space or group chat, if the caller blocks, or is blocked
/// by some members, or doesn't have permission to add some members, then
/// those members aren't added to the created space.
///
/// To create a direct message (DM) between the calling user and another human
/// user, specify exactly one membership to represent the human user. If
/// one user blocks the other, the request fails and the DM isn't created.
///
/// To create a DM between the calling user and the calling app, set
/// `Space.singleUserBotDm` to `true` and don't specify any memberships. You
/// can only use this method to set up a DM with the calling app. To add the
/// calling app as a member of a space or an existing DM between two human
/// users, see
/// [Invite or add a user or app to a
/// space](https://developers.google.com/workspace/chat/create-members).
///
/// If a DM already exists between two users, even when one user blocks the
/// other at the time a request is made, then the existing DM is returned.
///
/// Spaces with threaded replies aren't supported. If you receive the error
/// message `ALREADY_EXISTS` when setting up a space, try a different
/// `displayName`. An existing space within the Google Workspace organization
/// might already use this display name.
///
/// Requires [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following [authorization
/// scopes](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.spaces.create>`
/// - `<https://www.googleapis.com/auth/chat.spaces>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService
/// ) -> Result<()> {
/// let response = client.set_up_space()
/// /* set fields */
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn set_up_space(&self) -> super::builder::chat_service::SetUpSpace {
super::builder::chat_service::SetUpSpace::new(self.inner.clone())
}
/// Updates a space. For an example, see
/// [Update a
/// space](https://developers.google.com/workspace/chat/update-spaces).
///
/// If you're updating the `displayName` field and receive the error message
/// `ALREADY_EXISTS`, try a different display name.. An existing space within
/// the Google Workspace organization might already use this display name.
///
/// Supports the following types of
/// [authentication](https://developers.google.com/workspace/chat/authenticate-authorize):
///
/// - [App
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app)
/// with [administrator approval](https://support.google.com/a?p=chat-app-auth)
/// and one of the following authorization scopes:
///
/// - `<https://www.googleapis.com/auth/chat.app.spaces>`
/// - [User
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following authorization scopes:
///
/// - `<https://www.googleapis.com/auth/chat.spaces>`
/// - `<https://www.googleapis.com/auth/chat.import>` (import mode spaces
/// only)
/// - User authentication grants administrator privileges when an
/// administrator account authenticates, `use_admin_access` is `true`, and
/// the following authorization scopes is used:
/// - `<https://www.googleapis.com/auth/chat.admin.spaces>`
///
/// App authentication has the following limitations:
///
/// - To update either `space.predefined_permission_settings` or
/// `space.permission_settings`, the app must be the space creator.
/// - Updating the `space.access_settings.audience` is not supported for app
/// authentication.
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// # extern crate wkt as google_cloud_wkt;
/// use google_cloud_wkt::FieldMask;
/// use google_chat_v1::model::Space;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, space_id: &str
/// ) -> Result<()> {
/// let response = client.update_space()
/// .set_space(
/// Space::new().set_name(format!("spaces/{space_id}"))/* set fields */
/// )
/// .set_update_mask(FieldMask::default().set_paths(["updated.field.path1", "updated.field.path2"]))
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn update_space(&self) -> super::builder::chat_service::UpdateSpace {
super::builder::chat_service::UpdateSpace::new(self.inner.clone())
}
/// Deletes a named space. Always performs a cascading delete, which means
/// that the space's child resources—like messages posted in the space and
/// memberships in the space—are also deleted. For an example, see
/// [Delete a
/// space](https://developers.google.com/workspace/chat/delete-spaces).
///
/// Supports the following types of
/// [authentication](https://developers.google.com/workspace/chat/authenticate-authorize):
///
/// - [App
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app)
/// with [administrator
/// approval](https://support.google.com/a?p=chat-app-auth) and the
/// authorization scope:
///
/// - `<https://www.googleapis.com/auth/chat.app.delete>` (only in
/// spaces the app created)
/// - [User
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following authorization scopes:
///
/// - `<https://www.googleapis.com/auth/chat.delete>`
/// - `<https://www.googleapis.com/auth/chat.import>` (import mode spaces
/// only)
/// - User authentication grants administrator privileges when an
/// administrator account authenticates, `use_admin_access` is `true`, and
/// the following authorization scope is used:
/// - `<https://www.googleapis.com/auth/chat.admin.delete>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, space_id: &str
/// ) -> Result<()> {
/// client.delete_space()
/// .set_name(format!("spaces/{space_id}"))
/// .send().await?;
/// Ok(())
/// }
/// ```
pub fn delete_space(&self) -> super::builder::chat_service::DeleteSpace {
super::builder::chat_service::DeleteSpace::new(self.inner.clone())
}
/// Completes the
/// [import process](https://developers.google.com/workspace/chat/import-data)
/// for the specified space and makes it visible to users.
///
/// Requires [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// and domain-wide delegation with the [authorization
/// scope](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.import>`
///
/// For more information, see [Authorize Google
/// Chat apps to import
/// data](https://developers.google.com/workspace/chat/authorize-import).
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService
/// ) -> Result<()> {
/// let response = client.complete_import_space()
/// /* set fields */
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn complete_import_space(&self) -> super::builder::chat_service::CompleteImportSpace {
super::builder::chat_service::CompleteImportSpace::new(self.inner.clone())
}
/// Returns the existing direct message with the specified user. If no direct
/// message space is found, returns a `404 NOT_FOUND` error. For an example,
/// see
/// [Find a direct message](/chat/api/guides/v1/spaces/find-direct-message).
///
/// With [app
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app),
/// returns the direct message space between the specified user and the calling
/// Chat app.
///
/// With [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user),
/// returns the direct message space between the specified user and the
/// authenticated user.
///
/// Supports the following types of
/// [authentication](https://developers.google.com/workspace/chat/authenticate-authorize):
///
/// - [App
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app)
/// with the authorization scope:
///
/// - `<https://www.googleapis.com/auth/chat.bot>`
/// - [User
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following authorization scopes:
///
/// - `<https://www.googleapis.com/auth/chat.spaces.readonly>`
/// - `<https://www.googleapis.com/auth/chat.spaces>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService
/// ) -> Result<()> {
/// let response = client.find_direct_message()
/// /* set fields */
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn find_direct_message(&self) -> super::builder::chat_service::FindDirectMessage {
super::builder::chat_service::FindDirectMessage::new(self.inner.clone())
}
/// Returns all spaces with `spaceType == GROUP_CHAT`, whose
/// human memberships contain exactly the calling user, and the users specified
/// in `FindGroupChatsRequest.users`. Only members that have joined the
/// conversation are supported. For an example, see [Find group
/// chats](https://developers.google.com/workspace/chat/find-group-chats).
///
/// If the calling user blocks, or is blocked by, some users, and no spaces
/// with the entire specified set of users are found, this method returns
/// spaces that don't include the blocked or blocking users.
///
/// The specified set of users must contain only human (non-app) memberships.
/// A request that contains non-human users doesn't return any spaces.
///
/// Requires [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following [authorization
/// scopes](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.memberships.readonly>`
/// - `<https://www.googleapis.com/auth/chat.memberships>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_cloud_gax::paginator::ItemPaginator as _;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService
/// ) -> Result<()> {
/// let mut list = client.find_group_chats()
/// /* set fields */
/// .by_item();
/// while let Some(item) = list.next().await.transpose()? {
/// println!("{:?}", item);
/// }
/// Ok(())
/// }
/// ```
pub fn find_group_chats(&self) -> super::builder::chat_service::FindGroupChats {
super::builder::chat_service::FindGroupChats::new(self.inner.clone())
}
/// Creates a membership for the calling Chat app, a user, or a Google Group.
/// Creating memberships for other Chat apps isn't supported.
/// When creating a membership, if the specified member has their auto-accept
/// policy turned off, then they're invited, and must accept the space
/// invitation before joining. Otherwise, creating a membership adds the member
/// directly to the specified space.
///
/// Supports the following types of
/// [authentication](https://developers.google.com/workspace/chat/authenticate-authorize):
///
/// - [App
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app)
/// with [administrator approval](https://support.google.com/a?p=chat-app-auth)
/// and the authorization scope:
///
/// - `<https://www.googleapis.com/auth/chat.app.memberships>`
/// - [User
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following authorization scopes:
///
/// - `<https://www.googleapis.com/auth/chat.memberships>`
/// - `<https://www.googleapis.com/auth/chat.memberships.app>` (to add the
/// calling app to the space)
/// - `<https://www.googleapis.com/auth/chat.import>` (import mode spaces
/// only)
/// - User authentication grants administrator privileges when an
/// administrator account authenticates, `use_admin_access` is `true`, and
/// the following authorization scope is used:
/// - `<https://www.googleapis.com/auth/chat.admin.memberships>`
///
/// App authentication is not supported for the following use cases:
///
/// - Inviting users external to the Workspace organization that owns the
/// space.
/// - Adding a Google Group to a space.
/// - Adding a Chat app to a space.
///
/// For example usage, see:
///
/// - [Invite or add a user to a
/// space](https://developers.google.com/workspace/chat/create-members#create-user-membership).
/// - [Invite or add a Google Group to a
/// space](https://developers.google.com/workspace/chat/create-members#create-group-membership).
/// - [Add the Chat app to a
/// space](https://developers.google.com/workspace/chat/create-members#create-membership-calling-api).
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::model::Membership;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, space_id: &str
/// ) -> Result<()> {
/// let response = client.create_membership()
/// .set_parent(format!("spaces/{space_id}"))
/// .set_membership(
/// Membership::new()/* set fields */
/// )
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn create_membership(&self) -> super::builder::chat_service::CreateMembership {
super::builder::chat_service::CreateMembership::new(self.inner.clone())
}
/// Updates a membership. For an example, see [Update a user's membership in
/// a space](https://developers.google.com/workspace/chat/update-members).
///
/// Supports the following types of
/// [authentication](https://developers.google.com/workspace/chat/authenticate-authorize):
///
/// - [App
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app)
/// with [administrator
/// approval](https://support.google.com/a?p=chat-app-auth) and the
/// authorization scope:
///
/// - `<https://www.googleapis.com/auth/chat.app.memberships>` (only in
/// spaces the app created)
/// - [User
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following authorization scopes:
///
/// - `<https://www.googleapis.com/auth/chat.memberships>`
/// - `<https://www.googleapis.com/auth/chat.import>` (import mode spaces
/// only)
/// - User authentication grants administrator privileges when an
/// administrator account authenticates, `use_admin_access` is `true`, and
/// the following authorization scope is used:
/// - `<https://www.googleapis.com/auth/chat.admin.memberships>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// # extern crate wkt as google_cloud_wkt;
/// use google_cloud_wkt::FieldMask;
/// use google_chat_v1::model::Membership;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, space_id: &str, member_id: &str
/// ) -> Result<()> {
/// let response = client.update_membership()
/// .set_membership(
/// Membership::new().set_name(format!("spaces/{space_id}/members/{member_id}"))/* set fields */
/// )
/// .set_update_mask(FieldMask::default().set_paths(["updated.field.path1", "updated.field.path2"]))
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn update_membership(&self) -> super::builder::chat_service::UpdateMembership {
super::builder::chat_service::UpdateMembership::new(self.inner.clone())
}
/// Deletes a membership. For an example, see
/// [Remove a user or a Google Chat app from a
/// space](https://developers.google.com/workspace/chat/delete-members).
///
/// Supports the following types of
/// [authentication](https://developers.google.com/workspace/chat/authenticate-authorize):
///
/// - [App
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app)
/// with [administrator approval](https://support.google.com/a?p=chat-app-auth)
/// and the authorization scope:
///
/// - `<https://www.googleapis.com/auth/chat.app.memberships>`
/// - [User
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following authorization scopes:
///
/// - `<https://www.googleapis.com/auth/chat.memberships>`
/// - `<https://www.googleapis.com/auth/chat.memberships.app>` (to remove
/// the calling app from the space)
/// - `<https://www.googleapis.com/auth/chat.import>` (import mode spaces
/// only)
/// - User authentication grants administrator privileges when an
/// administrator account authenticates, `use_admin_access` is `true`, and
/// the following authorization scope is used:
/// - `<https://www.googleapis.com/auth/chat.admin.memberships>`
///
/// App authentication is not supported for the following use cases:
///
/// - Removing a Google Group from a space.
/// - Removing a Chat app from a space.
///
/// To delete memberships for space managers, the requester
/// must be a space manager. If you're using [app
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app)
/// the Chat app must be the space creator.
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, space_id: &str, member_id: &str
/// ) -> Result<()> {
/// let response = client.delete_membership()
/// .set_name(format!("spaces/{space_id}/members/{member_id}"))
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn delete_membership(&self) -> super::builder::chat_service::DeleteMembership {
super::builder::chat_service::DeleteMembership::new(self.inner.clone())
}
/// Creates a reaction and adds it to a message. For an example, see
/// [Add a reaction to a
/// message](https://developers.google.com/workspace/chat/create-reactions).
///
/// Requires [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following [authorization
/// scopes](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.messages.reactions.create>`
/// - `<https://www.googleapis.com/auth/chat.messages.reactions>`
/// - `<https://www.googleapis.com/auth/chat.messages>`
/// - `<https://www.googleapis.com/auth/chat.import>` (import mode spaces only)
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::model::Reaction;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, space_id: &str, message_id: &str
/// ) -> Result<()> {
/// let response = client.create_reaction()
/// .set_parent(format!("spaces/{space_id}/messages/{message_id}"))
/// .set_reaction(
/// Reaction::new()/* set fields */
/// )
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn create_reaction(&self) -> super::builder::chat_service::CreateReaction {
super::builder::chat_service::CreateReaction::new(self.inner.clone())
}
/// Lists reactions to a message. For an example, see
/// [List reactions for a
/// message](https://developers.google.com/workspace/chat/list-reactions).
///
/// Requires [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following [authorization
/// scopes](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.messages.reactions.readonly>`
/// - `<https://www.googleapis.com/auth/chat.messages.reactions>`
/// - `<https://www.googleapis.com/auth/chat.messages.readonly>`
/// - `<https://www.googleapis.com/auth/chat.messages>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_cloud_gax::paginator::ItemPaginator as _;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, space_id: &str, message_id: &str
/// ) -> Result<()> {
/// let mut list = client.list_reactions()
/// .set_parent(format!("spaces/{space_id}/messages/{message_id}"))
/// .by_item();
/// while let Some(item) = list.next().await.transpose()? {
/// println!("{:?}", item);
/// }
/// Ok(())
/// }
/// ```
pub fn list_reactions(&self) -> super::builder::chat_service::ListReactions {
super::builder::chat_service::ListReactions::new(self.inner.clone())
}
/// Deletes a reaction to a message. For an example, see
/// [Delete a
/// reaction](https://developers.google.com/workspace/chat/delete-reactions).
///
/// Requires [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following [authorization
/// scopes](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.messages.reactions>`
/// - `<https://www.googleapis.com/auth/chat.messages>`
/// - `<https://www.googleapis.com/auth/chat.import>` (import mode spaces only)
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, space_id: &str, message_id: &str, reaction_id: &str
/// ) -> Result<()> {
/// client.delete_reaction()
/// .set_name(format!("spaces/{space_id}/messages/{message_id}/reactions/{reaction_id}"))
/// .send().await?;
/// Ok(())
/// }
/// ```
pub fn delete_reaction(&self) -> super::builder::chat_service::DeleteReaction {
super::builder::chat_service::DeleteReaction::new(self.inner.clone())
}
/// Creates a custom emoji.
///
/// Custom emojis are only available for Google Workspace accounts, and the
/// administrator must turn custom emojis on for the organization. For more
/// information, see [Learn about custom emojis in Google
/// Chat](https://support.google.com/chat/answer/12800149) and
/// [Manage custom emoji
/// permissions](https://support.google.com/a/answer/12850085).
///
/// Requires [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with the [authorization
/// scope](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.customemojis>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService
/// ) -> Result<()> {
/// let response = client.create_custom_emoji()
/// /* set fields */
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn create_custom_emoji(&self) -> super::builder::chat_service::CreateCustomEmoji {
super::builder::chat_service::CreateCustomEmoji::new(self.inner.clone())
}
/// Returns details about a custom emoji.
///
/// Custom emojis are only available for Google Workspace accounts, and the
/// administrator must turn custom emojis on for the organization. For more
/// information, see [Learn about custom emojis in Google
/// Chat](https://support.google.com/chat/answer/12800149) and
/// [Manage custom emoji
/// permissions](https://support.google.com/a/answer/12850085).
///
/// Requires [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following [authorization
/// scopes](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.customemojis.readonly>`
/// - `<https://www.googleapis.com/auth/chat.customemojis>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, custom_emoji_id: &str
/// ) -> Result<()> {
/// let response = client.get_custom_emoji()
/// .set_name(format!("customEmojis/{custom_emoji_id}"))
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn get_custom_emoji(&self) -> super::builder::chat_service::GetCustomEmoji {
super::builder::chat_service::GetCustomEmoji::new(self.inner.clone())
}
/// Lists custom emojis visible to the authenticated user.
///
/// Custom emojis are only available for Google Workspace accounts, and the
/// administrator must turn custom emojis on for the organization. For more
/// information, see [Learn about custom emojis in Google
/// Chat](https://support.google.com/chat/answer/12800149) and
/// [Manage custom emoji
/// permissions](https://support.google.com/a/answer/12850085).
///
/// Requires [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following [authorization
/// scopes](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.customemojis.readonly>`
/// - `<https://www.googleapis.com/auth/chat.customemojis>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_cloud_gax::paginator::ItemPaginator as _;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService
/// ) -> Result<()> {
/// let mut list = client.list_custom_emojis()
/// /* set fields */
/// .by_item();
/// while let Some(item) = list.next().await.transpose()? {
/// println!("{:?}", item);
/// }
/// Ok(())
/// }
/// ```
pub fn list_custom_emojis(&self) -> super::builder::chat_service::ListCustomEmojis {
super::builder::chat_service::ListCustomEmojis::new(self.inner.clone())
}
/// Deletes a custom emoji. By default, users can only delete custom emoji they
/// created. [Emoji managers](https://support.google.com/a/answer/12850085)
/// assigned by the administrator can delete any custom emoji in the
/// organization. See [Learn about custom emojis in Google
/// Chat](https://support.google.com/chat/answer/12800149).
///
/// Custom emojis are only available for Google Workspace accounts, and the
/// administrator must turn custom emojis on for the organization. For more
/// information, see [Learn about custom emojis in Google
/// Chat](https://support.google.com/chat/answer/12800149) and
/// [Manage custom emoji
/// permissions](https://support.google.com/a/answer/12850085).
///
/// Requires [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with the [authorization
/// scope](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.customemojis>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, custom_emoji_id: &str
/// ) -> Result<()> {
/// client.delete_custom_emoji()
/// .set_name(format!("customEmojis/{custom_emoji_id}"))
/// .send().await?;
/// Ok(())
/// }
/// ```
pub fn delete_custom_emoji(&self) -> super::builder::chat_service::DeleteCustomEmoji {
super::builder::chat_service::DeleteCustomEmoji::new(self.inner.clone())
}
/// Returns details about a user's read state within a space, used to identify
/// read and unread messages. For an example, see [Get details about a user's
/// space read
/// state](https://developers.google.com/workspace/chat/get-space-read-state).
///
/// Requires [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following [authorization
/// scopes](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.users.readstate.readonly>`
/// - `<https://www.googleapis.com/auth/chat.users.readstate>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, user_id: &str, space_id: &str
/// ) -> Result<()> {
/// let response = client.get_space_read_state()
/// .set_name(format!("users/{user_id}/spaces/{space_id}/spaceReadState"))
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn get_space_read_state(&self) -> super::builder::chat_service::GetSpaceReadState {
super::builder::chat_service::GetSpaceReadState::new(self.inner.clone())
}
/// Updates a user's read state within a space, used to identify read and
/// unread messages. For an example, see [Update a user's space read
/// state](https://developers.google.com/workspace/chat/update-space-read-state).
///
/// Requires [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with the [authorization
/// scope](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.users.readstate>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// # extern crate wkt as google_cloud_wkt;
/// use google_cloud_wkt::FieldMask;
/// use google_chat_v1::model::SpaceReadState;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, user_id: &str, space_id: &str
/// ) -> Result<()> {
/// let response = client.update_space_read_state()
/// .set_space_read_state(
/// SpaceReadState::new().set_name(format!("users/{user_id}/spaces/{space_id}/spaceReadState"))/* set fields */
/// )
/// .set_update_mask(FieldMask::default().set_paths(["updated.field.path1", "updated.field.path2"]))
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn update_space_read_state(&self) -> super::builder::chat_service::UpdateSpaceReadState {
super::builder::chat_service::UpdateSpaceReadState::new(self.inner.clone())
}
/// Returns details about a user's read state within a thread, used to identify
/// read and unread messages. For an example, see [Get details about a user's
/// thread read
/// state](https://developers.google.com/workspace/chat/get-thread-read-state).
///
/// Requires [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following [authorization
/// scopes](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.users.readstate.readonly>`
/// - `<https://www.googleapis.com/auth/chat.users.readstate>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, user_id: &str, space_id: &str, thread_id: &str
/// ) -> Result<()> {
/// let response = client.get_thread_read_state()
/// .set_name(format!("users/{user_id}/spaces/{space_id}/threads/{thread_id}/threadReadState"))
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn get_thread_read_state(&self) -> super::builder::chat_service::GetThreadReadState {
super::builder::chat_service::GetThreadReadState::new(self.inner.clone())
}
/// Returns availability information for a human user in Google Chat. For
/// example, this can be used to check if a user is online or away, or to
/// retrieve their custom status message.
///
/// This method only retrieves the authenticated user's availability.
///
/// Requires [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following [authorization
/// scopes](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.users.availability.readonly>`
/// - `<https://www.googleapis.com/auth/chat.users.availability>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, user_id: &str
/// ) -> Result<()> {
/// let response = client.get_availability()
/// .set_name(format!("users/{user_id}/availability"))
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn get_availability(&self) -> super::builder::chat_service::GetAvailability {
super::builder::chat_service::GetAvailability::new(self.inner.clone())
}
/// Marks user as `ACTIVE` in Google Chat.
///
/// Sets the user's availability state to `ACTIVE`. The `ACTIVE` state
/// lasts until the specified expiration, at which point the user's state
/// becomes `AWAY`. Note that if the user is actively using Chat, the `ACTIVE`
/// state duration may extend beyond the provided expiration.
///
/// This method only updates the authenticated user's availability.
///
/// Requires [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with [authorization
/// scope](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.users.availability>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService
/// ) -> Result<()> {
/// let response = client.mark_as_active()
/// /* set fields */
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn mark_as_active(&self) -> super::builder::chat_service::MarkAsActive {
super::builder::chat_service::MarkAsActive::new(self.inner.clone())
}
/// Marks user as `AWAY` in Google Chat.
///
/// Sets the user's state to away and is not affected by the user's
/// activity.
///
/// This method only updates the authenticated user's availability.
///
/// Requires [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with [authorization
/// scope](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.users.availability>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService
/// ) -> Result<()> {
/// let response = client.mark_as_away()
/// /* set fields */
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn mark_as_away(&self) -> super::builder::chat_service::MarkAsAway {
super::builder::chat_service::MarkAsAway::new(self.inner.clone())
}
/// Marks user as `DO_NOT_DISTURB` in Google Chat.
///
/// Sets a user's availability state to `DO_NOT_DISTURB` until a specified
/// expiration time.
/// When in `DO_NOT_DISTURB`, users typically won't receive notifications.
///
/// This method only updates the authenticated user's availability.
///
/// Requires [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with [authorization
/// scope](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.users.availability>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService
/// ) -> Result<()> {
/// let response = client.mark_as_do_not_disturb()
/// /* set fields */
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn mark_as_do_not_disturb(&self) -> super::builder::chat_service::MarkAsDoNotDisturb {
super::builder::chat_service::MarkAsDoNotDisturb::new(self.inner.clone())
}
/// Updates availability information for a human user. Only the `custom_status`
/// field can be updated through this method.
///
/// This method only updates the authenticated user's availability.
///
/// Requires [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following [authorization
/// scopes](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.users.availability>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// # extern crate wkt as google_cloud_wkt;
/// use google_cloud_wkt::FieldMask;
/// use google_chat_v1::model::Availability;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, user_id: &str
/// ) -> Result<()> {
/// let response = client.update_availability()
/// .set_availability(
/// Availability::new().set_name(format!("users/{user_id}/availability"))/* set fields */
/// )
/// .set_update_mask(FieldMask::default().set_paths(["updated.field.path1", "updated.field.path2"]))
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn update_availability(&self) -> super::builder::chat_service::UpdateAvailability {
super::builder::chat_service::UpdateAvailability::new(self.inner.clone())
}
/// Returns an event from a Google Chat space. The [event
/// payload](https://developers.google.com/workspace/chat/api/reference/rest/v1/spaces.spaceEvents#SpaceEvent.FIELDS.oneof_payload)
/// contains the most recent version of the resource that changed. For example,
/// if you request an event about a new message but the message was later
/// updated, the server returns the updated `Message` resource in the event
/// payload.
///
/// Note: The `permissionSettings` field is not returned in the Space
/// object of the Space event data for this request.
///
/// Supports the following types of
/// [authentication](https://developers.google.com/workspace/chat/authenticate-authorize)
/// with an
/// [authorization
/// scope](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes)
/// appropriate for reading the requested data:
///
/// - [App
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app)
/// with [administrator
/// approval](https://support.google.com/a?p=chat-app-auth)
/// with one of the following authorization scopes:
///
/// - `<https://www.googleapis.com/auth/chat.app.spaces>`
/// - `<https://www.googleapis.com/auth/chat.app.spaces.readonly>`
/// - `<https://www.googleapis.com/auth/chat.app.messages.readonly>`
/// - `<https://www.googleapis.com/auth/chat.app.memberships>`
/// - `<https://www.googleapis.com/auth/chat.app.memberships.readonly>`
/// - [User
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following authorization scopes:
///
/// - `<https://www.googleapis.com/auth/chat.spaces.readonly>`
/// - `<https://www.googleapis.com/auth/chat.spaces>`
/// - `<https://www.googleapis.com/auth/chat.messages.readonly>`
/// - `<https://www.googleapis.com/auth/chat.messages>`
/// - `<https://www.googleapis.com/auth/chat.messages.reactions.readonly>`
/// - `<https://www.googleapis.com/auth/chat.messages.reactions>`
/// - `<https://www.googleapis.com/auth/chat.memberships.readonly>`
/// - `<https://www.googleapis.com/auth/chat.memberships>`
///
/// To get an event, the authenticated caller must be a member of the space.
///
/// For an example, see [Get details about an
/// event from a Google Chat
/// space](https://developers.google.com/workspace/chat/get-space-event).
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, space_id: &str, space_event_id: &str
/// ) -> Result<()> {
/// let response = client.get_space_event()
/// .set_name(format!("spaces/{space_id}/spaceEvents/{space_event_id}"))
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn get_space_event(&self) -> super::builder::chat_service::GetSpaceEvent {
super::builder::chat_service::GetSpaceEvent::new(self.inner.clone())
}
/// Lists events from a Google Chat space. For each event, the
/// [payload](https://developers.google.com/workspace/chat/api/reference/rest/v1/spaces.spaceEvents#SpaceEvent.FIELDS.oneof_payload)
/// contains the most recent version of the Chat resource. For example, if you
/// list events about new space members, the server returns `Membership`
/// resources that contain the latest membership details. If new members were
/// removed during the requested period, the event payload contains an empty
/// `Membership` resource.
///
/// Supports the following types of
/// [authentication](https://developers.google.com/workspace/chat/authenticate-authorize)
/// with an
/// [authorization
/// scope](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes)
/// appropriate for reading the requested data:
///
/// - [App
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app)
/// with [administrator
/// approval](https://support.google.com/a?p=chat-app-auth)
/// with one of the following authorization scopes:
///
/// - `<https://www.googleapis.com/auth/chat.app.spaces>`
/// - `<https://www.googleapis.com/auth/chat.app.spaces.readonly>`
/// - `<https://www.googleapis.com/auth/chat.app.messages.readonly>`
/// - `<https://www.googleapis.com/auth/chat.app.memberships>`
/// - `<https://www.googleapis.com/auth/chat.app.memberships.readonly>`
/// - [User
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with one of the following authorization scopes:
///
/// - `<https://www.googleapis.com/auth/chat.spaces.readonly>`
/// - `<https://www.googleapis.com/auth/chat.spaces>`
/// - `<https://www.googleapis.com/auth/chat.messages.readonly>`
/// - `<https://www.googleapis.com/auth/chat.messages>`
/// - `<https://www.googleapis.com/auth/chat.messages.reactions.readonly>`
/// - `<https://www.googleapis.com/auth/chat.messages.reactions>`
/// - `<https://www.googleapis.com/auth/chat.memberships.readonly>`
/// - `<https://www.googleapis.com/auth/chat.memberships>`
///
/// To list events, the authenticated caller must be a member of the space.
///
/// For an example, see [List events from a Google Chat
/// space](https://developers.google.com/workspace/chat/list-space-events).
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_cloud_gax::paginator::ItemPaginator as _;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, space_id: &str
/// ) -> Result<()> {
/// let mut list = client.list_space_events()
/// .set_parent(format!("spaces/{space_id}"))
/// .by_item();
/// while let Some(item) = list.next().await.transpose()? {
/// println!("{:?}", item);
/// }
/// Ok(())
/// }
/// ```
pub fn list_space_events(&self) -> super::builder::chat_service::ListSpaceEvents {
super::builder::chat_service::ListSpaceEvents::new(self.inner.clone())
}
/// Gets the space notification setting. For an example, see [Get the
/// caller's space notification
/// setting](https://developers.google.com/workspace/chat/get-space-notification-setting).
///
/// Requires [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with the [authorization
/// scope](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.users.spacesettings>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, user_id: &str, space_id: &str
/// ) -> Result<()> {
/// let response = client.get_space_notification_setting()
/// .set_name(format!("users/{user_id}/spaces/{space_id}/spaceNotificationSetting"))
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn get_space_notification_setting(
&self,
) -> super::builder::chat_service::GetSpaceNotificationSetting {
super::builder::chat_service::GetSpaceNotificationSetting::new(self.inner.clone())
}
/// Updates the space notification setting. For an example, see [Update
/// the caller's space notification
/// setting](https://developers.google.com/workspace/chat/update-space-notification-setting).
///
/// Requires [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with the [authorization
/// scope](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.users.spacesettings>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// # extern crate wkt as google_cloud_wkt;
/// use google_cloud_wkt::FieldMask;
/// use google_chat_v1::model::SpaceNotificationSetting;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, user_id: &str, space_id: &str
/// ) -> Result<()> {
/// let response = client.update_space_notification_setting()
/// .set_space_notification_setting(
/// SpaceNotificationSetting::new().set_name(format!("users/{user_id}/spaces/{space_id}/spaceNotificationSetting"))/* set fields */
/// )
/// .set_update_mask(FieldMask::default().set_paths(["updated.field.path1", "updated.field.path2"]))
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn update_space_notification_setting(
&self,
) -> super::builder::chat_service::UpdateSpaceNotificationSetting {
super::builder::chat_service::UpdateSpaceNotificationSetting::new(self.inner.clone())
}
/// Creates a section in Google Chat. Sections help users group conversations
/// and customize the list of spaces displayed in Chat navigation panel. Only
/// sections of type `CUSTOM_SECTION` can be created. For details, see [Create
/// and organize sections in Google
/// Chat](https://support.google.com/chat/answer/16059854).
///
/// Requires [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with the [authorization
/// scope](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.users.sections>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::model::Section;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, parent: &str
/// ) -> Result<()> {
/// let response = client.create_section()
/// .set_parent(parent)
/// .set_section(
/// Section::new()/* set fields */
/// )
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn create_section(&self) -> super::builder::chat_service::CreateSection {
super::builder::chat_service::CreateSection::new(self.inner.clone())
}
/// Deletes a section of type `CUSTOM_SECTION`.
///
/// If the section contains items, such as spaces, the items are moved to
/// Google Chat's default sections and are not deleted.
///
/// For details, see [Create and organize sections in Google
/// Chat](https://support.google.com/chat/answer/16059854).
///
/// Requires [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with the [authorization
/// scope](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.users.sections>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, user_id: &str, section_id: &str
/// ) -> Result<()> {
/// client.delete_section()
/// .set_name(format!("users/{user_id}/sections/{section_id}"))
/// .send().await?;
/// Ok(())
/// }
/// ```
pub fn delete_section(&self) -> super::builder::chat_service::DeleteSection {
super::builder::chat_service::DeleteSection::new(self.inner.clone())
}
/// Updates a section. Only sections of type `CUSTOM_SECTION` can be updated.
/// For details, see [Create and organize sections in Google
/// Chat](https://support.google.com/chat/answer/16059854).
///
/// Requires [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with the [authorization
/// scope](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.users.sections>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// # extern crate wkt as google_cloud_wkt;
/// use google_cloud_wkt::FieldMask;
/// use google_chat_v1::model::Section;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, user_id: &str, section_id: &str
/// ) -> Result<()> {
/// let response = client.update_section()
/// .set_section(
/// Section::new().set_name(format!("users/{user_id}/sections/{section_id}"))/* set fields */
/// )
/// .set_update_mask(FieldMask::default().set_paths(["updated.field.path1", "updated.field.path2"]))
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn update_section(&self) -> super::builder::chat_service::UpdateSection {
super::builder::chat_service::UpdateSection::new(self.inner.clone())
}
/// Lists sections available to the Chat user. Sections help users group their
/// conversations and customize the list of spaces displayed in Chat
/// navigation panel. For details, see [Create and organize sections in Google
/// Chat](https://support.google.com/chat/answer/16059854).
///
/// Requires [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with the [authorization
/// scope](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.users.sections>`
/// - `<https://www.googleapis.com/auth/chat.users.sections.readonly>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_cloud_gax::paginator::ItemPaginator as _;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, parent: &str
/// ) -> Result<()> {
/// let mut list = client.list_sections()
/// .set_parent(parent)
/// .by_item();
/// while let Some(item) = list.next().await.transpose()? {
/// println!("{:?}", item);
/// }
/// Ok(())
/// }
/// ```
pub fn list_sections(&self) -> super::builder::chat_service::ListSections {
super::builder::chat_service::ListSections::new(self.inner.clone())
}
/// Changes the sort order of a section. For details, see [Create and organize
/// sections in Google Chat](https://support.google.com/chat/answer/16059854).
///
/// Requires [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with the [authorization
/// scope](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.users.sections>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService
/// ) -> Result<()> {
/// let response = client.position_section()
/// /* set fields */
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn position_section(&self) -> super::builder::chat_service::PositionSection {
super::builder::chat_service::PositionSection::new(self.inner.clone())
}
/// Lists items in a section.
///
/// Only spaces can be section items. For details, see [Create and organize
/// sections in Google Chat](https://support.google.com/chat/answer/16059854).
///
/// Requires [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with the [authorization
/// scope](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.users.sections>`
/// - `<https://www.googleapis.com/auth/chat.users.sections.readonly>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_cloud_gax::paginator::ItemPaginator as _;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService, user_id: &str, section_id: &str
/// ) -> Result<()> {
/// let mut list = client.list_section_items()
/// .set_parent(format!("users/{user_id}/sections/{section_id}"))
/// .by_item();
/// while let Some(item) = list.next().await.transpose()? {
/// println!("{:?}", item);
/// }
/// Ok(())
/// }
/// ```
pub fn list_section_items(&self) -> super::builder::chat_service::ListSectionItems {
super::builder::chat_service::ListSectionItems::new(self.inner.clone())
}
/// Moves an item from one section to another. For example, if a section
/// contains spaces, this method can be used to move a space to a different
/// section. For details, see [Create and organize sections in Google
/// Chat](https://support.google.com/chat/answer/16059854).
///
/// Requires [user
/// authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user)
/// with the [authorization
/// scope](https://developers.google.com/workspace/chat/authenticate-authorize#chat-api-scopes):
///
/// - `<https://www.googleapis.com/auth/chat.users.sections>`
///
/// # Example
/// ```
/// # use google_chat_v1::client::ChatService;
/// use google_chat_v1::Result;
/// async fn sample(
/// client: &ChatService
/// ) -> Result<()> {
/// let response = client.move_section_item()
/// /* set fields */
/// .send().await?;
/// println!("response {:?}", response);
/// Ok(())
/// }
/// ```
pub fn move_section_item(&self) -> super::builder::chat_service::MoveSectionItem {
super::builder::chat_service::MoveSectionItem::new(self.inner.clone())
}
}