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
/// A HealthCheck resource. For more information, see [Health check](/docs/network-load-balancer/concepts/health-check).
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct HealthCheck {
/// Name of the health check. The name must be unique for each target group that attached to a single load balancer. 3-63 characters long.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// The interval between health checks. The default is 2 seconds.
#[prost(message, optional, tag = "2")]
pub interval: ::core::option::Option<::prost_types::Duration>,
/// Timeout for a target to return a response for the health check. The default is 1 second.
#[prost(message, optional, tag = "3")]
pub timeout: ::core::option::Option<::prost_types::Duration>,
/// Number of failed health checks before changing the status to `` UNHEALTHY ``. The default is 2.
#[prost(int64, tag = "4")]
pub unhealthy_threshold: i64,
/// Number of successful health checks required in order to set the `` HEALTHY `` status for the target. The default is 2.
#[prost(int64, tag = "5")]
pub healthy_threshold: i64,
/// Protocol to use for the health check. Either TCP or HTTP.
#[prost(oneof = "health_check::Options", tags = "6, 7")]
pub options: ::core::option::Option<health_check::Options>,
}
/// Nested message and enum types in `HealthCheck`.
pub mod health_check {
/// Configuration option for a TCP health check.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TcpOptions {
/// Port to use for TCP health checks.
#[prost(int64, tag = "1")]
pub port: i64,
}
/// Configuration option for an HTTP health check.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct HttpOptions {
/// Port to use for HTTP health checks.
#[prost(int64, tag = "1")]
pub port: i64,
/// URL path to set for health checking requests for every target in the target group.
/// For example `` /ping ``. The default path is `` / ``.
#[prost(string, tag = "2")]
pub path: ::prost::alloc::string::String,
}
/// Protocol to use for the health check. Either TCP or HTTP.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Options {
/// Options for TCP health check.
#[prost(message, tag = "6")]
TcpOptions(TcpOptions),
/// Options for HTTP health check.
#[prost(message, tag = "7")]
HttpOptions(HttpOptions),
}
}
/// A NetworkLoadBalancer resource. For more information, see [Network Load Balancer](/docs/network-load-balancer/concepts).
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct NetworkLoadBalancer {
/// ID of the network load balancer.
#[prost(string, tag = "1")]
pub id: ::prost::alloc::string::String,
/// ID of the folder that the network load balancer belongs to.
#[prost(string, tag = "2")]
pub folder_id: ::prost::alloc::string::String,
/// Creation timestamp in \[RFC3339\](<https://www.ietf.org/rfc/rfc3339.txt>) text format.
#[prost(message, optional, tag = "3")]
pub created_at: ::core::option::Option<::prost_types::Timestamp>,
/// Name of the network load balancer. The name is unique within the folder. 3-63 characters long.
#[prost(string, tag = "4")]
pub name: ::prost::alloc::string::String,
/// Optional description of the network load balancer. 0-256 characters long.
#[prost(string, tag = "5")]
pub description: ::prost::alloc::string::String,
/// Resource labels as `` key:value `` pairs. Maximum of 64 per resource.
#[prost(map = "string, string", tag = "6")]
pub labels: ::std::collections::HashMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// ID of the region that the network load balancer belongs to.
#[prost(string, tag = "7")]
pub region_id: ::prost::alloc::string::String,
/// Status of the network load balancer.
#[prost(enumeration = "network_load_balancer::Status", tag = "9")]
pub status: i32,
/// Type of the network load balancer. Only external network load balancers are available now.
#[prost(enumeration = "network_load_balancer::Type", tag = "10")]
pub r#type: i32,
/// Type of the session affinity. Only 5-tuple affinity is available now.
#[prost(enumeration = "network_load_balancer::SessionAffinity", tag = "11")]
pub session_affinity: i32,
/// List of listeners for the network load balancer.
#[prost(message, repeated, tag = "12")]
pub listeners: ::prost::alloc::vec::Vec<Listener>,
/// List of target groups attached to the network load balancer.
#[prost(message, repeated, tag = "13")]
pub attached_target_groups: ::prost::alloc::vec::Vec<AttachedTargetGroup>,
/// Specifies if network load balancer protected from deletion.
#[prost(bool, tag = "14")]
pub deletion_protection: bool,
/// Specifies if network load balancer available to zonal shift.
#[prost(bool, tag = "15")]
pub allow_zonal_shift: bool,
}
/// Nested message and enum types in `NetworkLoadBalancer`.
pub mod network_load_balancer {
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum Status {
Unspecified = 0,
/// Network load balancer is being created.
Creating = 1,
/// Network load balancer is being started.
Starting = 2,
/// Network load balancer is active and sends traffic to the targets.
Active = 3,
/// Network load balancer is being stopped.
Stopping = 4,
/// Network load balancer is stopped and doesn't send traffic to the targets.
Stopped = 5,
/// Network load balancer is being deleted.
Deleting = 6,
/// The load balancer doesn't have any listeners or target groups, or
/// attached target groups are empty. The load balancer doesn't perform any health checks or
/// send traffic in this state.
Inactive = 7,
}
impl Status {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
Status::Unspecified => "STATUS_UNSPECIFIED",
Status::Creating => "CREATING",
Status::Starting => "STARTING",
Status::Active => "ACTIVE",
Status::Stopping => "STOPPING",
Status::Stopped => "STOPPED",
Status::Deleting => "DELETING",
Status::Inactive => "INACTIVE",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"STATUS_UNSPECIFIED" => Some(Self::Unspecified),
"CREATING" => Some(Self::Creating),
"STARTING" => Some(Self::Starting),
"ACTIVE" => Some(Self::Active),
"STOPPING" => Some(Self::Stopping),
"STOPPED" => Some(Self::Stopped),
"DELETING" => Some(Self::Deleting),
"INACTIVE" => Some(Self::Inactive),
_ => None,
}
}
}
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum Type {
Unspecified = 0,
/// External network load balancer.
External = 1,
/// Internal network load balancer.
Internal = 2,
}
impl Type {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
Type::Unspecified => "TYPE_UNSPECIFIED",
Type::External => "EXTERNAL",
Type::Internal => "INTERNAL",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"TYPE_UNSPECIFIED" => Some(Self::Unspecified),
"EXTERNAL" => Some(Self::External),
"INTERNAL" => Some(Self::Internal),
_ => None,
}
}
}
/// Type of session affinity. Only 5-tuple affinity is currently available.
/// For more information, see [Load Balancer concepts](/docs/network-load-balancer/concepts/).
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum SessionAffinity {
Unspecified = 0,
/// 5-tuple affinity.
ClientIpPortProto = 1,
}
impl SessionAffinity {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
SessionAffinity::Unspecified => "SESSION_AFFINITY_UNSPECIFIED",
SessionAffinity::ClientIpPortProto => "CLIENT_IP_PORT_PROTO",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"SESSION_AFFINITY_UNSPECIFIED" => Some(Self::Unspecified),
"CLIENT_IP_PORT_PROTO" => Some(Self::ClientIpPortProto),
_ => None,
}
}
}
}
/// An AttachedTargetGroup resource. For more information, see [Targets and groups](/docs/network-load-balancer/concepts/target-resources).
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AttachedTargetGroup {
/// ID of the target group.
#[prost(string, tag = "1")]
pub target_group_id: ::prost::alloc::string::String,
/// A health check to perform on the target group.
/// For now we accept only one health check per AttachedTargetGroup.
#[prost(message, repeated, tag = "2")]
pub health_checks: ::prost::alloc::vec::Vec<HealthCheck>,
}
/// A Listener resource. For more information, see \[Listener\](/docs/network-load-balancer/concepts/listener)
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Listener {
/// Name of the listener. The name must be unique for each listener on a single load balancer. 3-63 characters long.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// IP address for the listener.
#[prost(string, tag = "2")]
pub address: ::prost::alloc::string::String,
/// Port.
#[prost(int64, tag = "3")]
pub port: i64,
/// Network protocol for incoming traffic.
#[prost(enumeration = "listener::Protocol", tag = "4")]
pub protocol: i32,
/// Port of a target.
#[prost(int64, tag = "5")]
pub target_port: i64,
/// ID of the subnet.
#[prost(string, tag = "6")]
pub subnet_id: ::prost::alloc::string::String,
/// IP version of the external address.
#[prost(enumeration = "IpVersion", tag = "7")]
pub ip_version: i32,
}
/// Nested message and enum types in `Listener`.
pub mod listener {
/// Network protocol to use.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum Protocol {
Unspecified = 0,
Tcp = 1,
Udp = 2,
}
impl Protocol {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
Protocol::Unspecified => "PROTOCOL_UNSPECIFIED",
Protocol::Tcp => "TCP",
Protocol::Udp => "UDP",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"PROTOCOL_UNSPECIFIED" => Some(Self::Unspecified),
"TCP" => Some(Self::Tcp),
"UDP" => Some(Self::Udp),
_ => None,
}
}
}
}
/// State of the target that was returned after the last health check.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TargetState {
/// ID of the subnet that the target is connected to.
#[prost(string, tag = "1")]
pub subnet_id: ::prost::alloc::string::String,
/// IP address of the target.
#[prost(string, tag = "2")]
pub address: ::prost::alloc::string::String,
/// Status of the target.
#[prost(enumeration = "target_state::Status", tag = "3")]
pub status: i32,
}
/// Nested message and enum types in `TargetState`.
pub mod target_state {
/// Status of the target.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum Status {
Unspecified = 0,
/// The network load balancer is setting up health checks for this target.
Initial = 1,
/// Health check passed and the target is ready to receive traffic.
Healthy = 2,
/// Health check failed and the target is not receiving traffic.
Unhealthy = 3,
/// Target is being deleted and the network load balancer is no longer sending traffic to this target.
Draining = 4,
/// The network load balancer is stopped and not performing health checks on this target.
Inactive = 5,
}
impl Status {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
Status::Unspecified => "STATUS_UNSPECIFIED",
Status::Initial => "INITIAL",
Status::Healthy => "HEALTHY",
Status::Unhealthy => "UNHEALTHY",
Status::Draining => "DRAINING",
Status::Inactive => "INACTIVE",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"STATUS_UNSPECIFIED" => Some(Self::Unspecified),
"INITIAL" => Some(Self::Initial),
"HEALTHY" => Some(Self::Healthy),
"UNHEALTHY" => Some(Self::Unhealthy),
"DRAINING" => Some(Self::Draining),
"INACTIVE" => Some(Self::Inactive),
_ => None,
}
}
}
}
/// IP version of the addresses that the load balancer works with.
/// Only IPv4 is currently available.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum IpVersion {
Unspecified = 0,
/// IPv4
Ipv4 = 1,
/// IPv6
Ipv6 = 2,
}
impl IpVersion {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
IpVersion::Unspecified => "IP_VERSION_UNSPECIFIED",
IpVersion::Ipv4 => "IPV4",
IpVersion::Ipv6 => "IPV6",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"IP_VERSION_UNSPECIFIED" => Some(Self::Unspecified),
"IPV4" => Some(Self::Ipv4),
"IPV6" => Some(Self::Ipv6),
_ => None,
}
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetNetworkLoadBalancerRequest {
/// ID of the NetworkLoadBalancer resource to return.
/// To get the network load balancer ID, use a \[NetworkLoadBalancerService.List\] request.
#[prost(string, tag = "1")]
pub network_load_balancer_id: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListNetworkLoadBalancersRequest {
/// ID of the folder that the network load balancer belongs to.
/// To get the folder ID, use a \[NetworkLoadBalancerService.List\] request.
#[prost(string, tag = "1")]
pub folder_id: ::prost::alloc::string::String,
/// The maximum number of results per page to return. If the number of available
/// results is larger than \[page_size\],
/// the service returns a \[<ResponseMessage>.next_page_token\]
/// that can be used to get the next page of results in subsequent list requests.
/// Default value: 100.
#[prost(int64, tag = "2")]
pub page_size: i64,
/// Page token. To get the next page of results, set \[page_token\] to the
/// \[ListNetworkLoadBalancersResponse.next_page_token\] returned by a previous list request.
#[prost(string, tag = "3")]
pub page_token: ::prost::alloc::string::String,
/// A filter expression that filters resources listed in the response.
/// The expression must specify:
/// 1. The field name. Currently you can only filter by the \[NetworkLoadBalancer.name\] field.
/// 2. An `=` operator.
/// 3. The value in double quotes (`"`). Must be 3-63 characters long and match the regular expression `\[a-z][-a-z0-9]{1,61}[a-z0-9\]`.
#[prost(string, tag = "4")]
pub filter: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListNetworkLoadBalancersResponse {
/// List of NetworkLoadBalancer resources.
#[prost(message, repeated, tag = "1")]
pub network_load_balancers: ::prost::alloc::vec::Vec<NetworkLoadBalancer>,
/// This token allows you to get the next page of results for list requests. If the number of results
/// is larger than \[ListNetworkLoadBalancersRequest.page_size\], use
/// the \[next_page_token\] as the value
/// for the \[ListNetworkLoadBalancersRequest.page_token\] query parameter
/// in the next list request. Each subsequent list request will have its own
/// \[next_page_token\] to continue paging through the results.
#[prost(string, tag = "2")]
pub next_page_token: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateNetworkLoadBalancerRequest {
/// ID of the folder to create a network load balancer in.
/// To get the folder ID, use a \[NetworkLoadBalancerService.List\] request.
#[prost(string, tag = "1")]
pub folder_id: ::prost::alloc::string::String,
/// Name of the network load balancer.
/// The name must be unique within the folder.
#[prost(string, tag = "2")]
pub name: ::prost::alloc::string::String,
/// Description of the network load balancer.
#[prost(string, tag = "3")]
pub description: ::prost::alloc::string::String,
/// Resource labels as `` key:value `` pairs.
#[prost(map = "string, string", tag = "4")]
pub labels: ::std::collections::HashMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// ID of the region where the network load balancer resides.
#[prost(string, tag = "5")]
pub region_id: ::prost::alloc::string::String,
/// Type of the network load balancer.
#[prost(enumeration = "network_load_balancer::Type", tag = "6")]
pub r#type: i32,
/// List of listeners and their specs for the network load balancer.
#[prost(message, repeated, tag = "7")]
pub listener_specs: ::prost::alloc::vec::Vec<ListenerSpec>,
/// List of attached target groups for the network load balancer.
#[prost(message, repeated, tag = "8")]
pub attached_target_groups: ::prost::alloc::vec::Vec<AttachedTargetGroup>,
/// Specifies if network load balancer protected from deletion.
#[prost(bool, tag = "9")]
pub deletion_protection: bool,
/// Specifies if network load balancer available to zonal shift.
#[prost(bool, tag = "10")]
pub allow_zonal_shift: bool,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateNetworkLoadBalancerMetadata {
/// ID of the network load balancer that is being created.
#[prost(string, tag = "1")]
pub network_load_balancer_id: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateNetworkLoadBalancerRequest {
/// ID of the network load balancer to update.
/// To get the network load balancer ID, use a \[NetworkLoadBalancerService.List\] request.
#[prost(string, tag = "1")]
pub network_load_balancer_id: ::prost::alloc::string::String,
/// Field mask that specifies which fields of the NetworkLoadBalancer resource are going to be updated.
#[prost(message, optional, tag = "2")]
pub update_mask: ::core::option::Option<::prost_types::FieldMask>,
/// Name of the network load balancer.
/// The name must be unique within the folder.
#[prost(string, tag = "3")]
pub name: ::prost::alloc::string::String,
/// Description of the network load balancer.
#[prost(string, tag = "4")]
pub description: ::prost::alloc::string::String,
/// Resource labels as `` key:value `` pairs.
///
/// The existing set of `` labels `` is completely replaced with the provided set.
#[prost(map = "string, string", tag = "5")]
pub labels: ::std::collections::HashMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// A list of listeners and their specs for the network load balancer.
#[prost(message, repeated, tag = "6")]
pub listener_specs: ::prost::alloc::vec::Vec<ListenerSpec>,
/// A list of attached target groups for the network load balancer.
#[prost(message, repeated, tag = "7")]
pub attached_target_groups: ::prost::alloc::vec::Vec<AttachedTargetGroup>,
/// Specifies if network load balancer protected from deletion.
#[prost(bool, tag = "8")]
pub deletion_protection: bool,
/// Specifies if network load balancer available to zonal shift.
#[prost(bool, tag = "9")]
pub allow_zonal_shift: bool,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateNetworkLoadBalancerMetadata {
/// ID of the NetworkLoadBalancer resource that is being updated.
#[prost(string, tag = "1")]
pub network_load_balancer_id: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeleteNetworkLoadBalancerRequest {
/// ID of the network load balancer to delete.
/// To get the network load balancer ID, use a \[NetworkLoadBalancerService.List\] request.
#[prost(string, tag = "1")]
pub network_load_balancer_id: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeleteNetworkLoadBalancerMetadata {
/// ID of the NetworkLoadBalancer resource that is being deleted.
#[prost(string, tag = "1")]
pub network_load_balancer_id: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct StartNetworkLoadBalancerRequest {
/// ID of the network load balancer to start.
/// To get the network load balancer ID, use a \[NetworkLoadBalancerService.List\] request.
#[prost(string, tag = "1")]
pub network_load_balancer_id: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct StartNetworkLoadBalancerMetadata {
/// ID of the NetworkLoadBalancer resource that is being started.
#[prost(string, tag = "1")]
pub network_load_balancer_id: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct StopNetworkLoadBalancerRequest {
/// ID of the network load balancer to stop.
/// To get the network load balancer ID, use a \[NetworkLoadBalancerService.List\] request.
#[prost(string, tag = "1")]
pub network_load_balancer_id: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct StopNetworkLoadBalancerMetadata {
/// ID of the NetworkLoadBalancer resource that is being stopped.
#[prost(string, tag = "1")]
pub network_load_balancer_id: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AttachNetworkLoadBalancerTargetGroupRequest {
/// ID of the network load balancer to attach the target group to.
/// To get the network load balancer ID, use a \[NetworkLoadBalancerService.List\] request.
#[prost(string, tag = "1")]
pub network_load_balancer_id: ::prost::alloc::string::String,
/// ID of the attached target group to attach to the network load balancer.
/// To get the network load balancer ID, use a \[NetworkLoadBalancerService.List\] request.
#[prost(message, optional, tag = "2")]
pub attached_target_group: ::core::option::Option<AttachedTargetGroup>,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AttachNetworkLoadBalancerTargetGroupMetadata {
/// ID of the network load balancer that the target group is being attached to.
#[prost(string, tag = "1")]
pub network_load_balancer_id: ::prost::alloc::string::String,
/// ID of the target group.
#[prost(string, tag = "2")]
pub target_group_id: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DetachNetworkLoadBalancerTargetGroupRequest {
/// ID of the network load balancer to detach the target group from.
/// To get the network load balancer ID, use a \[NetworkLoadBalancerService.List\] request.
#[prost(string, tag = "1")]
pub network_load_balancer_id: ::prost::alloc::string::String,
/// ID of the target group.
#[prost(string, tag = "2")]
pub target_group_id: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DetachNetworkLoadBalancerTargetGroupMetadata {
/// ID of the network load balancer that the target group is being detached from.
#[prost(string, tag = "1")]
pub network_load_balancer_id: ::prost::alloc::string::String,
/// ID of the target group.
#[prost(string, tag = "2")]
pub target_group_id: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AddNetworkLoadBalancerListenerRequest {
/// ID of the network load balancer to add a listener to.
/// To get the network load balancer ID, use a \[NetworkLoadBalancerService.List\] request.
#[prost(string, tag = "1")]
pub network_load_balancer_id: ::prost::alloc::string::String,
/// Listener spec.
#[prost(message, optional, tag = "2")]
pub listener_spec: ::core::option::Option<ListenerSpec>,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AddNetworkLoadBalancerListenerMetadata {
/// ID of the network load balancer that the listener is being added to.
#[prost(string, tag = "1")]
pub network_load_balancer_id: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RemoveNetworkLoadBalancerListenerRequest {
/// ID of the network load balancer to remove the listener from.
/// To get the network load balancer ID, use a \[NetworkLoadBalancerService.List\] request.
#[prost(string, tag = "1")]
pub network_load_balancer_id: ::prost::alloc::string::String,
/// Name of the listener to delete.
#[prost(string, tag = "2")]
pub listener_name: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RemoveNetworkLoadBalancerListenerMetadata {
/// ID of the network load balancer that the listener is being removed from.
#[prost(string, tag = "1")]
pub network_load_balancer_id: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListNetworkLoadBalancerOperationsRequest {
/// ID of the NetworkLoadBalancer resource to list operations for.
#[prost(string, tag = "1")]
pub network_load_balancer_id: ::prost::alloc::string::String,
/// The maximum number of results per page that should be returned. If the number of available
/// results is larger than \[page_size\], the service returns a \[ListNetworkLoadBalancerOperationsResponse.next_page_token\]
/// that can be used to get the next page of results in subsequent list requests.
/// Default value: 100.
#[prost(int64, tag = "2")]
pub page_size: i64,
/// Page token. To get the next page of results, set \[page_token\] to the
/// \[ListNetworkLoadBalancerOperationsResponse.next_page_token\] returned by a previous list request.
#[prost(string, tag = "3")]
pub page_token: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListNetworkLoadBalancerOperationsResponse {
/// List of operations for the specified network load balancer.
#[prost(message, repeated, tag = "1")]
pub operations: ::prost::alloc::vec::Vec<super::super::operation::Operation>,
/// This token allows you to get the next page of results for list requests. If the number of results
/// is larger than \[ListNetworkLoadBalancerOperationsRequest.page_size\], use the \[next_page_token\] as the value
/// for the \[ListNetworkLoadBalancerOperationsRequest.page_token\] query parameter in the next list request.
/// Each subsequent list request will have its own \[next_page_token\] to continue paging through the results.
#[prost(string, tag = "2")]
pub next_page_token: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetTargetStatesRequest {
/// ID of the NetworkLoadBalancer resource with an attached target group.
#[prost(string, tag = "1")]
pub network_load_balancer_id: ::prost::alloc::string::String,
/// ID of the target group to get states of resources from.
#[prost(string, tag = "2")]
pub target_group_id: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetTargetStatesResponse {
/// List of states of targets within the target group that is specified in the \[GetTargetStatesRequest\] message.
#[prost(message, repeated, tag = "1")]
pub target_states: ::prost::alloc::vec::Vec<TargetState>,
}
/// External address specification that is used by \[ListenerSpec\].
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ExternalAddressSpec {
/// Public IP address for a listener.
/// If you provide a static public IP address for the \[NetworkLoadBalancerService.Update\]
/// method, it will replace the existing listener address.
#[prost(string, tag = "1")]
pub address: ::prost::alloc::string::String,
/// IP version.
#[prost(enumeration = "IpVersion", tag = "2")]
pub ip_version: i32,
}
/// Internal address specification that is used by \[ListenerSpec\].
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct InternalAddressSpec {
/// Internal IP address for a listener.
#[prost(string, tag = "1")]
pub address: ::prost::alloc::string::String,
/// ID of the subnet.
#[prost(string, tag = "2")]
pub subnet_id: ::prost::alloc::string::String,
/// IP version.
#[prost(enumeration = "IpVersion", tag = "3")]
pub ip_version: i32,
}
/// Listener specification that will be used by a network load balancer.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListenerSpec {
/// Name of the listener. The name must be unique for each listener on a single load balancer. 3-63 characters long.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Port for incoming traffic.
#[prost(int64, tag = "2")]
pub port: i64,
/// Protocol for incoming traffic.
#[prost(enumeration = "listener::Protocol", tag = "3")]
pub protocol: i32,
/// Port of a target.
/// Acceptable values are 1 to 65535, inclusive.
#[prost(int64, tag = "5")]
pub target_port: i64,
/// IP address for incoming traffic. Either the ID of the previously created address or the address specification.
#[prost(oneof = "listener_spec::Address", tags = "4, 6")]
pub address: ::core::option::Option<listener_spec::Address>,
}
/// Nested message and enum types in `ListenerSpec`.
pub mod listener_spec {
/// IP address for incoming traffic. Either the ID of the previously created address or the address specification.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Address {
/// External IP address specification.
#[prost(message, tag = "4")]
ExternalAddressSpec(super::ExternalAddressSpec),
/// Internal IP address specification.
#[prost(message, tag = "6")]
InternalAddressSpec(super::InternalAddressSpec),
}
}
/// Generated client implementations.
pub mod network_load_balancer_service_client {
#![allow(unused_variables, dead_code, missing_docs, clippy::let_unit_value)]
use tonic::codegen::*;
use tonic::codegen::http::Uri;
/// A set of methods for managing NetworkLoadBalancer resources.
#[derive(Debug, Clone)]
pub struct NetworkLoadBalancerServiceClient<T> {
inner: tonic::client::Grpc<T>,
}
impl NetworkLoadBalancerServiceClient<tonic::transport::Channel> {
/// Attempt to create a new client by connecting to a given endpoint.
pub async fn connect<D>(dst: D) -> Result<Self, tonic::transport::Error>
where
D: TryInto<tonic::transport::Endpoint>,
D::Error: Into<StdError>,
{
let conn = tonic::transport::Endpoint::new(dst)?.connect().await?;
Ok(Self::new(conn))
}
}
impl<T> NetworkLoadBalancerServiceClient<T>
where
T: tonic::client::GrpcService<tonic::body::BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + Send,
{
pub fn new(inner: T) -> Self {
let inner = tonic::client::Grpc::new(inner);
Self { inner }
}
pub fn with_origin(inner: T, origin: Uri) -> Self {
let inner = tonic::client::Grpc::with_origin(inner, origin);
Self { inner }
}
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> NetworkLoadBalancerServiceClient<InterceptedService<T, F>>
where
F: tonic::service::Interceptor,
T::ResponseBody: Default,
T: tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
Response = http::Response<
<T as tonic::client::GrpcService<tonic::body::BoxBody>>::ResponseBody,
>,
>,
<T as tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
>>::Error: Into<StdError> + Send + Sync,
{
NetworkLoadBalancerServiceClient::new(
InterceptedService::new(inner, interceptor),
)
}
/// Compress requests with the given encoding.
///
/// This requires the server to support it otherwise it might respond with an
/// error.
#[must_use]
pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.send_compressed(encoding);
self
}
/// Enable decompressing responses.
#[must_use]
pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.accept_compressed(encoding);
self
}
/// Limits the maximum size of a decoded message.
///
/// Default: `4MB`
#[must_use]
pub fn max_decoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_decoding_message_size(limit);
self
}
/// Limits the maximum size of an encoded message.
///
/// Default: `usize::MAX`
#[must_use]
pub fn max_encoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_encoding_message_size(limit);
self
}
/// Returns the specified NetworkLoadBalancer resource.
///
/// Get the list of available NetworkLoadBalancer resources by making a [List] request.
pub async fn get(
&mut self,
request: impl tonic::IntoRequest<super::GetNetworkLoadBalancerRequest>,
) -> std::result::Result<
tonic::Response<super::NetworkLoadBalancer>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/yandex.cloud.loadbalancer.v1.NetworkLoadBalancerService/Get",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"yandex.cloud.loadbalancer.v1.NetworkLoadBalancerService",
"Get",
),
);
self.inner.unary(req, path, codec).await
}
/// Retrieves the list of NetworkLoadBalancer resources in the specified folder.
pub async fn list(
&mut self,
request: impl tonic::IntoRequest<super::ListNetworkLoadBalancersRequest>,
) -> std::result::Result<
tonic::Response<super::ListNetworkLoadBalancersResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/yandex.cloud.loadbalancer.v1.NetworkLoadBalancerService/List",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"yandex.cloud.loadbalancer.v1.NetworkLoadBalancerService",
"List",
),
);
self.inner.unary(req, path, codec).await
}
/// Creates a network load balancer in the specified folder using the data specified in the request.
pub async fn create(
&mut self,
request: impl tonic::IntoRequest<super::CreateNetworkLoadBalancerRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::operation::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/yandex.cloud.loadbalancer.v1.NetworkLoadBalancerService/Create",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"yandex.cloud.loadbalancer.v1.NetworkLoadBalancerService",
"Create",
),
);
self.inner.unary(req, path, codec).await
}
/// Updates the specified network load balancer.
pub async fn update(
&mut self,
request: impl tonic::IntoRequest<super::UpdateNetworkLoadBalancerRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::operation::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/yandex.cloud.loadbalancer.v1.NetworkLoadBalancerService/Update",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"yandex.cloud.loadbalancer.v1.NetworkLoadBalancerService",
"Update",
),
);
self.inner.unary(req, path, codec).await
}
/// Deletes the specified network load balancer.
pub async fn delete(
&mut self,
request: impl tonic::IntoRequest<super::DeleteNetworkLoadBalancerRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::operation::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/yandex.cloud.loadbalancer.v1.NetworkLoadBalancerService/Delete",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"yandex.cloud.loadbalancer.v1.NetworkLoadBalancerService",
"Delete",
),
);
self.inner.unary(req, path, codec).await
}
/// Starts load balancing and health checking with the specified network load balancer with specified settings.
/// Changes network load balancer status to `` ACTIVE ``.
pub async fn start(
&mut self,
request: impl tonic::IntoRequest<super::StartNetworkLoadBalancerRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::operation::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/yandex.cloud.loadbalancer.v1.NetworkLoadBalancerService/Start",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"yandex.cloud.loadbalancer.v1.NetworkLoadBalancerService",
"Start",
),
);
self.inner.unary(req, path, codec).await
}
/// Stops load balancing and health checking with the specified network load balancer.
/// Changes load balancer status to `` STOPPED ``.
pub async fn stop(
&mut self,
request: impl tonic::IntoRequest<super::StopNetworkLoadBalancerRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::operation::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/yandex.cloud.loadbalancer.v1.NetworkLoadBalancerService/Stop",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"yandex.cloud.loadbalancer.v1.NetworkLoadBalancerService",
"Stop",
),
);
self.inner.unary(req, path, codec).await
}
/// Attaches a target group to the specified network load balancer.
pub async fn attach_target_group(
&mut self,
request: impl tonic::IntoRequest<
super::AttachNetworkLoadBalancerTargetGroupRequest,
>,
) -> std::result::Result<
tonic::Response<super::super::super::operation::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/yandex.cloud.loadbalancer.v1.NetworkLoadBalancerService/AttachTargetGroup",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"yandex.cloud.loadbalancer.v1.NetworkLoadBalancerService",
"AttachTargetGroup",
),
);
self.inner.unary(req, path, codec).await
}
/// Detaches the target group from the specified network load balancer.
pub async fn detach_target_group(
&mut self,
request: impl tonic::IntoRequest<
super::DetachNetworkLoadBalancerTargetGroupRequest,
>,
) -> std::result::Result<
tonic::Response<super::super::super::operation::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/yandex.cloud.loadbalancer.v1.NetworkLoadBalancerService/DetachTargetGroup",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"yandex.cloud.loadbalancer.v1.NetworkLoadBalancerService",
"DetachTargetGroup",
),
);
self.inner.unary(req, path, codec).await
}
/// Gets states of target resources in the attached target group.
pub async fn get_target_states(
&mut self,
request: impl tonic::IntoRequest<super::GetTargetStatesRequest>,
) -> std::result::Result<
tonic::Response<super::GetTargetStatesResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/yandex.cloud.loadbalancer.v1.NetworkLoadBalancerService/GetTargetStates",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"yandex.cloud.loadbalancer.v1.NetworkLoadBalancerService",
"GetTargetStates",
),
);
self.inner.unary(req, path, codec).await
}
/// Adds a listener to the specified network load balancer.
pub async fn add_listener(
&mut self,
request: impl tonic::IntoRequest<
super::AddNetworkLoadBalancerListenerRequest,
>,
) -> std::result::Result<
tonic::Response<super::super::super::operation::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/yandex.cloud.loadbalancer.v1.NetworkLoadBalancerService/AddListener",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"yandex.cloud.loadbalancer.v1.NetworkLoadBalancerService",
"AddListener",
),
);
self.inner.unary(req, path, codec).await
}
/// Removes the listener from the specified network load balancer.
pub async fn remove_listener(
&mut self,
request: impl tonic::IntoRequest<
super::RemoveNetworkLoadBalancerListenerRequest,
>,
) -> std::result::Result<
tonic::Response<super::super::super::operation::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/yandex.cloud.loadbalancer.v1.NetworkLoadBalancerService/RemoveListener",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"yandex.cloud.loadbalancer.v1.NetworkLoadBalancerService",
"RemoveListener",
),
);
self.inner.unary(req, path, codec).await
}
/// Lists operations for the specified network load balancer.
pub async fn list_operations(
&mut self,
request: impl tonic::IntoRequest<
super::ListNetworkLoadBalancerOperationsRequest,
>,
) -> std::result::Result<
tonic::Response<super::ListNetworkLoadBalancerOperationsResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/yandex.cloud.loadbalancer.v1.NetworkLoadBalancerService/ListOperations",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"yandex.cloud.loadbalancer.v1.NetworkLoadBalancerService",
"ListOperations",
),
);
self.inner.unary(req, path, codec).await
}
}
}
/// A TargetGroup resource. For more information, see [Target groups and resources](/docs/network-load-balancer/concepts/target-resources).
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TargetGroup {
/// Output only. ID of the target group.
#[prost(string, tag = "1")]
pub id: ::prost::alloc::string::String,
/// ID of the folder that the target group belongs to.
#[prost(string, tag = "2")]
pub folder_id: ::prost::alloc::string::String,
/// Output only. Creation timestamp in \[RFC3339\](<https://www.ietf.org/rfc/rfc3339.txt>) text format.
#[prost(message, optional, tag = "3")]
pub created_at: ::core::option::Option<::prost_types::Timestamp>,
/// Name of the target group.
/// The name is unique within the folder. 3-63 characters long.
#[prost(string, tag = "4")]
pub name: ::prost::alloc::string::String,
/// Description of the target group. 0-256 characters long.
#[prost(string, tag = "5")]
pub description: ::prost::alloc::string::String,
/// Resource labels as `` key:value `` pairs. Maximum of 64 per resource.
#[prost(map = "string, string", tag = "6")]
pub labels: ::std::collections::HashMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// ID of the region where the target group resides.
#[prost(string, tag = "7")]
pub region_id: ::prost::alloc::string::String,
/// A list of targets in the target group.
#[prost(message, repeated, tag = "9")]
pub targets: ::prost::alloc::vec::Vec<Target>,
}
/// A Target resource. For more information, see [Target groups and resources](/docs/network-load-balancer/concepts/target-resources).
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Target {
/// ID of the subnet that targets are connected to.
/// All targets in the target group must be connected to the same subnet within a single availability zone.
#[prost(string, tag = "1")]
pub subnet_id: ::prost::alloc::string::String,
/// IP address of the target.
#[prost(string, tag = "2")]
pub address: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetTargetGroupRequest {
/// ID of the TargetGroup resource to return.
/// To get the target group ID, use a \[TargetGroupService.List\] request.
#[prost(string, tag = "1")]
pub target_group_id: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListTargetGroupsRequest {
/// ID of the folder to list target groups in.
/// To get the folder ID, use a \[TargetGroupService.List\] request.
#[prost(string, tag = "1")]
pub folder_id: ::prost::alloc::string::String,
/// The maximum number of results per page to return. If the number of available
/// results is larger than \[page_size\],
/// the service returns a \[ListTargetGroupsResponse.next_page_token\]
/// that can be used to get the next page of results in subsequent list requests.
/// Default value: 100.
#[prost(int64, tag = "2")]
pub page_size: i64,
/// Page token. To get the next page of results, set \[page_token\] to the
/// \[ListTargetGroupsResponse.next_page_token\] returned by a previous list request.
#[prost(string, tag = "3")]
pub page_token: ::prost::alloc::string::String,
/// A filter expression that filters resources listed in the response.
/// The expression must specify:
/// 1. The field name. Currently you can only filter by the \[TargetGroup.name\] field.
/// 2. An `=` operator.
/// 3. The value in double quotes (`"`). Must be 3-63 characters long and match the regular expression `\[a-z][-a-z0-9]{1,61}[a-z0-9\]`.
#[prost(string, tag = "4")]
pub filter: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListTargetGroupsResponse {
/// List of TargetGroup resources.
#[prost(message, repeated, tag = "1")]
pub target_groups: ::prost::alloc::vec::Vec<TargetGroup>,
/// This token allows you to get the next page of results for list requests. If the number of results
/// is larger than \[ListTargetGroupsRequest.page_size\], use
/// the \[next_page_token\] as the value
/// for the \[ListTargetGroupsRequest.page_token\] query parameter
/// in the next list request. Each subsequent list request will have its own
/// \[next_page_token\] to continue paging through the results.
#[prost(string, tag = "2")]
pub next_page_token: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateTargetGroupRequest {
/// ID of the folder to list target groups in.
/// To get the folder ID, use a \[TargetGroupService.List\] request.
#[prost(string, tag = "1")]
pub folder_id: ::prost::alloc::string::String,
/// Name of the target group.
/// The name must be unique within the folder.
#[prost(string, tag = "2")]
pub name: ::prost::alloc::string::String,
/// Description of the target group.
#[prost(string, tag = "3")]
pub description: ::prost::alloc::string::String,
/// Resource labels as `` key:value `` pairs.
#[prost(map = "string, string", tag = "4")]
pub labels: ::std::collections::HashMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// ID of the availability zone where the target group resides.
#[prost(string, tag = "5")]
pub region_id: ::prost::alloc::string::String,
/// List of targets within the target group.
#[prost(message, repeated, tag = "7")]
pub targets: ::prost::alloc::vec::Vec<Target>,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateTargetGroupMetadata {
/// ID of the target group that is being created.
#[prost(string, tag = "1")]
pub target_group_id: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateTargetGroupRequest {
/// ID of the TargetGroup resource to update.
/// To get the target group ID, use a \[TargetGroupService.List\] request.
#[prost(string, tag = "1")]
pub target_group_id: ::prost::alloc::string::String,
/// Field mask that specifies which fields of the TargetGroup resource are going to be updated.
#[prost(message, optional, tag = "2")]
pub update_mask: ::core::option::Option<::prost_types::FieldMask>,
/// Name of the target group.
/// The name must be unique within the folder.
#[prost(string, tag = "3")]
pub name: ::prost::alloc::string::String,
/// Description of the target group.
#[prost(string, tag = "4")]
pub description: ::prost::alloc::string::String,
/// Resource labels as `` key:value `` pairs.
///
/// The existing set of `` labels `` is completely replaced with the provided set.
#[prost(map = "string, string", tag = "5")]
pub labels: ::std::collections::HashMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// A new list of targets for this target group.
#[prost(message, repeated, tag = "6")]
pub targets: ::prost::alloc::vec::Vec<Target>,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateTargetGroupMetadata {
/// ID of the target group that is being updated.
#[prost(string, tag = "1")]
pub target_group_id: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeleteTargetGroupRequest {
/// ID of the target group to delete.
/// To get the target group ID, use a \[TargetGroupService.List\] request.
#[prost(string, tag = "1")]
pub target_group_id: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeleteTargetGroupMetadata {
/// ID of the target group that is being deleted.
#[prost(string, tag = "1")]
pub target_group_id: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AddTargetsRequest {
/// ID of the TargetGroup resource to add targets to.
/// To get the target group ID, use a \[TargetGroupService.List\] request.
#[prost(string, tag = "1")]
pub target_group_id: ::prost::alloc::string::String,
/// List of targets to add to the target group.
#[prost(message, repeated, tag = "2")]
pub targets: ::prost::alloc::vec::Vec<Target>,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AddTargetsMetadata {
/// ID of the target group that targets are being added to.
#[prost(string, tag = "1")]
pub target_group_id: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RemoveTargetsRequest {
/// ID of the target group to remove targets from.
/// To get the target group ID, use a \[TargetGroupService.List\] request.
#[prost(string, tag = "1")]
pub target_group_id: ::prost::alloc::string::String,
/// List of targets to remove from the target group.
#[prost(message, repeated, tag = "2")]
pub targets: ::prost::alloc::vec::Vec<Target>,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RemoveTargetsMetadata {
/// ID of the target group that targets are being removed from.
#[prost(string, tag = "1")]
pub target_group_id: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListTargetGroupOperationsRequest {
/// ID of the TargetGroup resource to update.
/// To get the target group ID, use a \[TargetGroupService.List\] request.
#[prost(string, tag = "1")]
pub target_group_id: ::prost::alloc::string::String,
/// The maximum number of results per page that should be returned. If the number of available
/// results is larger than \[page_size\], the service returns a \[ListTargetGroupOperationsResponse.next_page_token\]
/// that can be used to get the next page of results in subsequent list requests.
/// Default value: 100.
#[prost(int64, tag = "2")]
pub page_size: i64,
/// Page token. To get the next page of results, set \[page_token\] to the
/// \[ListTargetGroupOperationsResponse.next_page_token\] returned by a previous list request.
#[prost(string, tag = "3")]
pub page_token: ::prost::alloc::string::String,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListTargetGroupOperationsResponse {
/// List of operations for the specified target group.
#[prost(message, repeated, tag = "1")]
pub operations: ::prost::alloc::vec::Vec<super::super::operation::Operation>,
/// This token allows you to get the next page of results for list requests. If the number of results
/// is larger than \[ListTargetGroupOperationsRequest.page_size\], use the \[next_page_token\] as the value
/// for the \[ListTargetGroupOperationsRequest.page_token\] query parameter in the next list request.
/// Each subsequent list request will have its own \[next_page_token\] to continue paging through the results.
#[prost(string, tag = "2")]
pub next_page_token: ::prost::alloc::string::String,
}
/// Generated client implementations.
pub mod target_group_service_client {
#![allow(unused_variables, dead_code, missing_docs, clippy::let_unit_value)]
use tonic::codegen::*;
use tonic::codegen::http::Uri;
/// A set of methods for managing TargetGroup resources.
#[derive(Debug, Clone)]
pub struct TargetGroupServiceClient<T> {
inner: tonic::client::Grpc<T>,
}
impl TargetGroupServiceClient<tonic::transport::Channel> {
/// Attempt to create a new client by connecting to a given endpoint.
pub async fn connect<D>(dst: D) -> Result<Self, tonic::transport::Error>
where
D: TryInto<tonic::transport::Endpoint>,
D::Error: Into<StdError>,
{
let conn = tonic::transport::Endpoint::new(dst)?.connect().await?;
Ok(Self::new(conn))
}
}
impl<T> TargetGroupServiceClient<T>
where
T: tonic::client::GrpcService<tonic::body::BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + Send,
{
pub fn new(inner: T) -> Self {
let inner = tonic::client::Grpc::new(inner);
Self { inner }
}
pub fn with_origin(inner: T, origin: Uri) -> Self {
let inner = tonic::client::Grpc::with_origin(inner, origin);
Self { inner }
}
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> TargetGroupServiceClient<InterceptedService<T, F>>
where
F: tonic::service::Interceptor,
T::ResponseBody: Default,
T: tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
Response = http::Response<
<T as tonic::client::GrpcService<tonic::body::BoxBody>>::ResponseBody,
>,
>,
<T as tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
>>::Error: Into<StdError> + Send + Sync,
{
TargetGroupServiceClient::new(InterceptedService::new(inner, interceptor))
}
/// Compress requests with the given encoding.
///
/// This requires the server to support it otherwise it might respond with an
/// error.
#[must_use]
pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.send_compressed(encoding);
self
}
/// Enable decompressing responses.
#[must_use]
pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.accept_compressed(encoding);
self
}
/// Limits the maximum size of a decoded message.
///
/// Default: `4MB`
#[must_use]
pub fn max_decoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_decoding_message_size(limit);
self
}
/// Limits the maximum size of an encoded message.
///
/// Default: `usize::MAX`
#[must_use]
pub fn max_encoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_encoding_message_size(limit);
self
}
/// Returns the specified TargetGroup resource.
pub async fn get(
&mut self,
request: impl tonic::IntoRequest<super::GetTargetGroupRequest>,
) -> std::result::Result<tonic::Response<super::TargetGroup>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/yandex.cloud.loadbalancer.v1.TargetGroupService/Get",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"yandex.cloud.loadbalancer.v1.TargetGroupService",
"Get",
),
);
self.inner.unary(req, path, codec).await
}
/// Retrieves the list of TargetGroup resources in the specified folder.
pub async fn list(
&mut self,
request: impl tonic::IntoRequest<super::ListTargetGroupsRequest>,
) -> std::result::Result<
tonic::Response<super::ListTargetGroupsResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/yandex.cloud.loadbalancer.v1.TargetGroupService/List",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"yandex.cloud.loadbalancer.v1.TargetGroupService",
"List",
),
);
self.inner.unary(req, path, codec).await
}
/// Creates a target group in the specified folder and adds the specified targets to it.
pub async fn create(
&mut self,
request: impl tonic::IntoRequest<super::CreateTargetGroupRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::operation::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/yandex.cloud.loadbalancer.v1.TargetGroupService/Create",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"yandex.cloud.loadbalancer.v1.TargetGroupService",
"Create",
),
);
self.inner.unary(req, path, codec).await
}
/// Updates the specified target group.
pub async fn update(
&mut self,
request: impl tonic::IntoRequest<super::UpdateTargetGroupRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::operation::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/yandex.cloud.loadbalancer.v1.TargetGroupService/Update",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"yandex.cloud.loadbalancer.v1.TargetGroupService",
"Update",
),
);
self.inner.unary(req, path, codec).await
}
/// Deletes the specified target group.
pub async fn delete(
&mut self,
request: impl tonic::IntoRequest<super::DeleteTargetGroupRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::operation::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/yandex.cloud.loadbalancer.v1.TargetGroupService/Delete",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"yandex.cloud.loadbalancer.v1.TargetGroupService",
"Delete",
),
);
self.inner.unary(req, path, codec).await
}
/// Adds targets to the target group.
pub async fn add_targets(
&mut self,
request: impl tonic::IntoRequest<super::AddTargetsRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::operation::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/yandex.cloud.loadbalancer.v1.TargetGroupService/AddTargets",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"yandex.cloud.loadbalancer.v1.TargetGroupService",
"AddTargets",
),
);
self.inner.unary(req, path, codec).await
}
/// Removes targets from the target group.
pub async fn remove_targets(
&mut self,
request: impl tonic::IntoRequest<super::RemoveTargetsRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::operation::Operation>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/yandex.cloud.loadbalancer.v1.TargetGroupService/RemoveTargets",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"yandex.cloud.loadbalancer.v1.TargetGroupService",
"RemoveTargets",
),
);
self.inner.unary(req, path, codec).await
}
/// Lists operations for the specified target group.
pub async fn list_operations(
&mut self,
request: impl tonic::IntoRequest<super::ListTargetGroupOperationsRequest>,
) -> std::result::Result<
tonic::Response<super::ListTargetGroupOperationsResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/yandex.cloud.loadbalancer.v1.TargetGroupService/ListOperations",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"yandex.cloud.loadbalancer.v1.TargetGroupService",
"ListOperations",
),
);
self.inner.unary(req, path, codec).await
}
}
}