123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632 |
- 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 = "AzureResourcesProto";
- option java_package = "com.google.cloud.gkemulticloud.v1";
- option php_namespace = "Google\\Cloud\\GkeMultiCloud\\V1";
- option ruby_package = "Google::Cloud::GkeMultiCloud::V1";
- message AzureCluster {
- option (google.api.resource) = {
- type: "gkemulticloud.googleapis.com/AzureCluster"
- pattern: "projects/{project}/locations/{location}/azureClusters/{azure_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];
-
-
-
-
-
-
- string azure_region = 3 [(google.api.field_behavior) = REQUIRED];
-
-
-
- string resource_group_id = 17 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
-
-
-
-
-
-
- string azure_client = 16 [(google.api.field_behavior) = REQUIRED];
-
- AzureClusterNetworking networking = 4 [(google.api.field_behavior) = REQUIRED];
-
- AzureControlPlane control_plane = 5 [(google.api.field_behavior) = REQUIRED];
-
- AzureAuthorization authorization = 6 [(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 = 18 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string cluster_ca_certificate = 19 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- Fleet fleet = 20 [(google.api.field_behavior) = OPTIONAL];
-
- AzureClusterResources managed_resources = 21 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- LoggingConfig logging_config = 23 [(google.api.field_behavior) = OPTIONAL];
- }
- message AzureClusterNetworking {
-
-
-
-
-
-
-
-
-
-
- string virtual_network_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];
-
-
-
-
-
-
- string service_load_balancer_subnet_id = 5 [(google.api.field_behavior) = OPTIONAL];
- }
- message AzureControlPlane {
-
-
-
-
-
-
- string version = 1 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
-
-
-
-
-
- string subnet_id = 2 [(google.api.field_behavior) = OPTIONAL];
-
-
-
-
-
-
- string vm_size = 3 [(google.api.field_behavior) = OPTIONAL];
-
-
- AzureSshConfig ssh_config = 11 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
- AzureDiskTemplate root_volume = 4 [(google.api.field_behavior) = OPTIONAL];
-
-
-
-
-
- AzureDiskTemplate main_volume = 5 [(google.api.field_behavior) = OPTIONAL];
-
- AzureDatabaseEncryption database_encryption = 10 [(google.api.field_behavior) = OPTIONAL];
-
- AzureProxyConfig proxy_config = 12 [(google.api.field_behavior) = OPTIONAL];
-
- AzureConfigEncryption config_encryption = 14 [(google.api.field_behavior) = OPTIONAL];
-
- map<string, string> tags = 7 [(google.api.field_behavior) = OPTIONAL];
-
-
-
-
-
- repeated ReplicaPlacement replica_placements = 13 [(google.api.field_behavior) = OPTIONAL];
-
-
-
-
-
- string endpoint_subnet_id = 15 [(google.api.field_behavior) = OPTIONAL];
- }
- message ReplicaPlacement {
-
-
-
- string subnet_id = 1 [(google.api.field_behavior) = REQUIRED];
-
-
- string azure_availability_zone = 2 [(google.api.field_behavior) = REQUIRED];
- }
- message AzureProxyConfig {
-
-
-
-
- string resource_group_id = 1;
-
-
-
-
- string secret_id = 2;
- }
- message AzureDatabaseEncryption {
-
-
-
-
-
-
- string key_id = 3 [(google.api.field_behavior) = REQUIRED];
- }
- message AzureConfigEncryption {
-
-
-
-
- string key_id = 2 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
- string public_key = 3 [(google.api.field_behavior) = OPTIONAL];
- }
- message AzureDiskTemplate {
-
-
-
-
- int32 size_gib = 1 [(google.api.field_behavior) = OPTIONAL];
- }
- message AzureClient {
- option (google.api.resource) = {
- type: "gkemulticloud.googleapis.com/AzureClient"
- pattern: "projects/{project}/locations/{location}/azureClients/{azure_client}"
- };
-
-
-
-
-
-
-
- string name = 1;
-
- string tenant_id = 2 [(google.api.field_behavior) = REQUIRED];
-
- string application_id = 3 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
-
-
-
-
- map<string, string> annotations = 8 [(google.api.field_behavior) = OPTIONAL];
-
- string pem_certificate = 7 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string uid = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- google.protobuf.Timestamp create_time = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message AzureAuthorization {
-
-
-
-
-
-
- repeated AzureClusterUser admin_users = 1 [(google.api.field_behavior) = REQUIRED];
- }
- message AzureClusterUser {
-
- string username = 1 [(google.api.field_behavior) = REQUIRED];
- }
- message AzureNodePool {
- option (google.api.resource) = {
- type: "gkemulticloud.googleapis.com/AzureNodePool"
- pattern: "projects/{project}/locations/{location}/azureClusters/{azure_cluster}/azureNodePools/{azure_node_pool}"
- };
-
- enum State {
-
- STATE_UNSPECIFIED = 0;
-
- PROVISIONING = 1;
-
-
- RUNNING = 2;
-
- RECONCILING = 3;
-
- STOPPING = 4;
-
-
- ERROR = 5;
-
-
- DEGRADED = 6;
- }
-
-
-
-
-
-
-
- string name = 1;
-
- string version = 2 [(google.api.field_behavior) = REQUIRED];
-
- AzureNodeConfig config = 22 [(google.api.field_behavior) = REQUIRED];
-
-
- string subnet_id = 3 [(google.api.field_behavior) = REQUIRED];
-
- AzureNodePoolAutoscaling autoscaling = 4 [(google.api.field_behavior) = REQUIRED];
-
- State state = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string uid = 8 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- bool reconciling = 9 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- google.protobuf.Timestamp create_time = 10 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- google.protobuf.Timestamp update_time = 11 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
- string etag = 12;
-
-
-
-
-
-
-
-
-
- map<string, string> annotations = 13 [(google.api.field_behavior) = OPTIONAL];
-
-
- MaxPodsConstraint max_pods_constraint = 21 [(google.api.field_behavior) = REQUIRED];
-
-
-
- string azure_availability_zone = 23 [(google.api.field_behavior) = OPTIONAL];
- }
- message AzureNodeConfig {
-
-
-
-
-
-
- string vm_size = 1 [(google.api.field_behavior) = OPTIONAL];
-
-
-
-
- AzureDiskTemplate root_volume = 2 [(google.api.field_behavior) = OPTIONAL];
-
-
-
-
-
-
- map<string, string> tags = 3 [(google.api.field_behavior) = OPTIONAL];
-
-
-
-
-
- string image_type = 8 [(google.api.field_behavior) = OPTIONAL];
-
- AzureSshConfig ssh_config = 7 [(google.api.field_behavior) = REQUIRED];
-
- AzureProxyConfig proxy_config = 9 [(google.api.field_behavior) = OPTIONAL];
-
- AzureConfigEncryption config_encryption = 12 [(google.api.field_behavior) = OPTIONAL];
-
- repeated NodeTaint taints = 10 [(google.api.field_behavior) = OPTIONAL];
-
-
-
- map<string, string> labels = 11 [(google.api.field_behavior) = OPTIONAL];
- }
- message AzureNodePoolAutoscaling {
-
-
- int32 min_node_count = 1 [(google.api.field_behavior) = REQUIRED];
-
-
- int32 max_node_count = 2 [(google.api.field_behavior) = REQUIRED];
- }
- message AzureServerConfig {
- option (google.api.resource) = {
- type: "gkemulticloud.googleapis.com/AzureServerConfig"
- pattern: "projects/{project}/locations/{location}/azureServerConfig"
- };
-
-
-
-
-
-
-
- string name = 1;
-
- repeated AzureK8sVersionInfo valid_versions = 2;
-
- repeated string supported_azure_regions = 3;
- }
- message AzureK8sVersionInfo {
-
- string version = 1;
- }
- message AzureSshConfig {
-
-
-
- string authorized_key = 1 [(google.api.field_behavior) = REQUIRED];
- }
- message AzureClusterResources {
-
- string network_security_group_id = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string control_plane_application_security_group_id = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
|