environments.proto 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730
  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.v1;
  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/v1;service";
  24. option java_multiple_files = true;
  25. option java_package = "com.google.cloud.orchestration.airflow.service.v1";
  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: "/v1/{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.v1.OperationMetadata"
  40. };
  41. }
  42. // Get an existing environment.
  43. rpc GetEnvironment(GetEnvironmentRequest) returns (Environment) {
  44. option (google.api.http) = {
  45. get: "/v1/{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: "/v1/{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: "/v1/{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.v1.OperationMetadata"
  66. };
  67. }
  68. // Delete an environment.
  69. rpc DeleteEnvironment(DeleteEnvironmentRequest) returns (google.longrunning.Operation) {
  70. option (google.api.http) = {
  71. delete: "/v1/{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.v1.OperationMetadata"
  77. };
  78. }
  79. }
  80. // Create a new environment.
  81. message CreateEnvironmentRequest {
  82. // The parent must be of the form
  83. // "projects/{projectId}/locations/{locationId}".
  84. string parent = 1;
  85. // The environment to create.
  86. Environment environment = 2;
  87. }
  88. // Get an environment.
  89. message GetEnvironmentRequest {
  90. // The resource name of the environment to get, in the form:
  91. // "projects/{projectId}/locations/{locationId}/environments/{environmentId}"
  92. string name = 1;
  93. }
  94. // List environments in a project and location.
  95. message ListEnvironmentsRequest {
  96. // List environments in the given project and location, in the form:
  97. // "projects/{projectId}/locations/{locationId}"
  98. string parent = 1;
  99. // The maximum number of environments to return.
  100. int32 page_size = 2;
  101. // The next_page_token value returned from a previous List request, if any.
  102. string page_token = 3;
  103. }
  104. // The environments in a project and location.
  105. message ListEnvironmentsResponse {
  106. // The list of environments returned by a ListEnvironmentsRequest.
  107. repeated Environment environments = 1;
  108. // The page token used to query for the next page if one exists.
  109. string next_page_token = 2;
  110. }
  111. // Delete an environment.
  112. message DeleteEnvironmentRequest {
  113. // The environment to delete, in the form:
  114. // "projects/{projectId}/locations/{locationId}/environments/{environmentId}"
  115. string name = 1;
  116. }
  117. // Update an environment.
  118. message UpdateEnvironmentRequest {
  119. // The relative resource name of the environment to update, in the form:
  120. // "projects/{projectId}/locations/{locationId}/environments/{environmentId}"
  121. string name = 2;
  122. // A patch environment. Fields specified by the `updateMask` will be copied
  123. // from the patch environment into the environment under update.
  124. Environment environment = 1;
  125. // Required. A comma-separated list of paths, relative to `Environment`, of
  126. // fields to update.
  127. // For example, to set the version of scikit-learn to install in the
  128. // environment to 0.19.0 and to remove an existing installation of
  129. // numpy, the `updateMask` parameter would include the following two
  130. // `paths` values: "config.softwareConfig.pypiPackages.scikit-learn" and
  131. // "config.softwareConfig.pypiPackages.numpy". The included patch
  132. // environment would specify the scikit-learn version as follows:
  133. //
  134. // {
  135. // "config":{
  136. // "softwareConfig":{
  137. // "pypiPackages":{
  138. // "scikit-learn":"==0.19.0"
  139. // }
  140. // }
  141. // }
  142. // }
  143. //
  144. // Note that in the above example, any existing PyPI packages
  145. // other than scikit-learn and numpy will be unaffected.
  146. //
  147. // Only one update type may be included in a single request's `updateMask`.
  148. // For example, one cannot update both the PyPI packages and
  149. // labels in the same request. However, it is possible to update multiple
  150. // members of a map field simultaneously in the same request. For example,
  151. // to set the labels "label1" and "label2" while clearing "label3" (assuming
  152. // it already exists), one can
  153. // provide the paths "labels.label1", "labels.label2", and "labels.label3"
  154. // and populate the patch environment as follows:
  155. //
  156. // {
  157. // "labels":{
  158. // "label1":"new-label1-value"
  159. // "label2":"new-label2-value"
  160. // }
  161. // }
  162. //
  163. // Note that in the above example, any existing labels that are not
  164. // included in the `updateMask` will be unaffected.
  165. //
  166. // It is also possible to replace an entire map field by providing the
  167. // map field's path in the `updateMask`. The new value of the field will
  168. // be that which is provided in the patch environment. For example, to
  169. // delete all pre-existing user-specified PyPI packages and
  170. // install botocore at version 1.7.14, the `updateMask` would contain
  171. // the path "config.softwareConfig.pypiPackages", and
  172. // the patch environment would be the following:
  173. //
  174. // {
  175. // "config":{
  176. // "softwareConfig":{
  177. // "pypiPackages":{
  178. // "botocore":"==1.7.14"
  179. // }
  180. // }
  181. // }
  182. // }
  183. //
  184. // **Note:** Only the following fields can be updated:
  185. //
  186. // * `config.softwareConfig.pypiPackages`
  187. // * Replace all custom custom PyPI packages. If a replacement
  188. // package map is not included in `environment`, all custom
  189. // PyPI packages are cleared. It is an error to provide both
  190. // this mask and a mask specifying an individual package.
  191. // * `config.softwareConfig.pypiPackages.`packagename
  192. // * Update the custom PyPI package *packagename*,
  193. // preserving other packages. To delete the package, include it in
  194. // `updateMask`, and omit the mapping for it in
  195. // `environment.config.softwareConfig.pypiPackages`. It is an error
  196. // to provide both a mask of this form and the
  197. // `config.softwareConfig.pypiPackages` mask.
  198. // * `labels`
  199. // * Replace all environment labels. If a replacement labels map is not
  200. // included in `environment`, all labels are cleared. It is an error to
  201. // provide both this mask and a mask specifying one or more individual
  202. // labels.
  203. // * `labels.`labelName
  204. // * Set the label named *labelName*, while preserving other
  205. // labels. To delete the label, include it in `updateMask` and omit its
  206. // mapping in `environment.labels`. It is an error to provide both a
  207. // mask of this form and the `labels` mask.
  208. // * `config.nodeCount`
  209. // * Horizontally scale the number of nodes in the environment. An integer
  210. // greater than or equal to 3 must be provided in the `config.nodeCount`
  211. // field.
  212. // * `config.webServerNetworkAccessControl`
  213. // * Replace the environment's current `WebServerNetworkAccessControl`.
  214. // * `config.databaseConfig`
  215. // * Replace the environment's current `DatabaseConfig`.
  216. // * `config.webServerConfig`
  217. // * Replace the environment's current `WebServerConfig`.
  218. // * `config.softwareConfig.airflowConfigOverrides`
  219. // * Replace all Apache Airflow config overrides. If a replacement config
  220. // overrides map is not included in `environment`, all config overrides
  221. // are cleared.
  222. // It is an error to provide both this mask and a mask specifying one or
  223. // more individual config overrides.
  224. // * `config.softwareConfig.airflowConfigOverrides.`section-name
  225. // * Override the Apache Airflow config property *name* in the
  226. // section named *section*, preserving other properties. To
  227. // delete the property override, include it in `updateMask` and omit its
  228. // mapping in
  229. // `environment.config.softwareConfig.airflowConfigOverrides`.
  230. // It is an error to provide both a mask of this form and the
  231. // `config.softwareConfig.airflowConfigOverrides` mask.
  232. // * `config.softwareConfig.envVariables`
  233. // * Replace all environment variables. If a replacement environment
  234. // variable map is not included in `environment`, all custom environment
  235. // variables are cleared.
  236. // It is an error to provide both this mask and a mask specifying one or
  237. // more individual environment variables.
  238. google.protobuf.FieldMask update_mask = 3;
  239. }
  240. // Configuration information for an environment.
  241. message EnvironmentConfig {
  242. // Output only. The Kubernetes Engine cluster used to run this environment.
  243. string gke_cluster = 1;
  244. // Output only. The Cloud Storage prefix of the DAGs for this environment. Although Cloud
  245. // Storage objects reside in a flat namespace, a hierarchical file tree
  246. // can be simulated using "/"-delimited object name prefixes. DAG objects for
  247. // this environment reside in a simulated directory with the given prefix.
  248. string dag_gcs_prefix = 2;
  249. // The number of nodes in the Kubernetes Engine cluster that will be
  250. // used to run this environment.
  251. int32 node_count = 3;
  252. // The configuration settings for software inside the environment.
  253. SoftwareConfig software_config = 4;
  254. // The configuration used for the Kubernetes Engine cluster.
  255. NodeConfig node_config = 5;
  256. // The configuration used for the Private IP Cloud Composer environment.
  257. PrivateEnvironmentConfig private_environment_config = 7;
  258. // Optional. The network-level access control policy for the Airflow web server. If
  259. // unspecified, no network-level access restrictions will be applied.
  260. WebServerNetworkAccessControl web_server_network_access_control = 8 [(google.api.field_behavior) = OPTIONAL];
  261. // Optional. The configuration settings for Cloud SQL instance used internally by Apache
  262. // Airflow software.
  263. DatabaseConfig database_config = 9 [(google.api.field_behavior) = OPTIONAL];
  264. // Optional. The configuration settings for the Airflow web server App Engine instance.
  265. WebServerConfig web_server_config = 10 [(google.api.field_behavior) = OPTIONAL];
  266. // Optional. The encryption options for the Cloud Composer environment
  267. // and its dependencies. Cannot be updated.
  268. EncryptionConfig encryption_config = 11 [(google.api.field_behavior) = OPTIONAL];
  269. // Output only. The URI of the Apache Airflow Web UI hosted within this environment (see
  270. // [Airflow web
  271. // interface](/composer/docs/how-to/accessing/airflow-web-interface)).
  272. string airflow_uri = 6;
  273. }
  274. // Network-level access control policy for the Airflow web server.
  275. message WebServerNetworkAccessControl {
  276. // Allowed IP range with user-provided description.
  277. message AllowedIpRange {
  278. // IP address or range, defined using CIDR notation, of requests that this
  279. // rule applies to.
  280. // Examples: `192.168.1.1` or `192.168.0.0/16` or `2001:db8::/32`
  281. // or `2001:0db8:0000:0042:0000:8a2e:0370:7334`.
  282. //
  283. // IP range prefixes should be properly truncated. For example,
  284. // `1.2.3.4/24` should be truncated to `1.2.3.0/24`. Similarly, for IPv6,
  285. // `2001:db8::1/32` should be truncated to `2001:db8::/32`.
  286. string value = 1;
  287. // Optional. User-provided description. It must contain at most 300 characters.
  288. string description = 2 [(google.api.field_behavior) = OPTIONAL];
  289. }
  290. // A collection of allowed IP ranges with descriptions.
  291. repeated AllowedIpRange allowed_ip_ranges = 1;
  292. }
  293. // The configuration of Cloud SQL instance that is used by the Apache Airflow
  294. // software.
  295. message DatabaseConfig {
  296. // Optional. Cloud SQL machine type used by Airflow database.
  297. // It has to be one of: db-n1-standard-2, db-n1-standard-4, db-n1-standard-8
  298. // or db-n1-standard-16. If not specified, db-n1-standard-2 will be used.
  299. string machine_type = 1 [(google.api.field_behavior) = OPTIONAL];
  300. }
  301. // The configuration settings for the Airflow web server App Engine instance.
  302. message WebServerConfig {
  303. // Optional. Machine type on which Airflow web server is running.
  304. // It has to be one of: composer-n1-webserver-2, composer-n1-webserver-4 or
  305. // composer-n1-webserver-8.
  306. // If not specified, composer-n1-webserver-2 will be used.
  307. // Value custom is returned only in response, if Airflow web server parameters
  308. // were manually changed to a non-standard values.
  309. string machine_type = 1 [(google.api.field_behavior) = OPTIONAL];
  310. }
  311. // The encryption options for the Cloud Composer environment
  312. // and its dependencies.
  313. message EncryptionConfig {
  314. // Optional. Customer-managed Encryption Key available through Google's Key Management
  315. // Service. Cannot be updated.
  316. // If not specified, Google-managed key will be used.
  317. string kms_key_name = 1 [(google.api.field_behavior) = OPTIONAL];
  318. }
  319. // Specifies the selection and configuration of software inside the environment.
  320. message SoftwareConfig {
  321. // The version of the software running in the environment.
  322. // This encapsulates both the version of Cloud Composer functionality and the
  323. // version of Apache Airflow. It must match the regular expression
  324. // `composer-([0-9]+\.[0-9]+\.[0-9]+|latest)-airflow-[0-9]+\.[0-9]+(\.[0-9]+.*)?`.
  325. // When used as input, the server also checks if the provided version is
  326. // supported and denies the request for an unsupported version.
  327. //
  328. // The Cloud Composer portion of the version is a
  329. // [semantic version](https://semver.org) or `latest`. When the patch version
  330. // is omitted, the current Cloud Composer patch version is selected.
  331. // When `latest` is provided instead of an explicit version number,
  332. // the server replaces `latest` with the current Cloud Composer version
  333. // and stores that version number in the same field.
  334. //
  335. // The portion of the image version that follows *airflow-* is an
  336. // official Apache Airflow repository
  337. // [release name](https://github.com/apache/incubator-airflow/releases).
  338. //
  339. // See also [Version
  340. // List](/composer/docs/concepts/versioning/composer-versions).
  341. string image_version = 1;
  342. // Optional. Apache Airflow configuration properties to override.
  343. //
  344. // Property keys contain the section and property names, separated by a
  345. // hyphen, for example "core-dags_are_paused_at_creation". Section names must
  346. // not contain hyphens ("-"), opening square brackets ("["), or closing
  347. // square brackets ("]"). The property name must not be empty and must not
  348. // contain an equals sign ("=") or semicolon (";"). Section and property names
  349. // must not contain a period ("."). Apache Airflow configuration property
  350. // names must be written in
  351. // [snake_case](https://en.wikipedia.org/wiki/Snake_case). Property values can
  352. // contain any character, and can be written in any lower/upper case format.
  353. //
  354. // Certain Apache Airflow configuration property values are
  355. // [blocked](/composer/docs/concepts/airflow-configurations),
  356. // and cannot be overridden.
  357. map<string, string> airflow_config_overrides = 2;
  358. // Optional. Custom Python Package Index (PyPI) packages to be installed in
  359. // the environment.
  360. //
  361. // Keys refer to the lowercase package name such as "numpy"
  362. // and values are the lowercase extras and version specifier such as
  363. // "==1.12.0", "[devel,gcp_api]", or "[devel]>=1.8.2, <1.9.2". To specify a
  364. // package without pinning it to a version specifier, use the empty string as
  365. // the value.
  366. map<string, string> pypi_packages = 3;
  367. // Optional. Additional environment variables to provide to the Apache Airflow
  368. // scheduler, worker, and webserver processes.
  369. //
  370. // Environment variable names must match the regular expression
  371. // `[a-zA-Z_][a-zA-Z0-9_]*`. They cannot specify Apache Airflow
  372. // software configuration overrides (they cannot match the regular expression
  373. // `AIRFLOW__[A-Z0-9_]+__[A-Z0-9_]+`), and they cannot match any of the
  374. // following reserved names:
  375. //
  376. // * `AIRFLOW_HOME`
  377. // * `C_FORCE_ROOT`
  378. // * `CONTAINER_NAME`
  379. // * `DAGS_FOLDER`
  380. // * `GCP_PROJECT`
  381. // * `GCS_BUCKET`
  382. // * `GKE_CLUSTER_NAME`
  383. // * `SQL_DATABASE`
  384. // * `SQL_INSTANCE`
  385. // * `SQL_PASSWORD`
  386. // * `SQL_PROJECT`
  387. // * `SQL_REGION`
  388. // * `SQL_USER`
  389. map<string, string> env_variables = 4;
  390. // Optional. The major version of Python used to run the Apache Airflow
  391. // scheduler, worker, and webserver processes.
  392. //
  393. // Can be set to '2' or '3'. If not specified, the default is '3'. Cannot be
  394. // updated.
  395. string python_version = 6;
  396. }
  397. // Configuration for controlling how IPs are allocated in the
  398. // GKE cluster running the Apache Airflow software.
  399. message IPAllocationPolicy {
  400. // Optional. Whether or not to enable Alias IPs in the GKE cluster.
  401. // If `true`, a VPC-native cluster is created.
  402. bool use_ip_aliases = 1 [(google.api.field_behavior) = OPTIONAL];
  403. // Configuration of allocating IP addresses for pods in the GKE cluster.
  404. oneof cluster_ip_allocation {
  405. // Optional. The name of the GKE cluster's secondary range used to allocate
  406. // IP addresses to pods.
  407. //
  408. // This field is applicable only when `use_ip_aliases` is true.
  409. string cluster_secondary_range_name = 2 [(google.api.field_behavior) = OPTIONAL];
  410. // Optional. The IP address range used to allocate IP addresses to pods in
  411. // the GKE cluster.
  412. //
  413. // This field is applicable only when `use_ip_aliases` is true.
  414. //
  415. // Set to blank to have GKE choose a range with the default size.
  416. //
  417. // Set to /netmask (e.g. `/14`) to have GKE choose a range with a specific
  418. // netmask.
  419. //
  420. // Set to a
  421. // [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing)
  422. // notation (e.g. `10.96.0.0/14`) from the RFC-1918 private networks (e.g.
  423. // `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`) to pick a specific range
  424. // to use.
  425. string cluster_ipv4_cidr_block = 4 [(google.api.field_behavior) = OPTIONAL];
  426. }
  427. // Configuration of allocating IP addresses for services in the GKE cluster.
  428. oneof services_ip_allocation {
  429. // Optional. The name of the services' secondary range used to allocate
  430. // IP addresses to the GKE cluster.
  431. //
  432. // This field is applicable only when `use_ip_aliases` is true.
  433. string services_secondary_range_name = 3 [(google.api.field_behavior) = OPTIONAL];
  434. // Optional. The IP address range of the services IP addresses in this
  435. // GKE cluster.
  436. //
  437. // This field is applicable only when `use_ip_aliases` is true.
  438. //
  439. // Set to blank to have GKE choose a range with the default size.
  440. //
  441. // Set to /netmask (e.g. `/14`) to have GKE choose a range with a specific
  442. // netmask.
  443. //
  444. // Set to a
  445. // [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing)
  446. // notation (e.g. `10.96.0.0/14`) from the RFC-1918 private networks (e.g.
  447. // `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`) to pick a specific range
  448. // to use.
  449. string services_ipv4_cidr_block = 5 [(google.api.field_behavior) = OPTIONAL];
  450. }
  451. }
  452. // The configuration information for the Kubernetes Engine nodes running
  453. // the Apache Airflow software.
  454. message NodeConfig {
  455. // Optional. The Compute Engine [zone](/compute/docs/regions-zones) in which
  456. // to deploy the VMs used to run the Apache Airflow software, specified as a
  457. // [relative resource
  458. // name](/apis/design/resource_names#relative_resource_name). For example:
  459. // "projects/{projectId}/zones/{zoneId}".
  460. //
  461. // This `location` must belong to the enclosing environment's project and
  462. // location. If both this field and `nodeConfig.machineType` are specified,
  463. // `nodeConfig.machineType` must belong to this `location`; if both are
  464. // unspecified, the service will pick a zone in the Compute Engine region
  465. // corresponding to the Cloud Composer location, and propagate that choice to
  466. // both fields. If only one field (`location` or `nodeConfig.machineType`) is
  467. // specified, the location information from the specified field will be
  468. // propagated to the unspecified field.
  469. string location = 1;
  470. // Optional. The Compute Engine
  471. // [machine type](/compute/docs/machine-types) used for cluster instances,
  472. // specified as a
  473. // [relative resource
  474. // name](/apis/design/resource_names#relative_resource_name). For example:
  475. // "projects/{projectId}/zones/{zoneId}/machineTypes/{machineTypeId}".
  476. //
  477. // The `machineType` must belong to the enclosing environment's project and
  478. // location. If both this field and `nodeConfig.location` are specified,
  479. // this `machineType` must belong to the `nodeConfig.location`; if both are
  480. // unspecified, the service will pick a zone in the Compute Engine region
  481. // corresponding to the Cloud Composer location, and propagate that choice to
  482. // both fields. If exactly one of this field and `nodeConfig.location` is
  483. // specified, the location information from the specified field will be
  484. // propagated to the unspecified field.
  485. //
  486. // The `machineTypeId` must not be a [shared-core machine
  487. // type](/compute/docs/machine-types#sharedcore).
  488. //
  489. // If this field is unspecified, the `machineTypeId` defaults
  490. // to "n1-standard-1".
  491. string machine_type = 2;
  492. // Optional. The Compute Engine network to be used for machine
  493. // communications, specified as a
  494. // [relative resource
  495. // name](/apis/design/resource_names#relative_resource_name). For example:
  496. // "projects/{projectId}/global/networks/{networkId}".
  497. //
  498. // If unspecified, the "default" network ID in the environment's project is
  499. // used. If a [Custom Subnet Network](/vpc/docs/vpc#vpc_networks_and_subnets)
  500. // is provided, `nodeConfig.subnetwork` must also be provided. For
  501. // [Shared VPC](/vpc/docs/shared-vpc) subnetwork requirements, see
  502. // `nodeConfig.subnetwork`.
  503. string network = 3;
  504. // Optional. The Compute Engine subnetwork to be used for machine
  505. // communications, specified as a
  506. // [relative resource
  507. // name](/apis/design/resource_names#relative_resource_name). For example:
  508. // "projects/{projectId}/regions/{regionId}/subnetworks/{subnetworkId}"
  509. //
  510. // If a subnetwork is provided, `nodeConfig.network` must also be provided,
  511. // and the subnetwork must belong to the enclosing environment's project and
  512. // location.
  513. string subnetwork = 4;
  514. // Optional. The disk size in GB used for node VMs. Minimum size is 20GB.
  515. // If unspecified, defaults to 100GB. Cannot be updated.
  516. int32 disk_size_gb = 5;
  517. // Optional. The set of Google API scopes to be made available on all
  518. // node VMs. If `oauth_scopes` is empty, defaults to
  519. // ["https://www.googleapis.com/auth/cloud-platform"]. Cannot be updated.
  520. repeated string oauth_scopes = 6;
  521. // Optional. The Google Cloud Platform Service Account to be used by the node
  522. // VMs. If a service account is not specified, the "default" Compute Engine
  523. // service account is used. Cannot be updated.
  524. string service_account = 7;
  525. // Optional. The list of instance tags applied to all node VMs. Tags are used
  526. // to identify valid sources or targets for network firewalls. Each tag within
  527. // the list must comply with [RFC1035](https://www.ietf.org/rfc/rfc1035.txt).
  528. // Cannot be updated.
  529. repeated string tags = 8;
  530. // Optional. The configuration for controlling how IPs are allocated in the GKE cluster.
  531. IPAllocationPolicy ip_allocation_policy = 9 [(google.api.field_behavior) = OPTIONAL];
  532. }
  533. // Configuration options for the private GKE cluster in a Cloud Composer
  534. // environment.
  535. message PrivateClusterConfig {
  536. // Optional. If `true`, access to the public endpoint of the GKE cluster is
  537. // denied.
  538. bool enable_private_endpoint = 1 [(google.api.field_behavior) = OPTIONAL];
  539. // Optional. The CIDR block from which IPv4 range for GKE master will be reserved. If
  540. // left blank, the default value of '172.16.0.0/23' is used.
  541. string master_ipv4_cidr_block = 2 [(google.api.field_behavior) = OPTIONAL];
  542. // Output only. The IP range in CIDR notation to use for the hosted master network. This
  543. // range is used for assigning internal IP addresses to the GKE cluster
  544. // master or set of masters and to the internal load balancer virtual IP.
  545. // This range must not overlap with any other ranges in use
  546. // within the cluster's network.
  547. string master_ipv4_reserved_range = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
  548. }
  549. // The configuration information for configuring a Private IP Cloud Composer
  550. // environment.
  551. message PrivateEnvironmentConfig {
  552. // Optional. If `true`, a Private IP Cloud Composer environment is created.
  553. // If this field is set to true, `IPAllocationPolicy.use_ip_aliases` must be
  554. // set to true.
  555. bool enable_private_environment = 1 [(google.api.field_behavior) = OPTIONAL];
  556. // Optional. Configuration for the private GKE cluster for a Private IP
  557. // Cloud Composer environment.
  558. PrivateClusterConfig private_cluster_config = 2 [(google.api.field_behavior) = OPTIONAL];
  559. // Optional. The CIDR block from which IP range for web server will be reserved. Needs
  560. // to be disjoint from `private_cluster_config.master_ipv4_cidr_block` and
  561. // `cloud_sql_ipv4_cidr_block`.
  562. string web_server_ipv4_cidr_block = 3 [(google.api.field_behavior) = OPTIONAL];
  563. // Optional. The CIDR block from which IP range in tenant project will be reserved for
  564. // Cloud SQL. Needs to be disjoint from `web_server_ipv4_cidr_block`.
  565. string cloud_sql_ipv4_cidr_block = 4 [(google.api.field_behavior) = OPTIONAL];
  566. // Output only. The IP range reserved for the tenant project's App Engine VMs.
  567. string web_server_ipv4_reserved_range = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
  568. }
  569. // An environment for running orchestration tasks.
  570. message Environment {
  571. option (google.api.resource) = {
  572. type: "composer.googleapis.com/Environment"
  573. pattern: "projects/{project}/locations/{location}/environments/{environment}"
  574. };
  575. // State of the environment.
  576. enum State {
  577. // The state of the environment is unknown.
  578. STATE_UNSPECIFIED = 0;
  579. // The environment is in the process of being created.
  580. CREATING = 1;
  581. // The environment is currently running and healthy. It is ready for use.
  582. RUNNING = 2;
  583. // The environment is being updated. It remains usable but cannot receive
  584. // additional update requests or be deleted at this time.
  585. UPDATING = 3;
  586. // The environment is undergoing deletion. It cannot be used.
  587. DELETING = 4;
  588. // The environment has encountered an error and cannot be used.
  589. ERROR = 5;
  590. }
  591. // The resource name of the environment, in the form:
  592. // "projects/{projectId}/locations/{locationId}/environments/{environmentId}"
  593. //
  594. // EnvironmentId must start with a lowercase letter followed by up to 63
  595. // lowercase letters, numbers, or hyphens, and cannot end with a hyphen.
  596. string name = 1;
  597. // Configuration parameters for this environment.
  598. EnvironmentConfig config = 2;
  599. // Output only. The UUID (Universally Unique IDentifier) associated with this environment.
  600. // This value is generated when the environment is created.
  601. string uuid = 3;
  602. // The current state of the environment.
  603. State state = 4;
  604. // Output only. The time at which this environment was created.
  605. google.protobuf.Timestamp create_time = 5;
  606. // Output only. The time at which this environment was last modified.
  607. google.protobuf.Timestamp update_time = 6;
  608. // Optional. User-defined labels for this environment.
  609. // The labels map can contain no more than 64 entries. Entries of the labels
  610. // map are UTF8 strings that comply with the following restrictions:
  611. //
  612. // * Keys must conform to regexp: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}_-]{0,62}
  613. // * Values must conform to regexp: [\p{Ll}\p{Lo}\p{N}_-]{0,63}
  614. // * Both keys and values are additionally constrained to be <= 128 bytes in
  615. // size.
  616. map<string, string> labels = 7;
  617. }
  618. // Message containing information about the result of an upgrade check
  619. // operation.
  620. message CheckUpgradeResponse {
  621. // Whether there were python modules conflict during image build.
  622. enum ConflictResult {
  623. // It is unknown whether build had conflicts or not.
  624. CONFLICT_RESULT_UNSPECIFIED = 0;
  625. // There were python packages conflicts.
  626. CONFLICT = 1;
  627. // There were no python packages conflicts.
  628. NO_CONFLICT = 2;
  629. }
  630. // Output only. Url for a docker build log of an upgraded image.
  631. string build_log_uri = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
  632. // Output only. Whether build has succeeded or failed on modules conflicts.
  633. ConflictResult contains_pypi_modules_conflict = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
  634. // Output only. Extract from a docker image build log containing information about pypi
  635. // modules conflicts.
  636. string pypi_conflict_build_log_extract = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
  637. // Composer image for which the build was happening.
  638. string image_version = 5;
  639. // Pypi dependencies specified in the environment configuration, at the time
  640. // when the build was triggered.
  641. map<string, string> pypi_dependencies = 6;
  642. }