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
// This file is @generated by prost-build.
/// 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 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,
}
/// 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,
/// Required. The type of hardware accelerators associated with this node.
#[prost(string, tag = "5")]
pub accelerator_type: ::prost::alloc::string::String,
/// Output only. DEPRECATED! Use network_endpoints instead.
/// The network address for the TPU Node as visible to Compute Engine
/// instances.
#[deprecated]
#[prost(string, tag = "8")]
pub ip_address: ::prost::alloc::string::String,
/// Output only. DEPRECATED! Use network_endpoints instead.
/// The network port for the TPU Node as visible to Compute Engine instances.
#[deprecated]
#[prost(string, tag = "14")]
pub port: ::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 version of Tensorflow running in the Node.
#[prost(string, tag = "11")]
pub tensorflow_version: ::prost::alloc::string::String,
/// The name of a network they wish to peer the TPU node to. It must be a
/// preexisting Compute Engine network inside of the project on which this API
/// has been activated. If none is provided, "default" will be used.
#[prost(string, tag = "12")]
pub network: ::prost::alloc::string::String,
/// 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,
/// Output only. The service account used to run the tensor flow services
/// within the node. To share resources, including Google Cloud Storage data,
/// with the Tensorflow job running in the Node, this account must have
/// permissions to that data.
#[prost(string, tag = "15")]
pub service_account: ::prost::alloc::string::String,
/// 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 Tensorflow 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,
>,
/// Whether the VPC peering for the node is set up through Service Networking
/// API. The VPC Peering should be set up before provisioning the node.
/// If this field is set, cidr_block field should not be specified. If the
/// network, that you want to peer the TPU Node to, is Shared VPC networks,
/// the node must be created with this this field enabled.
#[prost(bool, tag = "27")]
pub use_service_networking: bool,
/// 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>,
}
/// 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 unhealthy.
DeprecatedUnhealthy = 2,
/// 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::DeprecatedUnhealthy => "DEPRECATED_UNHEALTHY",
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),
"DEPRECATED_UNHEALTHY" => Some(Self::DeprecatedUnhealthy),
"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,
}
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",
}
}
/// 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),
_ => None,
}
}
}
}
/// Request for [ListNodes][google.cloud.tpu.v1.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.v1.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.v1.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.v1.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.v1.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 [ReimageNode][google.cloud.tpu.v1.Tpu.ReimageNode].
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ReimageNodeRequest {
/// The resource name.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// The version for reimage to create.
#[prost(string, tag = "2")]
pub tensorflow_version: ::prost::alloc::string::String,
}
/// Request for [StopNode][google.cloud.tpu.v1.Tpu.StopNode].
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct StopNodeRequest {
/// The resource name.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request for [StartNode][google.cloud.tpu.v1.Tpu.StartNode].
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct StartNodeRequest {
/// The resource name.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// A tensorflow version that a Node can be configured with.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TensorFlowVersion {
/// The resource name.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// the tensorflow version.
#[prost(string, tag = "2")]
pub version: ::prost::alloc::string::String,
}
/// Request for
/// [GetTensorFlowVersion][google.cloud.tpu.v1.Tpu.GetTensorFlowVersion].
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetTensorFlowVersionRequest {
/// Required. The resource name.
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
/// Request for
/// [ListTensorFlowVersions][google.cloud.tpu.v1.Tpu.ListTensorFlowVersions].
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListTensorFlowVersionsRequest {
/// 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
/// [ListTensorFlowVersions][google.cloud.tpu.v1.Tpu.ListTensorFlowVersions].
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ListTensorFlowVersionsResponse {
/// The listed nodes.
#[prost(message, repeated, tag = "1")]
pub tensorflow_versions: ::prost::alloc::vec::Vec<TensorFlowVersion>,
/// 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 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,
}
/// Request for [GetAcceleratorType][google.cloud.tpu.v1.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.v1.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.v1.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>,
}
/// 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,
}
}
}
}
/// 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 v1
#[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.v1.Tpu/ListNodes",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("google.cloud.tpu.v1.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.v1.Tpu/GetNode",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("google.cloud.tpu.v1.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.v1.Tpu/CreateNode",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("google.cloud.tpu.v1.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.v1.Tpu/DeleteNode",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("google.cloud.tpu.v1.Tpu", "DeleteNode"));
self.inner.unary(req, path, codec).await
}
/// Reimages a node's OS.
pub async fn reimage_node(
&mut self,
request: impl tonic::IntoRequest<super::ReimageNodeRequest>,
) -> 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.v1.Tpu/ReimageNode",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("google.cloud.tpu.v1.Tpu", "ReimageNode"));
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.v1.Tpu/StopNode",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("google.cloud.tpu.v1.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.v1.Tpu/StartNode",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("google.cloud.tpu.v1.Tpu", "StartNode"));
self.inner.unary(req, path, codec).await
}
/// List TensorFlow versions supported by this API.
pub async fn list_tensor_flow_versions(
&mut self,
request: impl tonic::IntoRequest<super::ListTensorFlowVersionsRequest>,
) -> std::result::Result<
tonic::Response<super::ListTensorFlowVersionsResponse>,
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.v1.Tpu/ListTensorFlowVersions",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new("google.cloud.tpu.v1.Tpu", "ListTensorFlowVersions"),
);
self.inner.unary(req, path, codec).await
}
/// Gets TensorFlow Version.
pub async fn get_tensor_flow_version(
&mut self,
request: impl tonic::IntoRequest<super::GetTensorFlowVersionRequest>,
) -> std::result::Result<
tonic::Response<super::TensorFlowVersion>,
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.v1.Tpu/GetTensorFlowVersion",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new("google.cloud.tpu.v1.Tpu", "GetTensorFlowVersion"),
);
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.v1.Tpu/ListAcceleratorTypes",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new("google.cloud.tpu.v1.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.v1.Tpu/GetAcceleratorType",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new("google.cloud.tpu.v1.Tpu", "GetAcceleratorType"),
);
self.inner.unary(req, path, codec).await
}
}
}