google-cloud-baremetalsolution-v2 1.8.0

Google Cloud Client Libraries for Rust - Bare Metal Solution API
Documentation
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
// Copyright 2025 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::redundant_explicit_links)]
#![allow(rustdoc::broken_intra_doc_links)]

/// Implements a client for the Bare Metal Solution API.
///
/// # Example
/// ```
/// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
/// use google_cloud_gax::paginator::ItemPaginator as _;
/// # async fn sample() -> Result<(), Box<dyn std::error::Error>> {
///     let client = BareMetalSolution::builder().build().await?;
///     let parent = "parent_value";
///     let mut list = client.list_instances()
///         .set_parent(parent)
///         .by_item();
///     while let Some(item) = list.next().await.transpose()? {
///         println!("{:?}", item);
///     }
/// # Ok(()) }
/// ```
///
/// # Service Description
///
/// Performs management operations on Bare Metal Solution servers.
///
/// The `baremetalsolution.googleapis.com` service provides management
/// capabilities for Bare Metal Solution servers. To access the API methods, you
/// must assign Bare Metal Solution IAM roles containing the desired permissions
/// to your staff in your Google Cloud project. You must also enable the Bare
/// Metal Solution API. Once enabled, the methods act
/// upon specific servers in your Bare Metal Solution environment.
///
/// # Configuration
///
/// To configure `BareMetalSolution` use the `with_*` methods in the type returned
/// by [builder()][BareMetalSolution::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://baremetalsolution.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::bare_metal_solution::ClientBuilder::with_endpoint
/// [with_credentials()]: super::builder::bare_metal_solution::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
///
/// `BareMetalSolution` holds a connection pool internally, it is advised to
/// create one and reuse it. You do not need to wrap `BareMetalSolution` 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 BareMetalSolution {
    inner: std::sync::Arc<dyn super::stub::dynamic::BareMetalSolution>,
}

impl BareMetalSolution {
    /// Returns a builder for [BareMetalSolution].
    ///
    /// ```
    /// # async fn sample() -> google_cloud_gax::client_builder::Result<()> {
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// let client = BareMetalSolution::builder().build().await?;
    /// # Ok(()) }
    /// ```
    pub fn builder() -> super::builder::bare_metal_solution::ClientBuilder {
        crate::new_client_builder(super::builder::bare_metal_solution::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: T) -> Self
    where
        T: super::stub::BareMetalSolution + 'static,
    {
        Self {
            inner: std::sync::Arc::new(stub),
        }
    }

    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::BareMetalSolution>>
    {
        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::BareMetalSolution> {
        super::transport::BareMetalSolution::new(conf).await
    }

    async fn build_with_tracing(
        conf: gaxi::options::ClientConfig,
    ) -> crate::ClientBuilderResult<impl super::stub::BareMetalSolution> {
        Self::build_transport(conf)
            .await
            .map(super::tracing::BareMetalSolution::new)
    }

    /// List servers in a given project and location.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_gax::paginator::ItemPaginator as _;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution, parent: &str
    /// ) -> Result<()> {
    ///     let mut list = client.list_instances()
    ///         .set_parent(parent)
    ///         .by_item();
    ///     while let Some(item) = list.next().await.transpose()? {
    ///         println!("{:?}", item);
    ///     }
    ///     Ok(())
    /// }
    /// ```
    pub fn list_instances(&self) -> super::builder::bare_metal_solution::ListInstances {
        super::builder::bare_metal_solution::ListInstances::new(self.inner.clone())
    }

    /// Get details about a single server.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution, name: &str
    /// ) -> Result<()> {
    ///     let response = client.get_instance()
    ///         .set_name(name)
    ///         .send().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn get_instance(&self) -> super::builder::bare_metal_solution::GetInstance {
        super::builder::bare_metal_solution::GetInstance::new(self.inner.clone())
    }

    /// Update details of a single server.
    ///
    /// # Long running operations
    ///
    /// This method is used to start, and/or poll a [long-running Operation].
    /// The [Working with long-running operations] chapter in the [user guide]
    /// covers these operations in detail.
    ///
    /// [long-running operation]: https://google.aip.dev/151
    /// [user guide]: https://googleapis.github.io/google-cloud-rust/
    /// [working with long-running operations]: https://googleapis.github.io/google-cloud-rust/working_with_long_running_operations.html
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_lro::Poller;
    /// # extern crate wkt as google_cloud_wkt;
    /// use google_cloud_wkt::FieldMask;
    /// use google_cloud_baremetalsolution_v2::model::Instance;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution, name: &str
    /// ) -> Result<()> {
    ///     let response = client.update_instance()
    ///         .set_instance(
    ///             Instance::new().set_name(name)/* set fields */
    ///         )
    ///         .set_update_mask(FieldMask::default().set_paths(["updated.field.path1", "updated.field.path2"]))
    ///         .poller().until_done().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn update_instance(&self) -> super::builder::bare_metal_solution::UpdateInstance {
        super::builder::bare_metal_solution::UpdateInstance::new(self.inner.clone())
    }

