123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- syntax = "proto3";
- package google.cloud.gkemulticloud.v1;
- import "google/api/field_behavior.proto";
- import "google/protobuf/timestamp.proto";
- option csharp_namespace = "Google.Cloud.GkeMultiCloud.V1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/gkemulticloud/v1;gkemulticloud";
- option java_multiple_files = true;
- option java_outer_classname = "CommonResourcesProto";
- option java_package = "com.google.cloud.gkemulticloud.v1";
- option php_namespace = "Google\\Cloud\\GkeMultiCloud\\V1";
- option ruby_package = "Google::Cloud::GkeMultiCloud::V1";
- message WorkloadIdentityConfig {
-
- string issuer_uri = 1;
-
- string workload_pool = 2;
-
-
- string identity_provider = 3;
- }
- message MaxPodsConstraint {
-
- int64 max_pods_per_node = 1 [(google.api.field_behavior) = REQUIRED];
- }
- message OperationMetadata {
-
- google.protobuf.Timestamp create_time = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- google.protobuf.Timestamp end_time = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string target = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string status_detail = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string error_detail = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message NodeTaint {
-
- enum Effect {
-
- EFFECT_UNSPECIFIED = 0;
-
-
-
-
- NO_SCHEDULE = 1;
-
-
-
- PREFER_NO_SCHEDULE = 2;
-
-
- NO_EXECUTE = 3;
- }
-
- string key = 1 [(google.api.field_behavior) = REQUIRED];
-
- string value = 2 [(google.api.field_behavior) = REQUIRED];
-
- Effect effect = 3 [(google.api.field_behavior) = REQUIRED];
- }
- message Fleet {
-
-
-
-
- string project = 1 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
- string membership = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message LoggingConfig {
-
- LoggingComponentConfig component_config = 1;
- }
- message LoggingComponentConfig {
-
- enum Component {
-
- COMPONENT_UNSPECIFIED = 0;
-
- SYSTEM_COMPONENTS = 1;
-
- WORKLOADS = 2;
- }
-
- repeated Component enable_components = 1;
- }
|