123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540 |
- syntax = "proto3";
- package google.cloud.notebooks.v1;
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/cloud/notebooks/v1/environment.proto";
- import "google/protobuf/timestamp.proto";
- option csharp_namespace = "Google.Cloud.Notebooks.V1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/notebooks/v1;notebooks";
- option java_multiple_files = true;
- option java_outer_classname = "InstanceProto";
- option java_package = "com.google.cloud.notebooks.v1";
- option php_namespace = "Google\\Cloud\\Notebooks\\V1";
- option ruby_package = "Google::Cloud::Notebooks::V1";
- message ReservationAffinity {
-
- enum Type {
-
- TYPE_UNSPECIFIED = 0;
-
- NO_RESERVATION = 1;
-
- ANY_RESERVATION = 2;
-
-
- SPECIFIC_RESERVATION = 3;
- }
-
- Type consume_reservation_type = 1 [(google.api.field_behavior) = OPTIONAL];
-
- string key = 2 [(google.api.field_behavior) = OPTIONAL];
-
- repeated string values = 3 [(google.api.field_behavior) = OPTIONAL];
- }
- message Instance {
- option (google.api.resource) = {
- type: "notebooks.googleapis.com/Instance"
- pattern: "projects/{project}/instances/{instance}"
- };
-
-
- enum AcceleratorType {
-
- ACCELERATOR_TYPE_UNSPECIFIED = 0;
-
- NVIDIA_TESLA_K80 = 1;
-
- NVIDIA_TESLA_P100 = 2;
-
- NVIDIA_TESLA_V100 = 3;
-
- NVIDIA_TESLA_P4 = 4;
-
- NVIDIA_TESLA_T4 = 5;
-
- NVIDIA_TESLA_A100 = 11;
-
- NVIDIA_TESLA_T4_VWS = 8;
-
- NVIDIA_TESLA_P100_VWS = 9;
-
- NVIDIA_TESLA_P4_VWS = 10;
-
- TPU_V2 = 6;
-
- TPU_V3 = 7;
- }
-
-
-
-
- message AcceleratorConfig {
-
- AcceleratorType type = 1;
-
- int64 core_count = 2;
- }
-
- enum State {
-
- STATE_UNSPECIFIED = 0;
-
- STARTING = 1;
-
-
- PROVISIONING = 2;
-
- ACTIVE = 3;
-
- STOPPING = 4;
-
- STOPPED = 5;
-
- DELETED = 6;
-
- UPGRADING = 7;
-
- INITIALIZING = 8;
-
- REGISTERING = 9;
-
- SUSPENDING = 10;
-
- SUSPENDED = 11;
- }
-
- enum DiskType {
-
- DISK_TYPE_UNSPECIFIED = 0;
-
- PD_STANDARD = 1;
-
- PD_SSD = 2;
-
- PD_BALANCED = 3;
-
- PD_EXTREME = 4;
- }
-
- enum DiskEncryption {
-
- DISK_ENCRYPTION_UNSPECIFIED = 0;
-
- GMEK = 1;
-
- CMEK = 2;
- }
-
- message Disk {
-
- message GuestOsFeature {
-
-
-
-
-
-
-
-
-
-
- string type = 1;
- }
-
-
- bool auto_delete = 1;
-
-
- bool boot = 2;
-
-
-
-
-
-
-
-
- string device_name = 3;
-
- int64 disk_size_gb = 4;
-
-
-
- repeated GuestOsFeature guest_os_features = 5;
-
-
-
- int64 index = 6;
-
-
-
-
-
-
-
-
-
-
- string interface = 7;
-
-
- string kind = 8;
-
-
-
- repeated string licenses = 9;
-
-
-
-
-
-
- string mode = 10;
-
-
- string source = 11;
-
-
-
-
-
- string type = 12;
- }
-
-
-
- message ShieldedInstanceConfig {
-
-
-
-
-
- bool enable_secure_boot = 1;
-
- bool enable_vtpm = 2;
-
-
-
-
-
-
- bool enable_integrity_monitoring = 3;
- }
-
- message UpgradeHistoryEntry {
-
- enum State {
-
- STATE_UNSPECIFIED = 0;
-
- STARTED = 1;
-
- SUCCEEDED = 2;
-
- FAILED = 3;
- }
-
- enum Action {
-
- ACTION_UNSPECIFIED = 0;
-
- UPGRADE = 1;
-
- ROLLBACK = 2;
- }
-
- string snapshot = 1;
-
- string vm_image = 2;
-
- string container_image = 3;
-
- string framework = 4;
-
- string version = 5;
-
- State state = 6;
-
- google.protobuf.Timestamp create_time = 7;
-
- string target_image = 8 [deprecated = true];
-
- Action action = 9;
-
- string target_version = 10;
- }
-
-
- enum NicType {
-
- UNSPECIFIED_NIC_TYPE = 0;
-
- VIRTIO_NET = 1;
-
- GVNIC = 2;
- }
-
-
- string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- oneof environment {
-
- VmImage vm_image = 2;
-
- ContainerImage container_image = 3;
- }
-
-
-
- string post_startup_script = 4;
-
- string proxy_uri = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
- repeated string instance_owners = 6 [(google.api.field_behavior) = INPUT_ONLY];
-
-
-
-
-
-
-
-
- string service_account = 7;
-
-
-
-
-
-
-
-
-
-
- repeated string service_account_scopes = 31 [(google.api.field_behavior) = OPTIONAL];
-
-
- string machine_type = 8 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
- AcceleratorConfig accelerator_config = 9;
-
- State state = 10 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
- bool install_gpu_driver = 11;
-
-
- string custom_gpu_driver_path = 12;
-
-
- DiskType boot_disk_type = 13 [(google.api.field_behavior) = INPUT_ONLY];
-
-
-
- int64 boot_disk_size_gb = 14 [(google.api.field_behavior) = INPUT_ONLY];
-
-
- DiskType data_disk_type = 25 [(google.api.field_behavior) = INPUT_ONLY];
-
-
-
-
- int64 data_disk_size_gb = 26 [(google.api.field_behavior) = INPUT_ONLY];
-
- bool no_remove_data_disk = 27 [(google.api.field_behavior) = INPUT_ONLY];
-
- DiskEncryption disk_encryption = 15 [(google.api.field_behavior) = INPUT_ONLY];
-
-
-
-
-
-
- string kms_key = 16 [(google.api.field_behavior) = INPUT_ONLY];
-
- repeated Disk disks = 28 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
- ShieldedInstanceConfig shielded_instance_config = 30 [(google.api.field_behavior) = OPTIONAL];
-
- bool no_public_ip = 17;
-
- bool no_proxy_access = 18;
-
-
-
- string network = 19;
-
-
-
- string subnet = 20;
-
-
- map<string, string> labels = 21;
-
- map<string, string> metadata = 22;
-
-
- repeated string tags = 32 [(google.api.field_behavior) = OPTIONAL];
-
- repeated UpgradeHistoryEntry upgrade_history = 29;
-
-
- NicType nic_type = 33 [(google.api.field_behavior) = OPTIONAL];
-
-
-
-
- ReservationAffinity reservation_affinity = 34 [(google.api.field_behavior) = OPTIONAL];
-
- string creator = 36 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- bool can_ip_forward = 39 [(google.api.field_behavior) = OPTIONAL];
-
- google.protobuf.Timestamp create_time = 23 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- google.protobuf.Timestamp update_time = 24 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
|