    /// RenameInstance sets a new name for an instance.
    /// Use with caution, previous names become immediately invalidated.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution
    /// ) -> Result<()> {
    ///     let response = client.rename_instance()
    ///         /* set fields */
    ///         .send().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn rename_instance(&self) -> super::builder::bare_metal_solution::RenameInstance {
        super::builder::bare_metal_solution::RenameInstance::new(self.inner.clone())
    }

    /// Perform an ungraceful, hard reset on a server. Equivalent to shutting the
    /// power off and then turning it back on.
    ///
    /// # Long running operations
    ///
    /// This method is used to start, and/or poll a [long-running Operation].
    /// The [Working with long-running operations] chapter in the [user guide]
    /// covers these operations in detail.
    ///
    /// [long-running operation]: https://google.aip.dev/151
    /// [user guide]: https://googleapis.github.io/google-cloud-rust/
    /// [working with long-running operations]: https://googleapis.github.io/google-cloud-rust/working_with_long_running_operations.html
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_lro::Poller;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution
    /// ) -> Result<()> {
    ///     let response = client.reset_instance()
    ///         /* set fields */
    ///         .poller().until_done().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn reset_instance(&self) -> super::builder::bare_metal_solution::ResetInstance {
        super::builder::bare_metal_solution::ResetInstance::new(self.inner.clone())
    }

    /// Starts a server that was shutdown.
    ///
    /// # Long running operations
    ///
    /// This method is used to start, and/or poll a [long-running Operation].
    /// The [Working with long-running operations] chapter in the [user guide]
    /// covers these operations in detail.
    ///
    /// [long-running operation]: https://google.aip.dev/151
    /// [user guide]: https://googleapis.github.io/google-cloud-rust/
    /// [working with long-running operations]: https://googleapis.github.io/google-cloud-rust/working_with_long_running_operations.html
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_lro::Poller;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution
    /// ) -> Result<()> {
    ///     let response = client.start_instance()
    ///         /* set fields */
    ///         .poller().until_done().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn start_instance(&self) -> super::builder::bare_metal_solution::StartInstance {
        super::builder::bare_metal_solution::StartInstance::new(self.inner.clone())
    }

    /// Stop a running server.
    ///
    /// # Long running operations
    ///
    /// This method is used to start, and/or poll a [long-running Operation].
    /// The [Working with long-running operations] chapter in the [user guide]
    /// covers these operations in detail.
    ///
    /// [long-running operation]: https://google.aip.dev/151
    /// [user guide]: https://googleapis.github.io/google-cloud-rust/
    /// [working with long-running operations]: https://googleapis.github.io/google-cloud-rust/working_with_long_running_operations.html
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_lro::Poller;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution
    /// ) -> Result<()> {
    ///     let response = client.stop_instance()
    ///         /* set fields */
    ///         .poller().until_done().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn stop_instance(&self) -> super::builder::bare_metal_solution::StopInstance {
        super::builder::bare_metal_solution::StopInstance::new(self.inner.clone())
    }

    /// Enable the interactive serial console feature on an instance.
    ///
    /// # Long running operations
    ///
    /// This method is used to start, and/or poll a [long-running Operation].
    /// The [Working with long-running operations] chapter in the [user guide]
    /// covers these operations in detail.
    ///
    /// [long-running operation]: https://google.aip.dev/151
    /// [user guide]: https://googleapis.github.io/google-cloud-rust/
    /// [working with long-running operations]: https://googleapis.github.io/google-cloud-rust/working_with_long_running_operations.html
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_lro::Poller;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution
    /// ) -> Result<()> {
    ///     let response = client.enable_interactive_serial_console()
    ///         /* set fields */
    ///         .poller().until_done().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn enable_interactive_serial_console(
        &self,
    ) -> super::builder::bare_metal_solution::EnableInteractiveSerialConsole {
        super::builder::bare_metal_solution::EnableInteractiveSerialConsole::new(self.inner.clone())
    }

    /// Disable the interactive serial console feature on an instance.
    ///
    /// # Long running operations
    ///
    /// This method is used to start, and/or poll a [long-running Operation].
    /// The [Working with long-running operations] chapter in the [user guide]
    /// covers these operations in detail.
    ///
    /// [long-running operation]: https://google.aip.dev/151
    /// [user guide]: https://googleapis.github.io/google-cloud-rust/
    /// [working with long-running operations]: https://googleapis.github.io/google-cloud-rust/working_with_long_running_operations.html
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_lro::Poller;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution
    /// ) -> Result<()> {
    ///     let response = client.disable_interactive_serial_console()
    ///         /* set fields */
    ///         .poller().until_done().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn disable_interactive_serial_console(
        &self,
    ) -> super::builder::bare_metal_solution::DisableInteractiveSerialConsole {
        super::builder::bare_metal_solution::DisableInteractiveSerialConsole::new(
            self.inner.clone(),
        )
    }

    /// Detach LUN from Instance.
    ///
    /// # Long running operations
    ///
    /// This method is used to start, and/or poll a [long-running Operation].
    /// The [Working with long-running operations] chapter in the [user guide]
    /// covers these operations in detail.
    ///
    /// [long-running operation]: https://google.aip.dev/151
    /// [user guide]: https://googleapis.github.io/google-cloud-rust/
    /// [working with long-running operations]: https://googleapis.github.io/google-cloud-rust/working_with_long_running_operations.html
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_lro::Poller;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution
    /// ) -> Result<()> {
    ///     let response = client.detach_lun()
    ///         /* set fields */
    ///         .poller().until_done().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn detach_lun(&self) -> super::builder::bare_metal_solution::DetachLun {
        super::builder::bare_metal_solution::DetachLun::new(self.inner.clone())
    }

    /// Lists the public SSH keys registered for the specified project.
    /// These SSH keys are used only for the interactive serial console feature.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_gax::paginator::ItemPaginator as _;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution, parent: &str
    /// ) -> Result<()> {
    ///     let mut list = client.list_ssh_keys()
    ///         .set_parent(parent)
    ///         .by_item();
    ///     while let Some(item) = list.next().await.transpose()? {
    ///         println!("{:?}", item);
    ///     }
    ///     Ok(())
    /// }
    /// ```
    pub fn list_ssh_keys(&self) -> super::builder::bare_metal_solution::ListSSHKeys {
        super::builder::bare_metal_solution::ListSSHKeys::new(self.inner.clone())
    }

    /// Register a public SSH key in the specified project for use with the
    /// interactive serial console feature.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_baremetalsolution_v2::model::SSHKey;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution, parent: &str
    /// ) -> Result<()> {
    ///     let response = client.create_ssh_key()
    ///         .set_parent(parent)
    ///         .set_ssh_key(
    ///             SSHKey::new()/* set fields */
    ///         )
    ///         .send().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn create_ssh_key(&self) -> super::builder::bare_metal_solution::CreateSSHKey {
        super::builder::bare_metal_solution::CreateSSHKey::new(self.inner.clone())
    }

    /// Deletes a public SSH key registered in the specified project.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution, name: &str
    /// ) -> Result<()> {
    ///     client.delete_ssh_key()
    ///         .set_name(name)
    ///         .send().await?;
    ///     Ok(())
    /// }
    /// ```
    pub fn delete_ssh_key(&self) -> super::builder::bare_metal_solution::DeleteSSHKey {
        super::builder::bare_metal_solution::DeleteSSHKey::new(self.inner.clone())
    }

    /// List storage volumes in a given project and location.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_gax::paginator::ItemPaginator as _;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution, parent: &str
    /// ) -> Result<()> {
    ///     let mut list = client.list_volumes()
    ///         .set_parent(parent)
    ///         .by_item();
    ///     while let Some(item) = list.next().await.transpose()? {
    ///         println!("{:?}", item);
    ///     }
    ///     Ok(())
    /// }
    /// ```
    pub fn list_volumes(&self) -> super::builder::bare_metal_solution::ListVolumes {
        super::builder::bare_metal_solution::ListVolumes::new(self.inner.clone())
    }

    /// Get details of a single storage volume.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution, name: &str
    /// ) -> Result<()> {
    ///     let response = client.get_volume()
    ///         .set_name(name)
    ///         .send().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn get_volume(&self) -> super::builder::bare_metal_solution::GetVolume {
        super::builder::bare_metal_solution::GetVolume::new(self.inner.clone())
    }

    /// Update details of a single storage volume.
    ///
    /// # Long running operations
    ///
    /// This method is used to start, and/or poll a [long-running Operation].
    /// The [Working with long-running operations] chapter in the [user guide]
    /// covers these operations in detail.
    ///
    /// [long-running operation]: https://google.aip.dev/151
    /// [user guide]: https://googleapis.github.io/google-cloud-rust/
    /// [working with long-running operations]: https://googleapis.github.io/google-cloud-rust/working_with_long_running_operations.html
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_lro::Poller;
    /// # extern crate wkt as google_cloud_wkt;
    /// use google_cloud_wkt::FieldMask;
    /// use google_cloud_baremetalsolution_v2::model::Volume;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution, name: &str
    /// ) -> Result<()> {
    ///     let response = client.update_volume()
    ///         .set_volume(
    ///             Volume::new().set_name(name)/* set fields */
    ///         )
    ///         .set_update_mask(FieldMask::default().set_paths(["updated.field.path1", "updated.field.path2"]))
    ///         .poller().until_done().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn update_volume(&self) -> super::builder::bare_metal_solution::UpdateVolume {
        super::builder::bare_metal_solution::UpdateVolume::new(self.inner.clone())
    }

    /// RenameVolume sets a new name for a volume.
    /// Use with caution, previous names become immediately invalidated.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution
    /// ) -> Result<()> {
    ///     let response = client.rename_volume()
    ///         /* set fields */
    ///         .send().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn rename_volume(&self) -> super::builder::bare_metal_solution::RenameVolume {
        super::builder::bare_metal_solution::RenameVolume::new(self.inner.clone())
    }

    /// Skips volume's cooloff and deletes it now.
    /// Volume must be in cooloff state.
    ///
    /// # Long running operations
    ///
    /// This method is used to start, and/or poll a [long-running Operation].
    /// The [Working with long-running operations] chapter in the [user guide]
    /// covers these operations in detail.
    ///
    /// [long-running operation]: https://google.aip.dev/151
    /// [user guide]: https://googleapis.github.io/google-cloud-rust/
    /// [working with long-running operations]: https://googleapis.github.io/google-cloud-rust/working_with_long_running_operations.html
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_lro::Poller;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution
    /// ) -> Result<()> {
    ///     client.evict_volume()
    ///         /* set fields */
    ///         .poller().until_done().await?;
    ///     Ok(())
    /// }
    /// ```
    pub fn evict_volume(&self) -> super::builder::bare_metal_solution::EvictVolume {
        super::builder::bare_metal_solution::EvictVolume::new(self.inner.clone())
    }

    /// Emergency Volume resize.
    ///
    /// # Long running operations
    ///
    /// This method is used to start, and/or poll a [long-running Operation].
    /// The [Working with long-running operations] chapter in the [user guide]
    /// covers these operations in detail.
    ///
    /// [long-running operation]: https://google.aip.dev/151
    /// [user guide]: https://googleapis.github.io/google-cloud-rust/
    /// [working with long-running operations]: https://googleapis.github.io/google-cloud-rust/working_with_long_running_operations.html
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_lro::Poller;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution
    /// ) -> Result<()> {
    ///     let response = client.resize_volume()
    ///         /* set fields */
    ///         .poller().until_done().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn resize_volume(&self) -> super::builder::bare_metal_solution::ResizeVolume {
        super::builder::bare_metal_solution::ResizeVolume::new(self.inner.clone())
    }

    /// List network in a given project and location.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_gax::paginator::ItemPaginator as _;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution, parent: &str
    /// ) -> Result<()> {
    ///     let mut list = client.list_networks()
    ///         .set_parent(parent)
    ///         .by_item();
    ///     while let Some(item) = list.next().await.transpose()? {
    ///         println!("{:?}", item);
    ///     }
    ///     Ok(())
    /// }
    /// ```
    pub fn list_networks(&self) -> super::builder::bare_metal_solution::ListNetworks {
        super::builder::bare_metal_solution::ListNetworks::new(self.inner.clone())
    }

    /// List all Networks (and used IPs for each Network) in the vendor account
    /// associated with the specified project.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution
    /// ) -> Result<()> {
    ///     let response = client.list_network_usage()
    ///         /* set fields */
    ///         .send().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn list_network_usage(&self) -> super::builder::bare_metal_solution::ListNetworkUsage {
        super::builder::bare_metal_solution::ListNetworkUsage::new(self.inner.clone())
    }

    /// Get details of a single network.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution, name: &str
    /// ) -> Result<()> {
    ///     let response = client.get_network()
    ///         .set_name(name)
    ///         .send().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn get_network(&self) -> super::builder::bare_metal_solution::GetNetwork {
        super::builder::bare_metal_solution::GetNetwork::new(self.inner.clone())
    }

    /// Update details of a single network.
    ///
    /// # Long running operations
    ///
    /// This method is used to start, and/or poll a [long-running Operation].
    /// The [Working with long-running operations] chapter in the [user guide]
    /// covers these operations in detail.
    ///
    /// [long-running operation]: https://google.aip.dev/151
    /// [user guide]: https://googleapis.github.io/google-cloud-rust/
    /// [working with long-running operations]: https://googleapis.github.io/google-cloud-rust/working_with_long_running_operations.html
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_lro::Poller;
    /// # extern crate wkt as google_cloud_wkt;
    /// use google_cloud_wkt::FieldMask;
    /// use google_cloud_baremetalsolution_v2::model::Network;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution, name: &str
    /// ) -> Result<()> {
    ///     let response = client.update_network()
    ///         .set_network(
    ///             Network::new().set_name(name)/* set fields */
    ///         )
    ///         .set_update_mask(FieldMask::default().set_paths(["updated.field.path1", "updated.field.path2"]))
    ///         .poller().until_done().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn update_network(&self) -> super::builder::bare_metal_solution::UpdateNetwork {
        super::builder::bare_metal_solution::UpdateNetwork::new(self.inner.clone())
    }

    /// Takes a snapshot of a boot volume.
    /// Returns INVALID_ARGUMENT if called for a non-boot volume.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_baremetalsolution_v2::model::VolumeSnapshot;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution, parent: &str
    /// ) -> Result<()> {
    ///     let response = client.create_volume_snapshot()
    ///         .set_parent(parent)
    ///         .set_volume_snapshot(
    ///             VolumeSnapshot::new()/* set fields */
    ///         )
    ///         .send().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn create_volume_snapshot(
        &self,
    ) -> super::builder::bare_metal_solution::CreateVolumeSnapshot {
        super::builder::bare_metal_solution::CreateVolumeSnapshot::new(self.inner.clone())
    }

    /// Uses the specified snapshot to restore its parent volume.
    /// Returns INVALID_ARGUMENT if called for a non-boot volume.
    ///
    /// # Long running operations
    ///
    /// This method is used to start, and/or poll a [long-running Operation].
    /// The [Working with long-running operations] chapter in the [user guide]
    /// covers these operations in detail.
    ///
    /// [long-running operation]: https://google.aip.dev/151
    /// [user guide]: https://googleapis.github.io/google-cloud-rust/
    /// [working with long-running operations]: https://googleapis.github.io/google-cloud-rust/working_with_long_running_operations.html
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_lro::Poller;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution
    /// ) -> Result<()> {
    ///     let response = client.restore_volume_snapshot()
    ///         /* set fields */
    ///         .poller().until_done().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn restore_volume_snapshot(
        &self,
    ) -> super::builder::bare_metal_solution::RestoreVolumeSnapshot {
        super::builder::bare_metal_solution::RestoreVolumeSnapshot::new(self.inner.clone())
    }

    /// Deletes a volume snapshot.
    /// Returns INVALID_ARGUMENT if called for a non-boot volume.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution, name: &str
    /// ) -> Result<()> {
    ///     client.delete_volume_snapshot()
    ///         .set_name(name)
    ///         .send().await?;
    ///     Ok(())
    /// }
    /// ```
    pub fn delete_volume_snapshot(
        &self,
    ) -> super::builder::bare_metal_solution::DeleteVolumeSnapshot {
        super::builder::bare_metal_solution::DeleteVolumeSnapshot::new(self.inner.clone())
    }

    /// Returns the specified snapshot resource.
    /// Returns INVALID_ARGUMENT if called for a non-boot volume.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution, name: &str
    /// ) -> Result<()> {
    ///     let response = client.get_volume_snapshot()
    ///         .set_name(name)
    ///         .send().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn get_volume_snapshot(&self) -> super::builder::bare_metal_solution::GetVolumeSnapshot {
        super::builder::bare_metal_solution::GetVolumeSnapshot::new(self.inner.clone())
    }

    /// Retrieves the list of snapshots for the specified volume.
    /// Returns a response with an empty list of snapshots if called
    /// for a non-boot volume.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_gax::paginator::ItemPaginator as _;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution, parent: &str
    /// ) -> Result<()> {
    ///     let mut list = client.list_volume_snapshots()
    ///         .set_parent(parent)
    ///         .by_item();
    ///     while let Some(item) = list.next().await.transpose()? {
    ///         println!("{:?}", item);
    ///     }
    ///     Ok(())
    /// }
    /// ```
    pub fn list_volume_snapshots(
        &self,
    ) -> super::builder::bare_metal_solution::ListVolumeSnapshots {
        super::builder::bare_metal_solution::ListVolumeSnapshots::new(self.inner.clone())
    }

    /// Get details of a single storage logical unit number(LUN).
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution, name: &str
    /// ) -> Result<()> {
    ///     let response = client.get_lun()
    ///         .set_name(name)
    ///         .send().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn get_lun(&self) -> super::builder::bare_metal_solution::GetLun {
        super::builder::bare_metal_solution::GetLun::new(self.inner.clone())
    }

    /// List storage volume luns for given storage volume.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_gax::paginator::ItemPaginator as _;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution, parent: &str
    /// ) -> Result<()> {
    ///     let mut list = client.list_luns()
    ///         .set_parent(parent)
    ///         .by_item();
    ///     while let Some(item) = list.next().await.transpose()? {
    ///         println!("{:?}", item);
    ///     }
    ///     Ok(())
    /// }
    /// ```
    pub fn list_luns(&self) -> super::builder::bare_metal_solution::ListLuns {
        super::builder::bare_metal_solution::ListLuns::new(self.inner.clone())
    }

    /// Skips lun's cooloff and deletes it now.
    /// Lun must be in cooloff state.
    ///
    /// # Long running operations
    ///
    /// This method is used to start, and/or poll a [long-running Operation].
    /// The [Working with long-running operations] chapter in the [user guide]
    /// covers these operations in detail.
    ///
    /// [long-running operation]: https://google.aip.dev/151
    /// [user guide]: https://googleapis.github.io/google-cloud-rust/
    /// [working with long-running operations]: https://googleapis.github.io/google-cloud-rust/working_with_long_running_operations.html
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_lro::Poller;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution
    /// ) -> Result<()> {
    ///     client.evict_lun()
    ///         /* set fields */
    ///         .poller().until_done().await?;
    ///     Ok(())
    /// }
    /// ```
    pub fn evict_lun(&self) -> super::builder::bare_metal_solution::EvictLun {
        super::builder::bare_metal_solution::EvictLun::new(self.inner.clone())
    }

    /// Get details of a single NFS share.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution, name: &str
    /// ) -> Result<()> {
    ///     let response = client.get_nfs_share()
    ///         .set_name(name)
    ///         .send().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn get_nfs_share(&self) -> super::builder::bare_metal_solution::GetNfsShare {
        super::builder::bare_metal_solution::GetNfsShare::new(self.inner.clone())
    }

    /// List NFS shares.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_gax::paginator::ItemPaginator as _;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution, parent: &str
    /// ) -> Result<()> {
    ///     let mut list = client.list_nfs_shares()
    ///         .set_parent(parent)
    ///         .by_item();
    ///     while let Some(item) = list.next().await.transpose()? {
    ///         println!("{:?}", item);
    ///     }
    ///     Ok(())
    /// }
    /// ```
    pub fn list_nfs_shares(&self) -> super::builder::bare_metal_solution::ListNfsShares {
        super::builder::bare_metal_solution::ListNfsShares::new(self.inner.clone())
    }

    /// Update details of a single NFS share.
    ///
    /// # Long running operations
    ///
    /// This method is used to start, and/or poll a [long-running Operation].
    /// The [Working with long-running operations] chapter in the [user guide]
    /// covers these operations in detail.
    ///
    /// [long-running operation]: https://google.aip.dev/151
    /// [user guide]: https://googleapis.github.io/google-cloud-rust/
    /// [working with long-running operations]: https://googleapis.github.io/google-cloud-rust/working_with_long_running_operations.html
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_lro::Poller;
    /// # extern crate wkt as google_cloud_wkt;
    /// use google_cloud_wkt::FieldMask;
    /// use google_cloud_baremetalsolution_v2::model::NfsShare;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution, name: &str
    /// ) -> Result<()> {
    ///     let response = client.update_nfs_share()
    ///         .set_nfs_share(
    ///             NfsShare::new().set_name(name)/* set fields */
    ///         )
    ///         .set_update_mask(FieldMask::default().set_paths(["updated.field.path1", "updated.field.path2"]))
    ///         .poller().until_done().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn update_nfs_share(&self) -> super::builder::bare_metal_solution::UpdateNfsShare {
        super::builder::bare_metal_solution::UpdateNfsShare::new(self.inner.clone())
    }

    /// Create an NFS share.
    ///
    /// # Long running operations
    ///
    /// This method is used to start, and/or poll a [long-running Operation].
    /// The [Working with long-running operations] chapter in the [user guide]
    /// covers these operations in detail.
    ///
    /// [long-running operation]: https://google.aip.dev/151
    /// [user guide]: https://googleapis.github.io/google-cloud-rust/
    /// [working with long-running operations]: https://googleapis.github.io/google-cloud-rust/working_with_long_running_operations.html
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_lro::Poller;
    /// use google_cloud_baremetalsolution_v2::model::NfsShare;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution, parent: &str
    /// ) -> Result<()> {
    ///     let response = client.create_nfs_share()
    ///         .set_parent(parent)
    ///         .set_nfs_share(
    ///             NfsShare::new()/* set fields */
    ///         )
    ///         .poller().until_done().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn create_nfs_share(&self) -> super::builder::bare_metal_solution::CreateNfsShare {
        super::builder::bare_metal_solution::CreateNfsShare::new(self.inner.clone())
    }

    /// RenameNfsShare sets a new name for an nfsshare.
    /// Use with caution, previous names become immediately invalidated.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution
    /// ) -> Result<()> {
    ///     let response = client.rename_nfs_share()
    ///         /* set fields */
    ///         .send().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn rename_nfs_share(&self) -> super::builder::bare_metal_solution::RenameNfsShare {
        super::builder::bare_metal_solution::RenameNfsShare::new(self.inner.clone())
    }

    /// Delete an NFS share. The underlying volume is automatically deleted.
    ///
    /// # Long running operations
    ///
    /// This method is used to start, and/or poll a [long-running Operation].
    /// The [Working with long-running operations] chapter in the [user guide]
    /// covers these operations in detail.
    ///
    /// [long-running operation]: https://google.aip.dev/151
    /// [user guide]: https://googleapis.github.io/google-cloud-rust/
    /// [working with long-running operations]: https://googleapis.github.io/google-cloud-rust/working_with_long_running_operations.html
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_lro::Poller;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution, name: &str
    /// ) -> Result<()> {
    ///     client.delete_nfs_share()
    ///         .set_name(name)
    ///         .poller().until_done().await?;
    ///     Ok(())
    /// }
    /// ```
    pub fn delete_nfs_share(&self) -> super::builder::bare_metal_solution::DeleteNfsShare {
        super::builder::bare_metal_solution::DeleteNfsShare::new(self.inner.clone())
    }

    /// List the budget details to provision resources on a given project.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_gax::paginator::ItemPaginator as _;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution, parent: &str
    /// ) -> Result<()> {
    ///     let mut list = client.list_provisioning_quotas()
    ///         .set_parent(parent)
    ///         .by_item();
    ///     while let Some(item) = list.next().await.transpose()? {
    ///         println!("{:?}", item);
    ///     }
    ///     Ok(())
    /// }
    /// ```
    pub fn list_provisioning_quotas(
        &self,
    ) -> super::builder::bare_metal_solution::ListProvisioningQuotas {
        super::builder::bare_metal_solution::ListProvisioningQuotas::new(self.inner.clone())
    }

    /// Submit a provisiong configuration for a given project.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution
    /// ) -> Result<()> {
    ///     let response = client.submit_provisioning_config()
    ///         /* set fields */
    ///         .send().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn submit_provisioning_config(
        &self,
    ) -> super::builder::bare_metal_solution::SubmitProvisioningConfig {
        super::builder::bare_metal_solution::SubmitProvisioningConfig::new(self.inner.clone())
    }

    /// Get ProvisioningConfig by name.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution, name: &str
    /// ) -> Result<()> {
    ///     let response = client.get_provisioning_config()
    ///         .set_name(name)
    ///         .send().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn get_provisioning_config(
        &self,
    ) -> super::builder::bare_metal_solution::GetProvisioningConfig {
        super::builder::bare_metal_solution::GetProvisioningConfig::new(self.inner.clone())
    }

    /// Create new ProvisioningConfig.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_baremetalsolution_v2::model::ProvisioningConfig;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution, parent: &str
    /// ) -> Result<()> {
    ///     let response = client.create_provisioning_config()
    ///         .set_parent(parent)
    ///         .set_provisioning_config(
    ///             ProvisioningConfig::new()/* set fields */
    ///         )
    ///         .send().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn create_provisioning_config(
        &self,
    ) -> super::builder::bare_metal_solution::CreateProvisioningConfig {
        super::builder::bare_metal_solution::CreateProvisioningConfig::new(self.inner.clone())
    }

    /// Update existing ProvisioningConfig.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// # extern crate wkt as google_cloud_wkt;
    /// use google_cloud_wkt::FieldMask;
    /// use google_cloud_baremetalsolution_v2::model::ProvisioningConfig;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution, name: &str
    /// ) -> Result<()> {
    ///     let response = client.update_provisioning_config()
    ///         .set_provisioning_config(
    ///             ProvisioningConfig::new().set_name(name)/* set fields */
    ///         )
    ///         .set_update_mask(FieldMask::default().set_paths(["updated.field.path1", "updated.field.path2"]))
    ///         .send().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn update_provisioning_config(
        &self,
    ) -> super::builder::bare_metal_solution::UpdateProvisioningConfig {
        super::builder::bare_metal_solution::UpdateProvisioningConfig::new(self.inner.clone())
    }

    /// RenameNetwork sets a new name for a network.
    /// Use with caution, previous names become immediately invalidated.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution
    /// ) -> Result<()> {
    ///     let response = client.rename_network()
    ///         /* set fields */
    ///         .send().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn rename_network(&self) -> super::builder::bare_metal_solution::RenameNetwork {
        super::builder::bare_metal_solution::RenameNetwork::new(self.inner.clone())
    }

    /// Retrieves the list of OS images which are currently approved.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_gax::paginator::ItemPaginator as _;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution, parent: &str
    /// ) -> Result<()> {
    ///     let mut list = client.list_os_images()
    ///         .set_parent(parent)
    ///         .by_item();
    ///     while let Some(item) = list.next().await.transpose()? {
    ///         println!("{:?}", item);
    ///     }
    ///     Ok(())
    /// }
    /// ```
    pub fn list_os_images(&self) -> super::builder::bare_metal_solution::ListOSImages {
        super::builder::bare_metal_solution::ListOSImages::new(self.inner.clone())
    }

    /// Lists information about the supported locations for this service.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_gax::paginator::ItemPaginator as _;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution
    /// ) -> Result<()> {
    ///     let mut list = client.list_locations()
    ///         /* set fields */
    ///         .by_item();
    ///     while let Some(item) = list.next().await.transpose()? {
    ///         println!("{:?}", item);
    ///     }
    ///     Ok(())
    /// }
    /// ```
    pub fn list_locations(&self) -> super::builder::bare_metal_solution::ListLocations {
        super::builder::bare_metal_solution::ListLocations::new(self.inner.clone())
    }

    /// Gets information about a location.
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution
    /// ) -> Result<()> {
    ///     let response = client.get_location()
    ///         /* set fields */
    ///         .send().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn get_location(&self) -> super::builder::bare_metal_solution::GetLocation {
        super::builder::bare_metal_solution::GetLocation::new(self.inner.clone())
    }

    /// Provides the [Operations][google.longrunning.Operations] service functionality in this service.
    ///
    /// [google.longrunning.Operations]: google-cloud-longrunning::client::Operations
    ///
    /// # Example
    /// ```
    /// # use google_cloud_baremetalsolution_v2::client::BareMetalSolution;
    /// use google_cloud_baremetalsolution_v2::Result;
    /// async fn sample(
    ///    client: &BareMetalSolution
    /// ) -> Result<()> {
    ///     let response = client.get_operation()
    ///         /* set fields */
    ///         .send().await?;
    ///     println!("response {:?}", response);
    ///     Ok(())
    /// }
    /// ```
    pub fn get_operation(&self) -> super::builder::bare_metal_solution::GetOperation {
        super::builder::bare_metal_solution::GetOperation::new(self.inner.clone())
    }
}