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
// This file is @generated by prost-build.
/// A guest attributes.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GuestAttributes {
/// The path to be queried. This can be the default namespace ('/') or a
/// nested namespace ('/\<namespace\>/') or a specified key
/// ('/\<namespace\>/\<key\>')
#[prost(string, tag = "1")]
pub query_path: ::prost::alloc::string::String,
/// The value of the requested queried path.
#[prost(message, optional, tag = "2")]
pub query_value: ::core::option::Option<GuestAttributesValue>,
}
/// Array of guest attribute namespace/key/value tuples.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GuestAttributesValue {
/// The list of guest attributes entries.
#[prost(message, repeated, tag = "1")]
pub items: ::prost::alloc::vec::Vec<GuestAttributesEntry>,
}
/// A guest attributes namespace/key/value entry.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GuestAttributesEntry {
/// Namespace for the guest attribute entry.
#[prost(string, tag = "1")]
pub namespace: ::prost::alloc::string::String,
/// Key for the guest attribute entry.
#[prost(string, tag = "2")]
pub key: ::prost::alloc::string::String,
/// Value for the guest attribute entry.
#[prost(string, tag = "3")]
pub value: ::prost::alloc::string::String,
}
/// A node-attached disk resource.
/// Next ID: 8;
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AttachedDisk {
/// Specifies the full path to an existing disk.
/// For example: "projects/my-project/zones/us-central1-c/disks/my-disk".
#[prost(string, tag = "3")]
pub source_disk: ::prost::alloc::string::String,
/// The mode in which to attach this disk.
/// If not specified, the default is READ_WRITE mode.
/// Only applicable to data_disks.
#[prost(enumeration = "attached_disk::DiskMode", tag = "4")]
pub mode: i32,
}
/// Nested message and enum types in `AttachedDisk`.
pub mod attached_disk {
/// The different mode of the attached disk.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum DiskMode {
/// The disk mode is not known/set.
Unspecified = 0,
/// Attaches the disk in read-write mode. Only one TPU node can attach a disk
/// in read-write mode at a time.
ReadWrite = 1,
/// Attaches the disk in read-only mode. Multiple TPU nodes can attach
/// a disk in read-only mode at a time.
ReadOnly = 2,
}
impl DiskMode {
/// 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 {
DiskMode::Unspecified => "DISK_MODE_UNSPECIFIED",
DiskMode::ReadWrite => "READ_WRITE",
DiskMode::ReadOnly => "READ_ONLY",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"DISK_MODE_UNSPECIFIED" => Some(Self::Unspecified),
"READ_WRITE" => Some(Self::ReadWrite),
"READ_ONLY" => Some(Self::ReadOnly),
_ => None,
}
}
}
}
/// Sets the scheduling options for this node.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct SchedulingConfig {
/// Defines whether the node is preemptible.
#[prost(bool, tag = "1")]
pub preemptible: bool,
/// Whether the node is created under a reservation.
#[prost(bool, tag = "2")]
pub reserved: bool,
}
/// A network endpoint over which a TPU worker can be reached.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct NetworkEndpoint {
/// The internal IP address of this network endpoint.
#[prost(string, tag = "1")]
pub ip_address: ::prost::alloc::string::String,
/// The port of this network endpoint.
#[prost(int32, tag = "2")]
pub port: i32,
/// The access config for the TPU worker.
#[prost(message, optional, tag = "5")]
pub access_config: ::core::option::Option<AccessConfig>,
}
/// An access config attached to the TPU worker.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AccessConfig {
/// Output only. An external IP address associated with the TPU worker.
#[prost(string, tag = "1")]
pub external_ip: ::prost::alloc::string::String,
}
/// Network related configurations.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct NetworkConfig {
/// The name of the network for the TPU node. It must be a preexisting Google
/// Compute Engine network. If none is provided, "default" will be used.
#[prost(string, tag = "1")]
pub network: ::prost::alloc::string::String,
/// The name of the subnetwork for the TPU node. It must be a preexisting
/// Google Compute Engine subnetwork. If none is provided, "default" will be
/// used.
#[prost(string, tag = "2")]
pub subnetwork: ::prost::alloc::string::String,
/// Indicates that external IP addresses would be associated with the TPU
/// workers. If set to false, the specified subnetwork or network should have
/// Private Google Access enabled.
#[prost(bool, tag = "3")]
pub enable_external_ips: bool,
/// Allows the TPU node to send and receive packets with non-matching
/// destination or source IPs. This is required if you plan to use the TPU
/// workers to forward routes.
#[prost(bool, tag = "4")]
pub can_ip_forward: bool,
}
/// A service account.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ServiceAccount {
/// Email address of the service account. If empty, default Compute service
/// account will be used.
#[prost(string, tag = "1")]
pub email: ::prost::alloc::string::String,
/// The list of scopes to be made available for this service account. If empty,
/// access to all Cloud APIs will be allowed.
#[prost(string, repeated, tag = "2")]
pub scope: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// A TPU instance.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Node {
/// Output only. Immutable. The name of the TPU.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// The user-supplied description of the TPU. Maximum of 512 characters.
#[prost(string, tag = "3")]
pub description: ::prost::alloc::string::String,
/// Optional. The type of hardware accelerators associated with this node.
#[prost(string, tag = "5")]
pub accelerator_type: ::prost::alloc::string::String,
/// Output only. The current state for the TPU Node.
#[prost(enumeration = "node::State", tag = "9")]
pub state: i32,
/// Output only. If this field is populated, it contains a description of why
/// the TPU Node is unhealthy.
#[prost(string, tag = "10")]
pub health_description: ::prost::alloc::string::String,
/// Required. The runtime version running in the Node.
#[prost(string, tag = "11")]
pub runtime_version: ::prost::alloc::string::String,
/// Network configurations for the TPU node.
#[prost(message, optional, tag = "36")]
pub network_config: ::core::option::Option<NetworkConfig>,
/// The CIDR block that the TPU node will use when selecting an IP address.
/// This CIDR block must be a /29 block; the Compute Engine networks API
/// forbids a smaller block, and using a larger block would be wasteful (a
/// node can only consume one IP address). Errors will occur if the CIDR block
/// has already been used for a currently existing TPU node, the CIDR block
/// conflicts with any subnetworks in the user's provided network, or the
/// provided network is peered with another network that is using that CIDR
/// block.
#[prost(string, tag = "13")]
pub cidr_block: ::prost::alloc::string::String,
/// The Google Cloud Platform Service Account to be used by the TPU node VMs.
/// If None is specified, the default compute service account will be used.
#[prost(message, optional, tag = "37")]
pub service_account: ::core::option::Option<ServiceAccount>,
/// Output only. The time when the node was created.
#[prost(message, optional, tag = "16")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// The scheduling options for this node.
#[prost(message, optional, tag = "17")]
pub scheduling_config: ::core::option::Option<SchedulingConfig>,
/// Output only. The network endpoints where TPU workers can be accessed and
/// sent work. It is recommended that runtime clients of the node reach out
/// to the 0th entry in this map first.
#[prost(message, repeated, tag = "21")]
pub network_endpoints: ::prost::alloc::vec::Vec<NetworkEndpoint>,
/// The health status of the TPU node.
#[prost(enumeration = "node::Health", tag = "22")]
pub health: i32,
/// Resource labels to represent user-provided metadata.
#[prost(btree_map = "string, string", tag = "24")]
pub labels: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// Custom metadata to apply to the TPU Node.
/// Can set startup-script and shutdown-script
#[prost(btree_map = "string, string", tag = "34")]
pub metadata: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
/// Tags to apply to the TPU Node. Tags are used to identify valid sources or
/// targets for network firewalls.
#[prost(string, repeated, tag = "40")]
pub tags: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// Output only. The unique identifier for the TPU Node.
#[prost(int64, tag = "33")]
pub id: i64,
/// The additional data disks for the Node.
#[prost(message, repeated, tag = "41")]
pub data_disks: ::prost::alloc::vec::Vec<AttachedDisk>,
/// Output only. The API version that created this Node.
#[prost(enumeration = "node::ApiVersion", tag = "38")]
pub api_version: i32,
/// Output only. The Symptoms that have occurred to the TPU Node.
#[prost(message, repeated, tag = "39")]
pub symptoms: ::prost::alloc::vec::Vec<Symptom>,
/// Shielded Instance options.
#[prost(message, optional, tag = "45")]
pub shielded_instance_config: ::core::option::Option<ShieldedInstanceConfig>,
/// The AccleratorConfig for the TPU Node.
#[prost(message, optional, tag = "46")]
pub accelerator_config: ::core::option::Option<AcceleratorConfig>,
/// Output only. The qualified name of the QueuedResource that requested this
/// Node.
#[prost(string, tag = "47")]
pub queued_resource: ::prost::alloc::string::String,
/// Output only. Whether the Node belongs to a Multislice group.
#[prost(bool, tag = "48")]
pub multislice_node: bool,
}
/// Nested message and enum types in `Node`.
pub mod node {
/// Represents the different states of a TPU node during its lifecycle.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum State {
/// TPU node state is not known/set.
Unspecified = 0,
/// TPU node is being created.
Creating = 1,
/// TPU node has been created.
Ready = 2,
/// TPU node is restarting.
Restarting = 3,
/// TPU node is undergoing reimaging.
Reimaging = 4,
/// TPU node is being deleted.
Deleting = 5,
/// TPU node is being repaired and may be unusable. Details can be
/// found in the 'help_description' field.
Repairing = 6,
/// TPU node is stopped.
Stopped = 8,
/// TPU node is currently stopping.
Stopping = 9,
/// TPU node is currently starting.
Starting = 10,
/// TPU node has been preempted. Only applies to Preemptible TPU Nodes.
Preempted = 11,
/// TPU node has been terminated due to maintenance or has reached the end of
/// its life cycle (for preemptible nodes).
Terminated = 12,
/// TPU node is currently hiding.
Hiding = 13,
/// TPU node has been hidden.
Hidden = 14,
/// TPU node is currently unhiding.
Unhiding = 15,
}
impl State {
/// 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 {
State::Unspecified => "STATE_UNSPECIFIED",
State::Creating => "CREATING",
State::Ready => "READY",
State::Restarting => "RESTARTING",
State::Reimaging => "REIMAGING",
State::Deleting => "DELETING",
State::Repairing => "REPAIRING",
State::Stopped => "STOPPED",
State::Stopping => "STOPPING",
State::Starting => "STARTING",
State::Preempted => "PREEMPTED",
State::Terminated => "TERMINATED",
State::Hiding => "HIDING",
State::Hidden => "HIDDEN",
State::Unhiding => "UNHIDING",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"STATE_UNSPECIFIED" => Some(Self::Unspecified),
"CREATING" => Some(Self::Creating),
"READY" => Some(Self::Ready),
"RESTARTING" => Some(Self::Restarting),
"REIMAGING" => Some(Self::Reimaging),
"DELETING" => Some(Self::Deleting),
"REPAIRING" => Some(Self::Repairing),
"STOPPED" => Some(Self::Stopped),
"STOPPING" => Some(Self::Stopping),
"STARTING" => Some(Self::Starting),
"PREEMPTED" => Some(Self::Preempted),
"TERMINATED" => Some(Self::Terminated),
"HIDING" => Some(Self::Hiding),
"HIDDEN" => Some(Self::Hidden),
"UNHIDING" => Some(Self::Unhiding),
_ => None,
}
}
}
/// Health defines the status of a TPU node as reported by
/// Health Monitor.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum Health {
/// Health status is unknown: not initialized or failed to retrieve.
Unspecified = 0,
/// The resource is healthy.
Healthy = 1,
/// The resource is unresponsive.
Timeout = 3,
/// The in-guest ML stack is unhealthy.
UnhealthyTensorflow = 4,
/// The node is under maintenance/priority boost caused rescheduling and
/// will resume running once rescheduled.
UnhealthyMaintenance = 5,
}
impl Health {
/// 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 {
Health::Unspecified => "HEALTH_UNSPECIFIED",
Health::Healthy => "HEALTHY",
Health::Timeout => "TIMEOUT",
Health::UnhealthyTensorflow => "UNHEALTHY_TENSORFLOW",
Health::UnhealthyMaintenance => "UNHEALTHY_MAINTENANCE",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"HEALTH_UNSPECIFIED" => Some(Self::Unspecified),
"HEALTHY" => Some(Self::Healthy),
"TIMEOUT" => Some(Self::Timeout),
"UNHEALTHY_TENSORFLOW" => Some(Self::UnhealthyTensorflow),
"UNHEALTHY_MAINTENANCE" => Some(Self::UnhealthyMaintenance),
_ => None,
}
}
}
/// TPU API Version.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum ApiVersion {
/// API version is unknown.
Unspecified = 0,
/// TPU API V1Alpha1 version.
V1Alpha1 = 1,
/// TPU API V1 version.
V1 = 2,
/// TPU API V2Alpha1 version.
V2Alpha1 = 3,
/// TPU API V2 version.
V2 = 4,
}
impl ApiVersion {
/// 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 {
ApiVersion::Unspecified => "API_VERSION_UNSPECIFIED",
ApiVersion::V1Alpha1 => "V1_ALPHA1",
ApiVersion::V1 => "V1",
ApiVersion::V2Alpha1 => "V2_ALPHA1",
ApiVersion::V2 => "V2",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"API_VERSION_UNSPECIFIED" => Some(Self::Unspecified),
"V1_ALPHA1" => Some(Self::V1Alpha1),
"V1" => Some(Self::V1),
"V2_ALPHA1" => Some(Self::V2Alpha1),
"V2" => Some(Self::V2),
_ => None,
}
}
}
}
/// Request for [ListNodes][google.cloud.tpu.v2.Tpu.ListNodes].
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListNodesRequest {
/// Required. The parent resource name.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// The maximum number of items to return.
#[prost(int32, tag = "2")]
pub page_size: i32,
/// The next_page_token value returned from a previous List request, if any.
#[prost(string, tag = "3")]
pub page_token: ::prost::alloc::string::String,
}
/// Response for [ListNodes][google.cloud.tpu.v2.Tpu.ListNodes].
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListNodesResponse {
/// The listed nodes.
#[prost(message, repeated, tag = "1")]
pub nodes: ::prost::alloc::vec::Vec<Node>,
/// The next page token or empty if none.
#[prost(string, tag = "2")]
pub next_page_token: ::prost::alloc::string::String,
/// Locations that could not be reached.
#[prost(string, repeated, tag = "3")]
pub unreachable: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// Request for [GetNode][google.cloud.tpu.v2.Tpu.GetNode].
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetNodeRequest {
/// Required. The resource name.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request for [CreateNode][google.cloud.tpu.v2.Tpu.CreateNode].
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateNodeRequest {
/// Required. The parent resource name.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// The unqualified resource name.
#[prost(string, tag = "2")]
pub node_id: ::prost::alloc::string::String,
/// Required. The node.
#[prost(message, optional, tag = "3")]
pub node: ::core::option::Option<Node>,
}
/// Request for [DeleteNode][google.cloud.tpu.v2.Tpu.DeleteNode].
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeleteNodeRequest {
/// Required. The resource name.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request for [StopNode][google.cloud.tpu.v2.Tpu.StopNode].
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct StopNodeRequest {
/// Required. The resource name.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request for [StartNode][google.cloud.tpu.v2.Tpu.StartNode].
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct StartNodeRequest {
/// Required. The resource name.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request for [UpdateNode][google.cloud.tpu.v2.Tpu.UpdateNode].
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateNodeRequest {
/// Required. Mask of fields from [Node][Tpu.Node] to update.
/// Supported fields: [description, tags, labels, metadata,
/// network_config.enable_external_ips].
#[prost(message, optional, tag = "1")]
pub update_mask: ::core::option::Option<::prost_types::FieldMask>,
/// Required. The node. Only fields specified in update_mask are updated.
#[prost(message, optional, tag = "2")]
pub node: ::core::option::Option<Node>,
}
/// The per-product per-project service identity for Cloud TPU service.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ServiceIdentity {
/// The email address of the service identity.
#[prost(string, tag = "1")]
pub email: ::prost::alloc::string::String,
}
/// Request for
/// [GenerateServiceIdentity][google.cloud.tpu.v2.Tpu.GenerateServiceIdentity].
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GenerateServiceIdentityRequest {
/// Required. The parent resource name.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
}
/// Response for
/// [GenerateServiceIdentity][google.cloud.tpu.v2.Tpu.GenerateServiceIdentity].
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GenerateServiceIdentityResponse {
/// ServiceIdentity that was created or retrieved.
#[prost(message, optional, tag = "1")]
pub identity: ::core::option::Option<ServiceIdentity>,
}
/// A accelerator type that a Node can be configured with.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AcceleratorType {
/// The resource name.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// The accelerator type.
#[prost(string, tag = "2")]
pub r#type: ::prost::alloc::string::String,
/// The accelerator config.
#[prost(message, repeated, tag = "3")]
pub accelerator_configs: ::prost::alloc::vec::Vec<AcceleratorConfig>,
}
/// Request for [GetAcceleratorType][google.cloud.tpu.v2.Tpu.GetAcceleratorType].
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetAcceleratorTypeRequest {
/// Required. The resource name.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request for
/// [ListAcceleratorTypes][google.cloud.tpu.v2.Tpu.ListAcceleratorTypes].
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListAcceleratorTypesRequest {
/// Required. The parent resource name.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// The maximum number of items to return.
#[prost(int32, tag = "2")]
pub page_size: i32,
/// The next_page_token value returned from a previous List request, if any.
#[prost(string, tag = "3")]
pub page_token: ::prost::alloc::string::String,
/// List filter.
#[prost(string, tag = "5")]
pub filter: ::prost::alloc::string::String,
/// Sort results.
#[prost(string, tag = "6")]
pub order_by: ::prost::alloc::string::String,
}
/// Response for
/// [ListAcceleratorTypes][google.cloud.tpu.v2.Tpu.ListAcceleratorTypes].
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListAcceleratorTypesResponse {
/// The listed nodes.
#[prost(message, repeated, tag = "1")]
pub accelerator_types: ::prost::alloc::vec::Vec<AcceleratorType>,
/// The next page token or empty if none.
#[prost(string, tag = "2")]
pub next_page_token: ::prost::alloc::string::String,
/// Locations that could not be reached.
#[prost(string, repeated, tag = "3")]
pub unreachable: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// A runtime version that a Node can be configured with.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RuntimeVersion {
/// The resource name.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// The runtime version.
#[prost(string, tag = "2")]
pub version: ::prost::alloc::string::String,
}
/// Request for [GetRuntimeVersion][google.cloud.tpu.v2.Tpu.GetRuntimeVersion].
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetRuntimeVersionRequest {
/// Required. The resource name.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request for
/// [ListRuntimeVersions][google.cloud.tpu.v2.Tpu.ListRuntimeVersions].
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListRuntimeVersionsRequest {
/// Required. The parent resource name.
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
/// The maximum number of items to return.
#[prost(int32, tag = "2")]
pub page_size: i32,
/// The next_page_token value returned from a previous List request, if any.
#[prost(string, tag = "3")]
pub page_token: ::prost::alloc::string::String,
/// List filter.
#[prost(string, tag = "5")]
pub filter: ::prost::alloc::string::String,
/// Sort results.
#[prost(string, tag = "6")]
pub order_by: ::prost::alloc::string::String,
}
/// Response for
/// [ListRuntimeVersions][google.cloud.tpu.v2.Tpu.ListRuntimeVersions].
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListRuntimeVersionsResponse {
/// The listed nodes.
#[prost(message, repeated, tag = "1")]
pub runtime_versions: ::prost::alloc::vec::Vec<RuntimeVersion>,
/// The next page token or empty if none.
#[prost(string, tag = "2")]
pub next_page_token: ::prost::alloc::string::String,
/// Locations that could not be reached.
#[prost(string, repeated, tag = "3")]
pub unreachable: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// Metadata describing an [Operation][google.longrunning.Operation]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct OperationMetadata {
/// The time the operation was created.
#[prost(message, optional, tag = "1")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// The time the operation finished running.
#[prost(message, optional, tag = "2")]
pub end_time: ::core::option::Option<::prost_types::Timestamp>,
/// Target of the operation - for example
/// projects/project-1/connectivityTests/test-1
#[prost(string, tag = "3")]
pub target: ::prost::alloc::string::String,
/// Name of the verb executed by the operation.
#[prost(string, tag = "4")]
pub verb: ::prost::alloc::string::String,
/// Human-readable status of the operation, if any.
#[prost(string, tag = "5")]
pub status_detail: ::prost::alloc::string::String,
/// Specifies if cancellation was requested for the operation.
#[prost(bool, tag = "6")]
pub cancel_requested: bool,
/// API version.
#[prost(string, tag = "7")]
pub api_version: ::prost::alloc::string::String,
}
/// A Symptom instance.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Symptom {
/// Timestamp when the Symptom is created.
#[prost(message, optional, tag = "1")]
pub create_time: ::core::option::Option<::prost_types::Timestamp>,
/// Type of the Symptom.
#[prost(enumeration = "symptom::SymptomType", tag = "2")]
pub symptom_type: i32,
/// Detailed information of the current Symptom.
#[prost(string, tag = "3")]
pub details: ::prost::alloc::string::String,
/// A string used to uniquely distinguish a worker within a TPU node.
#[prost(string, tag = "4")]
pub worker_id: ::prost::alloc::string::String,
}
/// Nested message and enum types in `Symptom`.
pub mod symptom {
/// SymptomType represents the different types of Symptoms that a TPU can be
/// at.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum SymptomType {
/// Unspecified symptom.
Unspecified = 0,
/// TPU VM memory is low.
LowMemory = 1,
/// TPU runtime is out of memory.
OutOfMemory = 2,
/// TPU runtime execution has timed out.
ExecuteTimedOut = 3,
/// TPU runtime fails to construct a mesh that recognizes each TPU device's
/// neighbors.
MeshBuildFail = 4,
/// TPU HBM is out of memory.
HbmOutOfMemory = 5,
/// Abusive behaviors have been identified on the current project.
ProjectAbuse = 6,
}
impl SymptomType {
/// 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 {
SymptomType::Unspecified => "SYMPTOM_TYPE_UNSPECIFIED",
SymptomType::LowMemory => "LOW_MEMORY",
SymptomType::OutOfMemory => "OUT_OF_MEMORY",
SymptomType::ExecuteTimedOut => "EXECUTE_TIMED_OUT",
SymptomType::MeshBuildFail => "MESH_BUILD_FAIL",
SymptomType::HbmOutOfMemory => "HBM_OUT_OF_MEMORY",
SymptomType::ProjectAbuse => "PROJECT_ABUSE",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"SYMPTOM_TYPE_UNSPECIFIED" => Some(Self::Unspecified),
"LOW_MEMORY" => Some(Self::LowMemory),
"OUT_OF_MEMORY" => Some(Self::OutOfMemory),
"EXECUTE_TIMED_OUT" => Some(Self::ExecuteTimedOut),
"MESH_BUILD_FAIL" => Some(Self::MeshBuildFail),
"HBM_OUT_OF_MEMORY" => Some(Self::HbmOutOfMemory),
"PROJECT_ABUSE" => Some(Self::ProjectAbuse),
_ => None,
}
}
}
}
/// Request for [GetGuestAttributes][google.cloud.tpu.v2.Tpu.GetGuestAttributes].
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetGuestAttributesRequest {
/// Required. The resource name.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// The guest attributes path to be queried.
#[prost(string, tag = "2")]
pub query_path: ::prost::alloc::string::String,
/// The 0-based worker ID. If it is empty, all workers' GuestAttributes will be
/// returned.
#[prost(string, repeated, tag = "3")]
pub worker_ids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// Response for
/// [GetGuestAttributes][google.cloud.tpu.v2.Tpu.GetGuestAttributes].
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetGuestAttributesResponse {
/// The guest attributes for the TPU workers.
#[prost(message, repeated, tag = "1")]
pub guest_attributes: ::prost::alloc::vec::Vec<GuestAttributes>,
}
/// A TPU accelerator configuration.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AcceleratorConfig {
/// Required. Type of TPU.
#[prost(enumeration = "accelerator_config::Type", tag = "1")]
pub r#type: i32,
/// Required. Topology of TPU in chips.
#[prost(string, tag = "2")]
pub topology: ::prost::alloc::string::String,
}
/// Nested message and enum types in `AcceleratorConfig`.
pub mod accelerator_config {
/// TPU type.
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum Type {
/// Unspecified version.
Unspecified = 0,
/// TPU v2.
V2 = 2,
/// TPU v3.
V3 = 4,
/// TPU v4.
V4 = 7,
}
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::V2 => "V2",
Type::V3 => "V3",
Type::V4 => "V4",
}
}
/// 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),
"V2" => Some(Self::V2),
"V3" => Some(Self::V3),
"V4" => Some(Self::V4),
_ => None,
}
}
}
}
/// A set of Shielded Instance options.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct ShieldedInstanceConfig {
/// Defines whether the instance has Secure Boot enabled.
#[prost(bool, tag = "1")]
pub enable_secure_boot: bool,
}
/// Generated client implementations.
pub mod tpu_client {
#![allow(unused_variables, dead_code, missing_docs, clippy::let_unit_value)]
use tonic::codegen::*;
use tonic::codegen::http::Uri;
/// Manages TPU nodes and other resources
///
/// TPU API v2
#[derive(Debug, Clone)]
pub struct TpuClient<T> {
inner: tonic::client::Grpc<T>,
}
impl<T> TpuClient<T>
where
T: tonic::client::GrpcService<tonic::body::BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + std::marker::Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + std::marker::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,
) -> TpuClient<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> + std::marker::Send + std::marker::Sync,
{
TpuClient::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
}
/// Lists nodes.
pub async fn list_nodes(
&mut self,
request: impl tonic::IntoRequest<super::ListNodesRequest>,
) -> std::result::Result<
tonic::Response<super::ListNodesResponse>,
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(
"/google.cloud.tpu.v2.Tpu/ListNodes",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("google.cloud.tpu.v2.Tpu", "ListNodes"));
self.inner.unary(req, path, codec).await
}
/// Gets the details of a node.
pub async fn get_node(
&mut self,
request: impl tonic::IntoRequest<super::GetNodeRequest>,
) -> std::result::Result<tonic::Response<super::Node>, 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(
"/google.cloud.tpu.v2.Tpu/GetNode",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("google.cloud.tpu.v2.Tpu", "GetNode"));
self.inner.unary(req, path, codec).await
}
/// Creates a node.
pub async fn create_node(
&mut self,
request: impl tonic::IntoRequest<super::CreateNodeRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::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(
"/google.cloud.tpu.v2.Tpu/CreateNode",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("google.cloud.tpu.v2.Tpu", "CreateNode"));
self.inner.unary(req, path, codec).await
}
/// Deletes a node.
pub async fn delete_node(
&mut self,
request: impl tonic::IntoRequest<super::DeleteNodeRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::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(
"/google.cloud.tpu.v2.Tpu/DeleteNode",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("google.cloud.tpu.v2.Tpu", "DeleteNode"));
self.inner.unary(req, path, codec).await
}
/// Stops a node. This operation is only available with single TPU nodes.
pub async fn stop_node(
&mut self,
request: impl tonic::IntoRequest<super::StopNodeRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::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(
"/google.cloud.tpu.v2.Tpu/StopNode",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("google.cloud.tpu.v2.Tpu", "StopNode"));
self.inner.unary(req, path, codec).await
}
/// Starts a node.
pub async fn start_node(
&mut self,
request: impl tonic::IntoRequest<super::StartNodeRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::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(
"/google.cloud.tpu.v2.Tpu/StartNode",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("google.cloud.tpu.v2.Tpu", "StartNode"));
self.inner.unary(req, path, codec).await
}
/// Updates the configurations of a node.
pub async fn update_node(
&mut self,
request: impl tonic::IntoRequest<super::UpdateNodeRequest>,
) -> std::result::Result<
tonic::Response<super::super::super::super::longrunning::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(
"/google.cloud.tpu.v2.Tpu/UpdateNode",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("google.cloud.tpu.v2.Tpu", "UpdateNode"));
self.inner.unary(req, path, codec).await
}
/// Generates the Cloud TPU service identity for the project.
pub async fn generate_service_identity(
&mut self,
request: impl tonic::IntoRequest<super::GenerateServiceIdentityRequest>,
) -> std::result::Result<
tonic::Response<super::GenerateServiceIdentityResponse>,
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(
"/google.cloud.tpu.v2.Tpu/GenerateServiceIdentity",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new("google.cloud.tpu.v2.Tpu", "GenerateServiceIdentity"),
);
self.inner.unary(req, path, codec).await
}
/// Lists accelerator types supported by this API.
pub async fn list_accelerator_types(
&mut self,
request: impl tonic::IntoRequest<super::ListAcceleratorTypesRequest>,
) -> std::result::Result<
tonic::Response<super::ListAcceleratorTypesResponse>,
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(
"/google.cloud.tpu.v2.Tpu/ListAcceleratorTypes",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new("google.cloud.tpu.v2.Tpu", "ListAcceleratorTypes"),
);
self.inner.unary(req, path, codec).await
}
/// Gets AcceleratorType.
pub async fn get_accelerator_type(
&mut self,
request: impl tonic::IntoRequest<super::GetAcceleratorTypeRequest>,
) -> std::result::Result<
tonic::Response<super::AcceleratorType>,
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(
"/google.cloud.tpu.v2.Tpu/GetAcceleratorType",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new("google.cloud.tpu.v2.Tpu", "GetAcceleratorType"),
);
self.inner.unary(req, path, codec).await
}
/// Lists runtime versions supported by this API.
pub async fn list_runtime_versions(
&mut self,
request: impl tonic::IntoRequest<super::ListRuntimeVersionsRequest>,
) -> std::result::Result<
tonic::Response<super::ListRuntimeVersionsResponse>,
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(
"/google.cloud.tpu.v2.Tpu/ListRuntimeVersions",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new("google.cloud.tpu.v2.Tpu", "ListRuntimeVersions"),
);
self.inner.unary(req, path, codec).await
}
/// Gets a runtime version.
pub async fn get_runtime_version(
&mut self,
request: impl tonic::IntoRequest<super::GetRuntimeVersionRequest>,
) -> std::result::Result<tonic::Response<super::RuntimeVersion>, 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(
"/google.cloud.tpu.v2.Tpu/GetRuntimeVersion",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("google.cloud.tpu.v2.Tpu", "GetRuntimeVersion"));
self.inner.unary(req, path, codec).await
}
/// Retrieves the guest attributes for the node.
pub async fn get_guest_attributes(
&mut self,
request: impl tonic::IntoRequest<super::GetGuestAttributesRequest>,
) -> std::result::Result<
tonic::Response<super::GetGuestAttributesResponse>,
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(
"/google.cloud.tpu.v2.Tpu/GetGuestAttributes",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new("google.cloud.tpu.v2.Tpu", "GetGuestAttributes"),
);
self.inner.unary(req, path, codec).await
}
}
}