123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556 |
- syntax = "proto3";
- package google.cloud.gkemulticloud.v1;
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/cloud/gkemulticloud/v1/common_resources.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 = "AwsResourcesProto";
- option java_package = "com.google.cloud.gkemulticloud.v1";
- option php_namespace = "Google\\Cloud\\GkeMultiCloud\\V1";
- option ruby_package = "Google::Cloud::GkeMultiCloud::V1";
- message AwsCluster {
- option (google.api.resource) = {
- type: "gkemulticloud.googleapis.com/AwsCluster"
- pattern: "projects/{project}/locations/{location}/awsClusters/{aws_cluster}"
- };
-
- enum State {
-
- STATE_UNSPECIFIED = 0;
-
- PROVISIONING = 1;
-
-
- RUNNING = 2;
-
-
- RECONCILING = 3;
-
- STOPPING = 4;
-
-
- ERROR = 5;
-
-
- DEGRADED = 6;
- }
-
-
-
-
-
-
-
- string name = 1;
-
-
- string description = 2 [(google.api.field_behavior) = OPTIONAL];
-
- AwsClusterNetworking networking = 3 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
-
- string aws_region = 4 [(google.api.field_behavior) = REQUIRED];
-
- AwsControlPlane control_plane = 5 [(google.api.field_behavior) = REQUIRED];
-
- AwsAuthorization authorization = 15 [(google.api.field_behavior) = REQUIRED];
-
- State state = 7 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string endpoint = 8 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string uid = 9 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- bool reconciling = 10 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- google.protobuf.Timestamp create_time = 11 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- google.protobuf.Timestamp update_time = 12 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
- string etag = 13;
-
-
-
-
-
-
-
-
-
- map<string, string> annotations = 14 [(google.api.field_behavior) = OPTIONAL];
-
- WorkloadIdentityConfig workload_identity_config = 16 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string cluster_ca_certificate = 17 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- Fleet fleet = 18 [(google.api.field_behavior) = OPTIONAL];
-
- LoggingConfig logging_config = 19 [(google.api.field_behavior) = OPTIONAL];
- }
- message AwsControlPlane {
-
-
-
-
-
-
- string version = 1 [(google.api.field_behavior) = REQUIRED];
-
-
-
- string instance_type = 2 [(google.api.field_behavior) = OPTIONAL];
-
-
- AwsSshConfig ssh_config = 14 [(google.api.field_behavior) = OPTIONAL];
-
-
-
-
- repeated string subnet_ids = 4 [(google.api.field_behavior) = REQUIRED];
-
-
-
- repeated string security_group_ids = 5 [(google.api.field_behavior) = OPTIONAL];
-
-
- string iam_instance_profile = 7 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
-
-
- AwsVolumeTemplate root_volume = 8 [(google.api.field_behavior) = OPTIONAL];
-
-
-
-
-
-
-
-
- AwsVolumeTemplate main_volume = 9 [(google.api.field_behavior) = OPTIONAL];
-
- AwsDatabaseEncryption database_encryption = 10 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
-
- map<string, string> tags = 11 [(google.api.field_behavior) = OPTIONAL];
-
- AwsServicesAuthentication aws_services_authentication = 12 [(google.api.field_behavior) = REQUIRED];
-
- AwsProxyConfig proxy_config = 16 [(google.api.field_behavior) = OPTIONAL];
-
- AwsConfigEncryption config_encryption = 17 [(google.api.field_behavior) = REQUIRED];
-
-
- AwsInstancePlacement instance_placement = 18 [(google.api.field_behavior) = OPTIONAL];
- }
- message AwsServicesAuthentication {
-
-
- string role_arn = 1 [(google.api.field_behavior) = REQUIRED];
-
-
-
- string role_session_name = 2 [(google.api.field_behavior) = OPTIONAL];
- }
- message AwsAuthorization {
-
-
-
-
-
-
- repeated AwsClusterUser admin_users = 1 [(google.api.field_behavior) = REQUIRED];
- }
- message AwsClusterUser {
-
- string username = 1 [(google.api.field_behavior) = REQUIRED];
- }
- message AwsDatabaseEncryption {
-
- string kms_key_arn = 1 [(google.api.field_behavior) = REQUIRED];
- }
- message AwsVolumeTemplate {
-
-
-
-
- enum VolumeType {
-
- VOLUME_TYPE_UNSPECIFIED = 0;
-
- GP2 = 1;
-
- GP3 = 2;
- }
-
-
-
-
- int32 size_gib = 1 [(google.api.field_behavior) = OPTIONAL];
-
-
-
- VolumeType volume_type = 2 [(google.api.field_behavior) = OPTIONAL];
-
- int32 iops = 3 [(google.api.field_behavior) = OPTIONAL];
-
-
-
-
-
- string kms_key_arn = 4 [(google.api.field_behavior) = OPTIONAL];
- }
- message AwsClusterNetworking {
-
-
-
-
- string vpc_id = 1 [(google.api.field_behavior) = REQUIRED];
-
-
-
- repeated string pod_address_cidr_blocks = 2 [(google.api.field_behavior) = REQUIRED];
-
-
-
- repeated string service_address_cidr_blocks = 3 [(google.api.field_behavior) = REQUIRED];
- }
- message AwsNodePool {
- option (google.api.resource) = {
- type: "gkemulticloud.googleapis.com/AwsNodePool"
- pattern: "projects/{project}/locations/{location}/awsClusters/{aws_cluster}/awsNodePools/{aws_node_pool}"
- };
-
- enum State {
-
- STATE_UNSPECIFIED = 0;
-
- PROVISIONING = 1;
-
-
- RUNNING = 2;
-
- RECONCILING = 3;
-
- STOPPING = 4;
-
-
- ERROR = 5;
-
-
- DEGRADED = 6;
- }
-
-
-
-
-
-
-
- string name = 1;
-
-
-
-
-
- string version = 3 [(google.api.field_behavior) = REQUIRED];
-
- AwsNodeConfig config = 28 [(google.api.field_behavior) = REQUIRED];
-
- AwsNodePoolAutoscaling autoscaling = 25 [(google.api.field_behavior) = REQUIRED];
-
- string subnet_id = 6 [(google.api.field_behavior) = REQUIRED];
-
- State state = 16 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string uid = 17 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- bool reconciling = 18 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- google.protobuf.Timestamp create_time = 19 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- google.protobuf.Timestamp update_time = 20 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
- string etag = 21;
-
-
-
-
-
-
-
-
-
- map<string, string> annotations = 22 [(google.api.field_behavior) = OPTIONAL];
-
-
- MaxPodsConstraint max_pods_constraint = 27 [(google.api.field_behavior) = REQUIRED];
- }
- message AwsNodeConfig {
-
-
-
- string instance_type = 1 [(google.api.field_behavior) = OPTIONAL];
-
-
-
-
-
- AwsVolumeTemplate root_volume = 2 [(google.api.field_behavior) = OPTIONAL];
-
- repeated NodeTaint taints = 3 [(google.api.field_behavior) = OPTIONAL];
-
-
-
- map<string, string> labels = 4 [(google.api.field_behavior) = OPTIONAL];
-
-
-
-
- map<string, string> tags = 5 [(google.api.field_behavior) = OPTIONAL];
-
- string iam_instance_profile = 6 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
- string image_type = 11 [(google.api.field_behavior) = OPTIONAL];
-
- AwsSshConfig ssh_config = 9 [(google.api.field_behavior) = OPTIONAL];
-
-
-
- repeated string security_group_ids = 10 [(google.api.field_behavior) = OPTIONAL];
-
- AwsProxyConfig proxy_config = 12 [(google.api.field_behavior) = OPTIONAL];
-
- AwsConfigEncryption config_encryption = 13 [(google.api.field_behavior) = REQUIRED];
-
-
- AwsInstancePlacement instance_placement = 14 [(google.api.field_behavior) = OPTIONAL];
- }
- message AwsNodePoolAutoscaling {
-
-
- int32 min_node_count = 1 [(google.api.field_behavior) = REQUIRED];
-
-
- int32 max_node_count = 2 [(google.api.field_behavior) = REQUIRED];
- }
- message AwsServerConfig {
- option (google.api.resource) = {
- type: "gkemulticloud.googleapis.com/AwsServerConfig"
- pattern: "projects/{project}/locations/{location}/awsServerConfig"
- };
-
- string name = 1;
-
- repeated AwsK8sVersionInfo valid_versions = 2;
-
- repeated string supported_aws_regions = 3;
- }
- message AwsK8sVersionInfo {
-
- string version = 1;
- }
- message AwsSshConfig {
-
- string ec2_key_pair = 1 [(google.api.field_behavior) = REQUIRED];
- }
- message AwsProxyConfig {
-
-
- string secret_arn = 1;
-
-
- string secret_version = 2;
- }
- message AwsConfigEncryption {
-
- string kms_key_arn = 1 [(google.api.field_behavior) = REQUIRED];
- }
- message AwsInstancePlacement {
-
- enum Tenancy {
-
- TENANCY_UNSPECIFIED = 0;
-
- DEFAULT = 1;
-
- DEDICATED = 2;
-
- HOST = 3;
- }
-
- Tenancy tenancy = 1 [(google.api.field_behavior) = REQUIRED];
- }
|