Skip to content

Commit

Permalink
docs: A comment for field data in message `.google.cloud.orchestrat…
Browse files Browse the repository at this point in the history
…ion.airflow.service.v1beta1.UserWorkloadsSecret` is changed

docs: A comment for field `data` in message `.google.cloud.orchestration.airflow.service.v1beta1.UserWorkloadsConfigMap` is changed
docs: A comment for field `software_config` in message `.google.cloud.orchestration.airflow.service.v1beta1.EnvironmentConfig` is changed
docs: A comment for field `node_config` in message `.google.cloud.orchestration.airflow.service.v1beta1.EnvironmentConfig` is changed
docs: A comment for field `private_environment_config` in message `.google.cloud.orchestration.airflow.service.v1beta1.EnvironmentConfig` is changed
docs: A comment for field `image_version` in message `.google.cloud.orchestration.airflow.service.v1beta1.SoftwareConfig` is changed
docs: A comment for field `name` in message `.google.cloud.orchestration.airflow.service.v1beta1.Environment` is changed
docs: A comment for field `config` in message `.google.cloud.orchestration.airflow.service.v1beta1.Environment` is changed

PiperOrigin-RevId: 702414176
  • Loading branch information
Google APIs authored and copybara-github committed Dec 3, 2024
1 parent b56dbf5 commit 0b09603
Showing 1 changed file with 28 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -812,6 +812,13 @@ message UserWorkloadsSecret {
// pairs, which can contain sensitive values such as a password, a token, or a
// key. The values for all keys have to be base64-encoded strings. For details
// see: https://kubernetes.io/docs/concepts/configuration/secret/
//
// Example:
//
// {
// "example": "ZXhhbXBsZV92YWx1ZQ==",
// "another-example": "YW5vdGhlcl9leGFtcGxlX3ZhbHVl"
// }
map<string, string> data = 2 [(google.api.field_behavior) = OPTIONAL];
}

Expand Down Expand Up @@ -841,6 +848,13 @@ message UserWorkloadsConfigMap {
// Optional. The "data" field of Kubernetes ConfigMap, organized in key-value
// pairs. For details see:
// https://kubernetes.io/docs/concepts/configuration/configmap/
//
// Example:
//
// {
// "example_key": "example_value",
// "another_key": "another_value"
// }
map<string, string> data = 2 [(google.api.field_behavior) = OPTIONAL];
}

Expand Down Expand Up @@ -1100,14 +1114,16 @@ message EnvironmentConfig {
// composer-1.*.*-airflow-*.*.*.
int32 node_count = 3;

// The configuration settings for software inside the environment.
SoftwareConfig software_config = 4;
// Optional. The configuration settings for software inside the environment.
SoftwareConfig software_config = 4 [(google.api.field_behavior) = OPTIONAL];

// The configuration used for the Kubernetes Engine cluster.
NodeConfig node_config = 5;
// Optional. The configuration used for the Kubernetes Engine cluster.
NodeConfig node_config = 5 [(google.api.field_behavior) = OPTIONAL];

// The configuration used for the Private IP Cloud Composer environment.
PrivateEnvironmentConfig private_environment_config = 7;
// Optional. The configuration used for the Private IP Cloud Composer
// environment.
PrivateEnvironmentConfig private_environment_config = 7
[(google.api.field_behavior) = OPTIONAL];

// Optional. The network-level access control policy for the Airflow web
// server. If unspecified, no network-level access restrictions will be
Expand Down Expand Up @@ -1241,7 +1257,7 @@ message SoftwareConfig {
PLUGINS_ENABLED = 2;
}

// The version of the software running in the environment.
// Optional. The version of the software running in the environment.
// This encapsulates both the version of Cloud Composer functionality and the
// version of Apache Airflow. It must match the regular expression
// `composer-([0-9]+(\.[0-9]+\.[0-9]+(-preview\.[0-9]+)?)?|latest)-airflow-([0-9]+(\.[0-9]+(\.[0-9]+)?)?)`.
Expand All @@ -1265,7 +1281,7 @@ message SoftwareConfig {
// See also [version
// list](/composer/docs/concepts/versioning/composer-versions) and [versioning
// overview](/composer/docs/concepts/versioning/composer-versioning-overview).
string image_version = 1;
string image_version = 1 [(google.api.field_behavior) = OPTIONAL];

// Optional. Apache Airflow configuration properties to override.
//
Expand Down Expand Up @@ -2030,15 +2046,15 @@ message Environment {
ERROR = 5;
}

// The resource name of the environment, in the form:
// Identifier. The resource name of the environment, in the form:
// "projects/{projectId}/locations/{locationId}/environments/{environmentId}"
//
// EnvironmentId must start with a lowercase letter followed by up to 63
// lowercase letters, numbers, or hyphens, and cannot end with a hyphen.
string name = 1;
string name = 1 [(google.api.field_behavior) = IDENTIFIER];

// Configuration parameters for this environment.
EnvironmentConfig config = 2;
// Optional. Configuration parameters for this environment.
EnvironmentConfig config = 2 [(google.api.field_behavior) = OPTIONAL];

// Output only. The UUID (Universally Unique IDentifier) associated with this
// environment. This value is generated when the environment is created.
Expand Down

0 comments on commit 0b09603

Please sign in to comment.