environments.proto 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972
  1. // Copyright 2021 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.cloud.orchestration.airflow.service.v1beta1;
  16. import "google/api/annotations.proto";
  17. import "google/api/client.proto";
  18. import "google/api/field_behavior.proto";
  19. import "google/api/resource.proto";
  20. import "google/longrunning/operations.proto";
  21. import "google/protobuf/field_mask.proto";
  22. import "google/protobuf/timestamp.proto";
  23. option go_package = "google.golang.org/genproto/googleapis/cloud/orchestration/airflow/service/v1beta1;service";
  24. option java_multiple_files = true;
  25. option java_package = "com.google.cloud.orchestration.airflow.service.v1beta1";
  26. // Managed Apache Airflow Environments.
  27. service Environments {
  28. option (google.api.default_host) = "composer.googleapis.com";
  29. option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
  30. // Create a new environment.
  31. rpc CreateEnvironment(CreateEnvironmentRequest) returns (google.longrunning.Operation) {
  32. option (google.api.http) = {
  33. post: "/v1beta1/{parent=projects/*/locations/*}/environments"
  34. body: "environment"
  35. };
  36. option (google.api.method_signature) = "parent,environment";
  37. option (google.longrunning.operation_info) = {
  38. response_type: "Environment"
  39. metadata_type: "google.cloud.orchestration.airflow.service.v1beta1.OperationMetadata"
  40. };
  41. }
  42. // Get an existing environment.
  43. rpc GetEnvironment(GetEnvironmentRequest) returns (Environment) {
  44. option (google.api.http) = {
  45. get: "/v1beta1/{name=projects/*/locations/*/environments/*}"
  46. };
  47. option (google.api.method_signature) = "name";
  48. }
  49. // List environments.
  50. rpc ListEnvironments(ListEnvironmentsRequest) returns (ListEnvironmentsResponse) {
  51. option (google.api.http) = {
  52. get: "/v1beta1/{parent=projects/*/locations/*}/environments"
  53. };
  54. option (google.api.method_signature) = "parent";
  55. }
  56. // Update an environment.
  57. rpc UpdateEnvironment(UpdateEnvironmentRequest) returns (google.longrunning.Operation) {
  58. option (google.api.http) = {
  59. patch: "/v1beta1/{name=projects/*/locations/*/environments/*}"
  60. body: "environment"
  61. };
  62. option (google.api.method_signature) = "name,environment,update_mask";
  63. option (google.longrunning.operation_info) = {
  64. response_type: "Environment"
  65. metadata_type: "google.cloud.orchestration.airflow.service.v1beta1.OperationMetadata"
  66. };
  67. }
  68. // Delete an environment.
  69. rpc DeleteEnvironment(DeleteEnvironmentRequest) returns (google.longrunning.Operation) {
  70. option (google.api.http) = {
  71. delete: "/v1beta1/{name=projects/*/locations/*/environments/*}"
  72. };
  73. option (google.api.method_signature) = "name";
  74. option (google.longrunning.operation_info) = {
  75. response_type: "google.protobuf.Empty"
  76. metadata_type: "google.cloud.orchestration.airflow.service.v1beta1.OperationMetadata"
  77. };
  78. }
  79. // Restart Airflow web server.
  80. rpc RestartWebServer(RestartWebServerRequest) returns (google.longrunning.Operation) {
  81. option (google.api.http) = {
  82. post: "/v1beta1/{name=projects/*/locations/*/environments/*}:restartWebServer"
  83. body: "*"
  84. };
  85. option (google.longrunning.operation_info) = {
  86. response_type: "Environment"
  87. metadata_type: "google.cloud.orchestration.airflow.service.v1beta1.OperationMetadata"
  88. };
  89. }
  90. // Check if an upgrade operation on the environment will succeed.
  91. //
  92. // In case of problems detailed info can be found in the returned Operation.
  93. rpc CheckUpgrade(CheckUpgradeRequest) returns (google.longrunning.Operation) {
  94. option (google.api.http) = {
  95. post: "/v1beta1/{environment=projects/*/locations/*/environments/*}:checkUpgrade"
  96. body: "*"
  97. };
  98. option (google.longrunning.operation_info) = {
  99. response_type: "google.cloud.orchestration.airflow.service.v1beta1.CheckUpgradeResponse"
  100. metadata_type: "google.cloud.orchestration.airflow.service.v1beta1.OperationMetadata"
  101. };
  102. }
  103. }
  104. // Create a new environment.
  105. message CreateEnvironmentRequest {
  106. // The parent must be of the form
  107. // "projects/{projectId}/locations/{locationId}".
  108. string parent = 1;
  109. // The environment to create.
  110. Environment environment = 2;
  111. }
  112. // Get an environment.
  113. message GetEnvironmentRequest {
  114. // The resource name of the environment to get, in the form:
  115. // "projects/{projectId}/locations/{locationId}/environments/{environmentId}"
  116. string name = 1;
  117. }
  118. // List environments in a project and location.
  119. message ListEnvironmentsRequest {
  120. // List environments in the given project and location, in the form:
  121. // "projects/{projectId}/locations/{locationId}"
  122. string parent = 1;
  123. // The maximum number of environments to return.
  124. int32 page_size = 2;
  125. // The next_page_token value returned from a previous List request, if any.
  126. string page_token = 3;
  127. }
  128. // The environments in a project and location.
  129. message ListEnvironmentsResponse {
  130. // The list of environments returned by a ListEnvironmentsRequest.
  131. repeated Environment environments = 1;
  132. // The page token used to query for the next page if one exists.
  133. string next_page_token = 2;
  134. }
  135. // Delete an environment.
  136. message DeleteEnvironmentRequest {
  137. // The environment to delete, in the form:
  138. // "projects/{projectId}/locations/{locationId}/environments/{environmentId}"
  139. string name = 1;
  140. }
  141. // Update an environment.
  142. message UpdateEnvironmentRequest {
  143. // The relative resource name of the environment to update, in the form:
  144. // "projects/{projectId}/locations/{locationId}/environments/{environmentId}"
  145. string name = 2;
  146. // A patch environment. Fields specified by the `updateMask` will be copied
  147. // from the patch environment into the environment under update.
  148. Environment environment = 1;
  149. // Required. A comma-separated list of paths, relative to `Environment`, of
  150. // fields to update.
  151. // For example, to set the version of scikit-learn to install in the
  152. // environment to 0.19.0 and to remove an existing installation of
  153. // argparse, the `updateMask` parameter would include the following two
  154. // `paths` values: "config.softwareConfig.pypiPackages.scikit-learn" and
  155. // "config.softwareConfig.pypiPackages.argparse". The included patch
  156. // environment would specify the scikit-learn version as follows:
  157. //
  158. // {
  159. // "config":{
  160. // "softwareConfig":{
  161. // "pypiPackages":{
  162. // "scikit-learn":"==0.19.0"
  163. // }
  164. // }
  165. // }
  166. // }
  167. //
  168. // Note that in the above example, any existing PyPI packages
  169. // other than scikit-learn and argparse will be unaffected.
  170. //
  171. // Only one update type may be included in a single request's `updateMask`.
  172. // For example, one cannot update both the PyPI packages and
  173. // labels in the same request. However, it is possible to update multiple
  174. // members of a map field simultaneously in the same request. For example,
  175. // to set the labels "label1" and "label2" while clearing "label3" (assuming
  176. // it already exists), one can
  177. // provide the paths "labels.label1", "labels.label2", and "labels.label3"
  178. // and populate the patch environment as follows:
  179. //
  180. // {
  181. // "labels":{
  182. // "label1":"new-label1-value"
  183. // "label2":"new-label2-value"
  184. // }
  185. // }
  186. //
  187. // Note that in the above example, any existing labels that are not
  188. // included in the `updateMask` will be unaffected.
  189. //
  190. // It is also possible to replace an entire map field by providing the
  191. // map field's path in the `updateMask`. The new value of the field will
  192. // be that which is provided in the patch environment. For example, to
  193. // delete all pre-existing user-specified PyPI packages and
  194. // install botocore at version 1.7.14, the `updateMask` would contain
  195. // the path "config.softwareConfig.pypiPackages", and
  196. // the patch environment would be the following:
  197. //
  198. // {
  199. // "config":{
  200. // "softwareConfig":{
  201. // "pypiPackages":{
  202. // "botocore":"==1.7.14"
  203. // }
  204. // }
  205. // }
  206. // }
  207. //
  208. // **Note:** Only the following fields can be updated:
  209. //
  210. // * `config.softwareConfig.pypiPackages`
  211. // * Replace all custom custom PyPI packages. If a replacement
  212. // package map is not included in `environment`, all custom
  213. // PyPI packages are cleared. It is an error to provide both
  214. // this mask and a mask specifying an individual package.
  215. // * `config.softwareConfig.pypiPackages.`packagename
  216. // * Update the custom PyPI package *packagename*,
  217. // preserving other packages. To delete the package, include it in
  218. // `updateMask`, and omit the mapping for it in
  219. // `environment.config.softwareConfig.pypiPackages`. It is an error
  220. // to provide both a mask of this form and the
  221. // `config.softwareConfig.pypiPackages` mask.
  222. // * `labels`
  223. // * Replace all environment labels. If a replacement labels map is not
  224. // included in `environment`, all labels are cleared. It is an error to
  225. // provide both this mask and a mask specifying one or more individual
  226. // labels.
  227. // * `labels.`labelName
  228. // * Set the label named *labelName*, while preserving other
  229. // labels. To delete the label, include it in `updateMask` and omit its
  230. // mapping in `environment.labels`. It is an error to provide both a
  231. // mask of this form and the `labels` mask.
  232. // * `config.nodeCount`
  233. // * Horizontally scale the number of nodes in the environment. An integer
  234. // greater than or equal to 3 must be provided in the `config.nodeCount`
  235. // field. * `config.webServerNetworkAccessControl`
  236. // * Replace the environment's current WebServerNetworkAccessControl.
  237. // * `config.softwareConfig.airflowConfigOverrides`
  238. // * Replace all Apache Airflow config overrides. If a replacement config
  239. // overrides map is not included in `environment`, all config overrides
  240. // are cleared.
  241. // It is an error to provide both this mask and a mask specifying one or
  242. // more individual config overrides.
  243. // * `config.softwareConfig.airflowConfigOverrides.`section-name
  244. // * Override the Apache Airflow config property *name* in the
  245. // section named *section*, preserving other properties. To
  246. // delete the property override, include it in `updateMask` and omit its
  247. // mapping in
  248. // `environment.config.softwareConfig.airflowConfigOverrides`.
  249. // It is an error to provide both a mask of this form and the
  250. // `config.softwareConfig.airflowConfigOverrides` mask.
  251. // * `config.softwareConfig.envVariables`
  252. // * Replace all environment variables. If a replacement environment
  253. // variable map is not included in `environment`, all custom environment
  254. // variables are cleared.
  255. // It is an error to provide both this mask and a mask specifying one or
  256. // more individual environment variables.
  257. // * `config.softwareConfig.imageVersion`
  258. // * Upgrade the version of the environment in-place. Refer to
  259. // `SoftwareConfig.image_version` for information on how to format the
  260. // new image version. Additionally, the new image version cannot effect
  261. // a version downgrade and must match the current image version's
  262. // Composer major version and Airflow major and minor versions. Consult
  263. // the [Cloud Composer Version
  264. // List](https://cloud.google.com/composer/docs/concepts/versioning/composer-versions)
  265. // for valid values.
  266. // * `config.softwareConfig.schedulerCount`
  267. // * Horizontally scale the number of schedulers in Airflow. A positive
  268. // integer not greater than the number of nodes must be provided in the
  269. // `config.softwareConfig.schedulerCount` field. * `config.databaseConfig.machineType`
  270. // * Cloud SQL machine type used by Airflow database.
  271. // It has to be one of: db-n1-standard-2, db-n1-standard-4,
  272. // db-n1-standard-8 or db-n1-standard-16. * `config.webServerConfig.machineType`
  273. // * Machine type on which Airflow web server is running.
  274. // It has to be one of: composer-n1-webserver-2, composer-n1-webserver-4
  275. // or composer-n1-webserver-8. * `config.maintenanceWindow`
  276. // * Maintenance window during which Cloud Composer components may be
  277. // under maintenance.
  278. google.protobuf.FieldMask update_mask = 3 [(google.api.field_behavior) = REQUIRED];
  279. }
  280. // Restart Airflow web server.
  281. message RestartWebServerRequest {
  282. // The resource name of the environment to restart the web server for, in the
  283. // form:
  284. // "projects/{projectId}/locations/{locationId}/environments/{environmentId}"
  285. string name = 1;
  286. }
  287. // Configuration information for an environment.
  288. message EnvironmentConfig {
  289. // The size of the Cloud Composer environment.
  290. enum EnvironmentSize {
  291. // The size of the environment is unspecified.
  292. ENVIRONMENT_SIZE_UNSPECIFIED = 0;
  293. // The environment size is small.
  294. ENVIRONMENT_SIZE_SMALL = 1;
  295. // The environment size is medium.
  296. ENVIRONMENT_SIZE_MEDIUM = 2;
  297. // The environment size is large.
  298. ENVIRONMENT_SIZE_LARGE = 3;
  299. }
  300. // Output only. The Kubernetes Engine cluster used to run this environment.
  301. string gke_cluster = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
  302. // Output only. The Cloud Storage prefix of the DAGs for this environment. Although Cloud
  303. // Storage objects reside in a flat namespace, a hierarchical file tree
  304. // can be simulated using "/"-delimited object name prefixes. DAG objects for
  305. // this environment reside in a simulated directory with the given prefix.
  306. string dag_gcs_prefix = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
  307. // The number of nodes in the Kubernetes Engine cluster that will be
  308. // used to run this environment.
  309. int32 node_count = 3;
  310. // The configuration settings for software inside the environment.
  311. SoftwareConfig software_config = 4;
  312. // The configuration used for the Kubernetes Engine cluster.
  313. NodeConfig node_config = 5;
  314. // The configuration used for the Private IP Cloud Composer environment.
  315. PrivateEnvironmentConfig private_environment_config = 7;
  316. // Optional. The network-level access control policy for the Airflow web server. If
  317. // unspecified, no network-level access restrictions will be applied.
  318. WebServerNetworkAccessControl web_server_network_access_control = 9 [(google.api.field_behavior) = OPTIONAL];
  319. // Optional. The configuration settings for Cloud SQL instance used internally by Apache
  320. // Airflow software.
  321. DatabaseConfig database_config = 10 [(google.api.field_behavior) = OPTIONAL];
  322. // Optional. The configuration settings for the Airflow web server App Engine instance.
  323. WebServerConfig web_server_config = 11 [(google.api.field_behavior) = OPTIONAL];
  324. // Output only. The URI of the Apache Airflow Web UI hosted within this environment (see
  325. // [Airflow web
  326. // interface](/composer/docs/how-to/accessing/airflow-web-interface)).
  327. string airflow_uri = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
  328. // Optional. The encryption options for the Cloud Composer environment and its
  329. // dependencies. Cannot be updated.
  330. EncryptionConfig encryption_config = 12 [(google.api.field_behavior) = OPTIONAL];
  331. // Optional. The maintenance window is the period when Cloud Composer components may
  332. // undergo maintenance. It is defined so that maintenance is not executed
  333. // during peak hours or critical time periods.
  334. //
  335. // The system will not be under maintenance for every occurrence of this
  336. // window, but when maintenance is planned, it will be scheduled
  337. // during the window.
  338. //
  339. // The maintenance window period must encompass at least 12 hours per week.
  340. // This may be split into multiple chunks, each with a size of
  341. // at least 4 hours.
  342. //
  343. // If this value is omitted, Cloud Composer components may be subject to
  344. // maintenance at any time.
  345. MaintenanceWindow maintenance_window = 13 [(google.api.field_behavior) = OPTIONAL];
  346. // Optional. The workloads configuration settings for the GKE cluster associated with
  347. // the Cloud Composer environment. The GKE cluster runs Airflow scheduler, web
  348. // server and workers workloads.
  349. //
  350. // This field is supported for Cloud Composer environments in versions
  351. // composer-2.*.*-airflow-*.*.* and newer.
  352. WorkloadsConfig workloads_config = 15 [(google.api.field_behavior) = OPTIONAL];
  353. // Optional. The size of the Cloud Composer environment.
  354. //
  355. // This field is supported for Cloud Composer environments in versions
  356. // composer-2.*.*-airflow-*.*.* and newer.
  357. EnvironmentSize environment_size = 16 [(google.api.field_behavior) = OPTIONAL];
  358. }
  359. // Network-level access control policy for the Airflow web server.
  360. message WebServerNetworkAccessControl {
  361. // Allowed IP range with user-provided description.
  362. message AllowedIpRange {
  363. // IP address or range, defined using CIDR notation, of requests that this
  364. // rule applies to.
  365. // Examples: `192.168.1.1` or `192.168.0.0/16` or `2001:db8::/32`
  366. // or `2001:0db8:0000:0042:0000:8a2e:0370:7334`.
  367. //
  368. // IP range prefixes should be properly truncated. For example,
  369. // `1.2.3.4/24` should be truncated to `1.2.3.0/24`. Similarly, for IPv6,
  370. // `2001:db8::1/32` should be truncated to `2001:db8::/32`.
  371. string value = 1;
  372. // Optional. User-provided description. It must contain at most 300 characters.
  373. string description = 2 [(google.api.field_behavior) = OPTIONAL];
  374. }
  375. // A collection of allowed IP ranges with descriptions.
  376. repeated AllowedIpRange allowed_ip_ranges = 1;
  377. }
  378. // Specifies the selection and configuration of software inside the environment.
  379. message SoftwareConfig {
  380. // The version of the software running in the environment.
  381. // This encapsulates both the version of Cloud Composer functionality and the
  382. // version of Apache Airflow. It must match the regular expression
  383. // `composer-([0-9]+\.[0-9]+\.[0-9]+|latest)-airflow-[0-9]+\.[0-9]+(\.[0-9]+.*)?`.
  384. // When used as input, the server also checks if the provided version is
  385. // supported and denies the request for an unsupported version.
  386. //
  387. // The Cloud Composer portion of the version is a
  388. // [semantic version](https://semver.org) or `latest`. When the patch version
  389. // is omitted, the current Cloud Composer patch version is selected.
  390. // When `latest` is provided instead of an explicit version number,
  391. // the server replaces `latest` with the current Cloud Composer version
  392. // and stores that version number in the same field.
  393. //
  394. // The portion of the image version that follows *airflow-* is an
  395. // official Apache Airflow repository
  396. // [release name](https://github.com/apache/incubator-airflow/releases).
  397. //
  398. // See also [Version
  399. // List](/composer/docs/concepts/versioning/composer-versions).
  400. string image_version = 1;
  401. // Optional. Apache Airflow configuration properties to override.
  402. //
  403. // Property keys contain the section and property names, separated by a
  404. // hyphen, for example "core-dags_are_paused_at_creation". Section names must
  405. // not contain hyphens ("-"), opening square brackets ("["), or closing
  406. // square brackets ("]"). The property name must not be empty and must not
  407. // contain an equals sign ("=") or semicolon (";"). Section and property names
  408. // must not contain a period ("."). Apache Airflow configuration property
  409. // names must be written in
  410. // [snake_case](https://en.wikipedia.org/wiki/Snake_case). Property values can
  411. // contain any character, and can be written in any lower/upper case format.
  412. //
  413. // Certain Apache Airflow configuration property values are
  414. // [blocked](/composer/docs/concepts/airflow-configurations),
  415. // and cannot be overridden.
  416. map<string, string> airflow_config_overrides = 2 [(google.api.field_behavior) = OPTIONAL];
  417. // Optional. Custom Python Package Index (PyPI) packages to be installed in
  418. // the environment.
  419. //
  420. // Keys refer to the lowercase package name such as "numpy"
  421. // and values are the lowercase extras and version specifier such as
  422. // "==1.12.0", "[devel,gcp_api]", or "[devel]>=1.8.2, <1.9.2". To specify a
  423. // package without pinning it to a version specifier, use the empty string as
  424. // the value.
  425. map<string, string> pypi_packages = 3 [(google.api.field_behavior) = OPTIONAL];
  426. // Optional. Additional environment variables to provide to the Apache Airflow
  427. // scheduler, worker, and webserver processes.
  428. //
  429. // Environment variable names must match the regular expression
  430. // `[a-zA-Z_][a-zA-Z0-9_]*`. They cannot specify Apache Airflow
  431. // software configuration overrides (they cannot match the regular expression
  432. // `AIRFLOW__[A-Z0-9_]+__[A-Z0-9_]+`), and they cannot match any of the
  433. // following reserved names:
  434. //
  435. // * `AIRFLOW_HOME`
  436. // * `C_FORCE_ROOT`
  437. // * `CONTAINER_NAME`
  438. // * `DAGS_FOLDER`
  439. // * `GCP_PROJECT`
  440. // * `GCS_BUCKET`
  441. // * `GKE_CLUSTER_NAME`
  442. // * `SQL_DATABASE`
  443. // * `SQL_INSTANCE`
  444. // * `SQL_PASSWORD`
  445. // * `SQL_PROJECT`
  446. // * `SQL_REGION`
  447. // * `SQL_USER`
  448. map<string, string> env_variables = 4 [(google.api.field_behavior) = OPTIONAL];
  449. // Optional. The major version of Python used to run the Apache Airflow
  450. // scheduler, worker, and webserver processes.
  451. //
  452. // Can be set to '2' or '3'. If not specified, the default is '3'. Cannot be
  453. // updated.
  454. string python_version = 6 [(google.api.field_behavior) = OPTIONAL];
  455. }
  456. // Configuration for controlling how IPs are allocated in the
  457. // GKE cluster.
  458. message IPAllocationPolicy {
  459. // Optional. Whether or not to enable Alias IPs in the GKE cluster.
  460. // If `true`, a VPC-native cluster is created.
  461. bool use_ip_aliases = 1 [(google.api.field_behavior) = OPTIONAL];
  462. // Optional. The name of the cluster's secondary range used to allocate
  463. // IP addresses to pods. Specify either `cluster_secondary_range_name`
  464. // or `cluster_ipv4_cidr_block` but not both.
  465. //
  466. // This field is applicable only when `use_ip_aliases` is true.
  467. string cluster_secondary_range_name = 2 [(google.api.field_behavior) = OPTIONAL];
  468. // Optional. The name of the services' secondary range used to allocate
  469. // IP addresses to the cluster. Specify either `services_secondary_range_name`
  470. // or `services_ipv4_cidr_block` but not both.
  471. //
  472. // This field is applicable only when `use_ip_aliases` is true.
  473. string services_secondary_range_name = 3 [(google.api.field_behavior) = OPTIONAL];
  474. // Optional. The IP address range used to allocate IP addresses to pods in
  475. // the cluster.
  476. //
  477. // This field is applicable only when `use_ip_aliases` is true.
  478. //
  479. //
  480. // Set to blank to have GKE choose a range with the default size.
  481. //
  482. // Set to /netmask (e.g. `/14`) to have GKE choose a range with a specific
  483. // netmask.
  484. //
  485. // Set to a
  486. // [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing)
  487. // notation (e.g. `10.96.0.0/14`) from the RFC-1918 private networks (e.g.
  488. // `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`) to pick a specific range
  489. // to use.
  490. // Specify `cluster_secondary_range_name` or `cluster_ipv4_cidr_block`
  491. // but not both.
  492. string cluster_ipv4_cidr_block = 4 [(google.api.field_behavior) = OPTIONAL];
  493. // Optional. The IP address range of the services IP addresses in this
  494. // cluster.
  495. //
  496. // This field is applicable only when `use_ip_aliases` is true.
  497. //
  498. //
  499. // Set to blank to have GKE choose a range with the default size.
  500. //
  501. // Set to /netmask (e.g. `/14`) to have GKE choose a range with a specific
  502. // netmask.
  503. //
  504. // Set to a
  505. // [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing)
  506. // notation (e.g. `10.96.0.0/14`) from the RFC-1918 private networks (e.g.
  507. // `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`) to pick a specific range
  508. // to use.
  509. // Specify `services_secondary_range_name` or `services_ipv4_cidr_block`
  510. // but not both.
  511. string services_ipv4_cidr_block = 5 [(google.api.field_behavior) = OPTIONAL];
  512. }
  513. // The configuration information for the Kubernetes Engine nodes running
  514. // the Apache Airflow software.
  515. message NodeConfig {
  516. // Optional. The Compute Engine [zone](/compute/docs/regions-zones) in which
  517. // to deploy the VMs used to run the Apache Airflow software, specified as a
  518. // [relative resource
  519. // name](/apis/design/resource_names#relative_resource_name). For example:
  520. // "projects/{projectId}/zones/{zoneId}".
  521. //
  522. // This `location` must belong to the enclosing environment's project and
  523. // location. If both this field and `nodeConfig.machineType` are specified,
  524. // `nodeConfig.machineType` must belong to this `location`; if both are
  525. // unspecified, the service will pick a zone in the Compute Engine region
  526. // corresponding to the Cloud Composer location, and propagate that choice to
  527. // both fields. If only one field (`location` or `nodeConfig.machineType`) is
  528. // specified, the location information from the specified field will be
  529. // propagated to the unspecified field.
  530. string location = 1 [(google.api.field_behavior) = OPTIONAL];
  531. // Optional. The Compute Engine
  532. // [machine type](/compute/docs/machine-types) used for cluster instances,
  533. // specified as a
  534. // [relative resource
  535. // name](/apis/design/resource_names#relative_resource_name). For example:
  536. // "projects/{projectId}/zones/{zoneId}/machineTypes/{machineTypeId}".
  537. //
  538. // The `machineType` must belong to the enclosing environment's project and
  539. // location. If both this field and `nodeConfig.location` are specified,
  540. // this `machineType` must belong to the `nodeConfig.location`; if both are
  541. // unspecified, the service will pick a zone in the Compute Engine region
  542. // corresponding to the Cloud Composer location, and propagate that choice to
  543. // both fields. If exactly one of this field and `nodeConfig.location` is
  544. // specified, the location information from the specified field will be
  545. // propagated to the unspecified field.
  546. //
  547. // The `machineTypeId` must not be a [shared-core machine
  548. // type](/compute/docs/machine-types#sharedcore).
  549. //
  550. // If this field is unspecified, the `machineTypeId` defaults
  551. // to "n1-standard-1".
  552. string machine_type = 2 [(google.api.field_behavior) = OPTIONAL];
  553. // Optional. The Compute Engine network to be used for machine
  554. // communications, specified as a
  555. // [relative resource
  556. // name](/apis/design/resource_names#relative_resource_name). For example:
  557. // "projects/{projectId}/global/networks/{networkId}".
  558. //
  559. // If unspecified, the default network in the environment's project is used.
  560. // If a [Custom Subnet Network](/vpc/docs/vpc#vpc_networks_and_subnets)
  561. // is provided, `nodeConfig.subnetwork` must also be provided. For
  562. // [Shared VPC](/vpc/docs/shared-vpc) subnetwork requirements, see
  563. // `nodeConfig.subnetwork`.
  564. string network = 3 [(google.api.field_behavior) = OPTIONAL];
  565. // Optional. The Compute Engine subnetwork to be used for machine
  566. // communications, specified as a
  567. // [relative resource
  568. // name](/apis/design/resource_names#relative_resource_name). For example:
  569. // "projects/{projectId}/regions/{regionId}/subnetworks/{subnetworkId}"
  570. //
  571. // If a subnetwork is provided, `nodeConfig.network` must also be provided,
  572. // and the subnetwork must belong to the enclosing environment's project and
  573. // location.
  574. string subnetwork = 4 [(google.api.field_behavior) = OPTIONAL];
  575. // Optional. The disk size in GB used for node VMs. Minimum size is 20GB.
  576. // If unspecified, defaults to 100GB. Cannot be updated.
  577. int32 disk_size_gb = 5 [(google.api.field_behavior) = OPTIONAL];
  578. // Optional. The set of Google API scopes to be made available on all
  579. // node VMs. If `oauth_scopes` is empty, defaults to
  580. // ["https://www.googleapis.com/auth/cloud-platform"]. Cannot be updated.
  581. repeated string oauth_scopes = 6 [(google.api.field_behavior) = OPTIONAL];
  582. // Optional. The Google Cloud Platform Service Account to be used by the workloads. If a
  583. // service account is not specified, the "default" Compute Engine service
  584. // account is used. Cannot be updated.
  585. string service_account = 7 [(google.api.field_behavior) = OPTIONAL];
  586. // Optional. The list of instance tags applied to all node VMs. Tags are used
  587. // to identify valid sources or targets for network firewalls. Each tag within
  588. // the list must comply with [RFC1035](https://www.ietf.org/rfc/rfc1035.txt).
  589. // Cannot be updated.
  590. repeated string tags = 8 [(google.api.field_behavior) = OPTIONAL];
  591. // Optional. The IPAllocationPolicy fields for the GKE cluster.
  592. IPAllocationPolicy ip_allocation_policy = 9 [(google.api.field_behavior) = OPTIONAL];
  593. // Optional. The maximum number of pods per node in the Cloud Composer GKE cluster.
  594. // The value must be between 8 and 110 and it can be set only if
  595. // the environment is VPC-native.
  596. // The default value is 32. Values of this field will be propagated both to
  597. // the `default-pool` node pool of the newly created GKE cluster, and to the
  598. // default "Maximum Pods per Node" value which is used for newly created
  599. // node pools if their value is not explicitly set during node pool creation.
  600. // For more information, see [Optimizing IP address allocation]
  601. // (https://cloud.google.com/kubernetes-engine/docs/how-to/flexible-pod-cidr).
  602. // Cannot be updated.
  603. int32 max_pods_per_node = 10 [(google.api.field_behavior) = OPTIONAL];
  604. }
  605. // Configuration options for the private GKE cluster in a Cloud Composer
  606. // environment.
  607. message PrivateClusterConfig {
  608. // Optional. If `true`, access to the public endpoint of the GKE cluster is
  609. // denied.
  610. bool enable_private_endpoint = 1 [(google.api.field_behavior) = OPTIONAL];
  611. // Optional. The CIDR block from which IPv4 range for GKE master will be reserved. If
  612. // left blank, the default value of '172.16.0.0/23' is used.
  613. string master_ipv4_cidr_block = 2 [(google.api.field_behavior) = OPTIONAL];
  614. // Output only. The IP range in CIDR notation to use for the hosted master network. This
  615. // range is used for assigning internal IP addresses to the cluster
  616. // master or set of masters and to the internal load balancer virtual IP.
  617. // This range must not overlap with any other ranges in use
  618. // within the cluster's network.
  619. string master_ipv4_reserved_range = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
  620. }
  621. // The configuration information for configuring a Private IP Cloud Composer
  622. // environment.
  623. message PrivateEnvironmentConfig {
  624. // Optional. If `true`, a Private IP Cloud Composer environment is created.
  625. // If this field is set to true, `IPAllocationPolicy.use_ip_aliases` must be
  626. // set to true .
  627. bool enable_private_environment = 1 [(google.api.field_behavior) = OPTIONAL];
  628. // Optional. Configuration for the private GKE cluster for a Private IP
  629. // Cloud Composer environment.
  630. PrivateClusterConfig private_cluster_config = 2 [(google.api.field_behavior) = OPTIONAL];
  631. // Optional. The CIDR block from which IP range for web server will be reserved. Needs
  632. // to be disjoint from private_cluster_config.master_ipv4_cidr_block and
  633. // cloud_sql_ipv4_cidr_block.
  634. string web_server_ipv4_cidr_block = 3 [(google.api.field_behavior) = OPTIONAL];
  635. // Optional. The CIDR block from which IP range in tenant project will be reserved for
  636. // Cloud SQL. Needs to be disjoint from web_server_ipv4_cidr_block
  637. string cloud_sql_ipv4_cidr_block = 4 [(google.api.field_behavior) = OPTIONAL];
  638. // Output only. The IP range reserved for the tenant project's App Engine VMs.
  639. string web_server_ipv4_reserved_range = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
  640. // Optional. The CIDR block from which IP range for Cloud Composer Network in tenant
  641. // project will be reserved. Needs to be disjoint from
  642. // private_cluster_config.master_ipv4_cidr_block and
  643. // cloud_sql_ipv4_cidr_block.
  644. //
  645. // This field is supported for Cloud Composer environments in versions
  646. // composer-2.*.*-airflow-*.*.* and newer.
  647. string cloud_composer_network_ipv4_cidr_block = 7 [(google.api.field_behavior) = OPTIONAL];
  648. // Output only. The IP range reserved for the tenant project's Cloud Composer network.
  649. //
  650. // This field is supported for Cloud Composer environments in versions
  651. // composer-2.*.*-airflow-*.*.* and newer.
  652. string cloud_composer_network_ipv4_reserved_range = 8 [(google.api.field_behavior) = OUTPUT_ONLY];
  653. }
  654. // The configuration of Cloud SQL instance that is used by the Apache Airflow
  655. // software.
  656. message DatabaseConfig {
  657. // Optional. Cloud SQL machine type used by Airflow database.
  658. // It has to be one of: db-n1-standard-2, db-n1-standard-4, db-n1-standard-8
  659. // or db-n1-standard-16. If not specified, db-n1-standard-2 will be used.
  660. string machine_type = 1 [(google.api.field_behavior) = OPTIONAL];
  661. }
  662. // The configuration settings for the Airflow web server App Engine instance.
  663. message WebServerConfig {
  664. // Optional. Machine type on which Airflow web server is running.
  665. // It has to be one of: composer-n1-webserver-2, composer-n1-webserver-4 or
  666. // composer-n1-webserver-8.
  667. // If not specified, composer-n1-webserver-2 will be used.
  668. // Value custom is returned only in response, if Airflow web server parameters
  669. // were manually changed to a non-standard values.
  670. string machine_type = 1 [(google.api.field_behavior) = OPTIONAL];
  671. }
  672. // The encryption options for the Cloud Composer environment and its
  673. // dependencies.
  674. message EncryptionConfig {
  675. // Optional. Customer-managed Encryption Key available through Google's Key Management
  676. // Service. Cannot be updated.
  677. // If not specified, Google-managed key will be used.
  678. string kms_key_name = 1 [(google.api.field_behavior) = OPTIONAL];
  679. }
  680. // The configuration settings for Cloud Composer maintenance window.
  681. // The following example:
  682. //
  683. // ```
  684. // {
  685. // "startTime":"2019-08-01T01:00:00Z"
  686. // "endTime":"2019-08-01T07:00:00Z"
  687. // "recurrence":"FREQ=WEEKLY;BYDAY=TU,WE"
  688. // }
  689. // ```
  690. //
  691. // would define a maintenance window between 01 and 07 hours UTC during
  692. // each Tuesday and Wednesday.
  693. message MaintenanceWindow {
  694. // Required. Start time of the first recurrence of the maintenance window.
  695. google.protobuf.Timestamp start_time = 1 [(google.api.field_behavior) = REQUIRED];
  696. // Required. Maintenance window end time. It is used only to calculate the duration of
  697. // the maintenance window.
  698. // The value for end_time must be in the future, relative to `start_time`.
  699. google.protobuf.Timestamp end_time = 2 [(google.api.field_behavior) = REQUIRED];
  700. // Required. Maintenance window recurrence. Format is a subset of
  701. // [RFC-5545](https://tools.ietf.org/html/rfc5545) `RRULE`. The only allowed
  702. // values for `FREQ` field are `FREQ=DAILY` and `FREQ=WEEKLY;BYDAY=...`
  703. // Example values: `FREQ=WEEKLY;BYDAY=TU,WE`, `FREQ=DAILY`.
  704. string recurrence = 3 [(google.api.field_behavior) = REQUIRED];
  705. }
  706. // The Kubernetes workloads configuration for GKE cluster associated with the
  707. // Cloud Composer environment. Supported for Cloud Composer environments in
  708. // versions composer-2.*.*-airflow-*.*.* and newer.
  709. message WorkloadsConfig {
  710. // Configuration for resources used by Airflow schedulers.
  711. message SchedulerResource {
  712. // Optional. CPU request and limit for a single Airflow scheduler replica.
  713. float cpu = 1 [(google.api.field_behavior) = OPTIONAL];
  714. // Optional. Memory (GB) request and limit for a single Airflow scheduler replica.
  715. float memory_gb = 2 [(google.api.field_behavior) = OPTIONAL];
  716. // Optional. Storage (GB) request and limit for a single Airflow scheduler replica.
  717. float storage_gb = 3 [(google.api.field_behavior) = OPTIONAL];
  718. // Optional. The number of schedulers.
  719. int32 count = 4 [(google.api.field_behavior) = OPTIONAL];
  720. }
  721. // Configuration for resources used by Airflow web server.
  722. message WebServerResource {
  723. // Optional. CPU request and limit for Airflow web server.
  724. float cpu = 1 [(google.api.field_behavior) = OPTIONAL];
  725. // Optional. Memory (GB) request and limit for Airflow web server.
  726. float memory_gb = 2 [(google.api.field_behavior) = OPTIONAL];
  727. // Optional. Storage (GB) request and limit for Airflow web server.
  728. float storage_gb = 3 [(google.api.field_behavior) = OPTIONAL];
  729. }
  730. // Configuration for resources used by Airflow workers.
  731. message WorkerResource {
  732. // Optional. CPU request and limit for a single Airflow worker replica.
  733. float cpu = 1 [(google.api.field_behavior) = OPTIONAL];
  734. // Optional. Memory (GB) request and limit for a single Airflow worker replica.
  735. float memory_gb = 2 [(google.api.field_behavior) = OPTIONAL];
  736. // Optional. Storage (GB) request and limit for a single Airflow worker replica.
  737. float storage_gb = 3 [(google.api.field_behavior) = OPTIONAL];
  738. // Optional. Minimum number of workers for autoscaling.
  739. int32 min_count = 4 [(google.api.field_behavior) = OPTIONAL];
  740. // Optional. Maximum number of workers for autoscaling.
  741. int32 max_count = 5 [(google.api.field_behavior) = OPTIONAL];
  742. }
  743. // Optional. Resources used by Airflow schedulers.
  744. SchedulerResource scheduler = 1 [(google.api.field_behavior) = OPTIONAL];
  745. // Optional. Resources used by Airflow web server.
  746. WebServerResource web_server = 2 [(google.api.field_behavior) = OPTIONAL];
  747. // Optional. Resources used by Airflow workers.
  748. WorkerResource worker = 3 [(google.api.field_behavior) = OPTIONAL];
  749. }
  750. // An environment for running orchestration tasks.
  751. message Environment {
  752. option (google.api.resource) = {
  753. type: "composer.googleapis.com/Environment"
  754. pattern: "projects/{project}/locations/{location}/environments/{environment}"
  755. };
  756. // State of the environment.
  757. enum State {
  758. // The state of the environment is unknown.
  759. STATE_UNSPECIFIED = 0;
  760. // The environment is in the process of being created.
  761. CREATING = 1;
  762. // The environment is currently running and healthy. It is ready for use.
  763. RUNNING = 2;
  764. // The environment is being updated. It remains usable but cannot receive
  765. // additional update requests or be deleted at this time.
  766. UPDATING = 3;
  767. // The environment is undergoing deletion. It cannot be used.
  768. DELETING = 4;
  769. // The environment has encountered an error and cannot be used.
  770. ERROR = 5;
  771. }
  772. // The resource name of the environment, in the form:
  773. // "projects/{projectId}/locations/{locationId}/environments/{environmentId}"
  774. //
  775. // EnvironmentId must start with a lowercase letter followed by up to 63
  776. // lowercase letters, numbers, or hyphens, and cannot end with a hyphen.
  777. string name = 1;
  778. // Configuration parameters for this environment.
  779. EnvironmentConfig config = 2;
  780. // Output only. The UUID (Universally Unique IDentifier) associated with this environment.
  781. // This value is generated when the environment is created.
  782. string uuid = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
  783. // The current state of the environment.
  784. State state = 4;
  785. // Output only. The time at which this environment was created.
  786. google.protobuf.Timestamp create_time = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
  787. // Output only. The time at which this environment was last modified.
  788. google.protobuf.Timestamp update_time = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
  789. // Optional. User-defined labels for this environment.
  790. // The labels map can contain no more than 64 entries. Entries of the labels
  791. // map are UTF8 strings that comply with the following restrictions:
  792. //
  793. // * Keys must conform to regexp: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}_-]{0,62}
  794. // * Values must conform to regexp: [\p{Ll}\p{Lo}\p{N}_-]{0,63}
  795. // * Both keys and values are additionally constrained to be <= 128 bytes in
  796. // size.
  797. map<string, string> labels = 7 [(google.api.field_behavior) = OPTIONAL];
  798. }
  799. // Request to check whether image upgrade will succeed.
  800. message CheckUpgradeRequest {
  801. // The resource name of the environment to check upgrade for, in the
  802. // form:
  803. // "projects/{projectId}/locations/{locationId}/environments/{environmentId}"
  804. string environment = 1;
  805. // The version of the software running in the environment.
  806. // This encapsulates both the version of Cloud Composer functionality and the
  807. // version of Apache Airflow. It must match the regular expression
  808. // `composer-([0-9]+\.[0-9]+\.[0-9]+|latest)-airflow-[0-9]+\.[0-9]+(\.[0-9]+.*)?`.
  809. // When used as input, the server also checks if the provided version is
  810. // supported and denies the request for an unsupported version.
  811. //
  812. // The Cloud Composer portion of the version is a
  813. // [semantic version](https://semver.org) or `latest`. When the patch version
  814. // is omitted, the current Cloud Composer patch version is selected.
  815. // When `latest` is provided instead of an explicit version number,
  816. // the server replaces `latest` with the current Cloud Composer version
  817. // and stores that version number in the same field.
  818. //
  819. // The portion of the image version that follows `airflow-` is an
  820. // official Apache Airflow repository
  821. // [release name](https://github.com/apache/incubator-airflow/releases).
  822. //
  823. // See also [Version List]
  824. // (/composer/docs/concepts/versioning/composer-versions).
  825. string image_version = 2;
  826. }
  827. // Message containing information about the result of an upgrade check
  828. // operation.
  829. message CheckUpgradeResponse {
  830. // Whether there were python modules conflict during image build.
  831. enum ConflictResult {
  832. // It is unknown whether build had conflicts or not.
  833. CONFLICT_RESULT_UNSPECIFIED = 0;
  834. // There were python packages conflicts.
  835. CONFLICT = 1;
  836. // There were no python packages conflicts.
  837. NO_CONFLICT = 2;
  838. }
  839. // Output only. Url for a docker build log of an upgraded image.
  840. string build_log_uri = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
  841. // Output only. Whether build has succeeded or failed on modules conflicts.
  842. ConflictResult contains_pypi_modules_conflict = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
  843. // Output only. Extract from a docker image build log containing information about pypi
  844. // modules conflicts.
  845. string pypi_conflict_build_log_extract = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
  846. // Composer image for which the build was happening.
  847. string image_version = 5;
  848. // Pypi dependencies specified in the environment configuration, at the time
  849. // when the build was triggered.
  850. map<string, string> pypi_dependencies = 6;
  851. }