Skip to content

Commit

Permalink
feat: added ListWorkloads RPC
Browse files Browse the repository at this point in the history
feat: added field data_retention_config to EnvironmentConfig
feat: added field web_server_plugins_mode to SoftwareConfig
feat: added field storage_config to Environment

PiperOrigin-RevId: 606927106
  • Loading branch information
Google APIs authored and Copybara-Service committed Feb 14, 2024
1 parent 2fd7625 commit 7a518dd
Show file tree
Hide file tree
Showing 4 changed files with 642 additions and 10 deletions.
16 changes: 10 additions & 6 deletions google/cloud/orchestration/airflow/service/v1/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ java_grpc_library(
java_gapic_library(
name = "service_java_gapic",
srcs = [":service_proto_with_info"],
gapic_yaml = None,
grpc_service_config = "composer_grpc_service_config.json",
rest_numeric_enums = True,
service_yaml = "composer_v1.yaml",
Expand Down Expand Up @@ -175,12 +176,12 @@ py_gapic_library(
name = "service_py_gapic",
srcs = [":service_proto"],
grpc_service_config = "composer_grpc_service_config.json",
opt_args = [
"warehouse-package-name=google-cloud-orchestration-airflow",
],
opt_args = ["warehouse-package-name=google-cloud-orchestration-airflow"],
rest_numeric_enums = True,
service_yaml = "composer_v1.yaml",
transport = "grpc+rest",
deps = [
],
)

py_test(
Expand Down Expand Up @@ -224,7 +225,9 @@ php_gapic_library(
rest_numeric_enums = True,
service_yaml = "composer_v1.yaml",
transport = "grpc+rest",
deps = [":service_php_proto"],
deps = [
":service_php_proto",
],
)

# Open Source Packages
Expand Down Expand Up @@ -292,10 +295,10 @@ ruby_cloud_gapic_library(
name = "service_ruby_gapic",
srcs = [":service_proto_with_info"],
extra_protoc_parameters = [
"ruby-cloud-gem-name=google-cloud-orchestration-airflow-service-v1",
"ruby-cloud-product-url=https://cloud.google.com/composer",
"ruby-cloud-api-id=composer.googleapis.com",
"ruby-cloud-api-shortname=composer",
"ruby-cloud-gem-name=google-cloud-orchestration-airflow-service-v1",
"ruby-cloud-product-url=https://cloud.google.com/composer",
],
grpc_service_config = "composer_grpc_service_config.json",
rest_numeric_enums = True,
Expand Down Expand Up @@ -332,6 +335,7 @@ load(

csharp_proto_library(
name = "service_csharp_proto",
extra_opts = [],
deps = [":service_proto"],
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ types:
- name: google.cloud.orchestration.airflow.service.v1.DatabaseFailoverResponse
- name: google.cloud.orchestration.airflow.service.v1.ExecuteAirflowCommandResponse
- name: google.cloud.orchestration.airflow.service.v1.FetchDatabasePropertiesResponse
- name: google.cloud.orchestration.airflow.service.v1.ListWorkloadsResponse
- name: google.cloud.orchestration.airflow.service.v1.LoadSnapshotResponse
- name: google.cloud.orchestration.airflow.service.v1.OperationMetadata
- name: google.cloud.orchestration.airflow.service.v1.PollAirflowCommandResponse
Expand Down

0 comments on commit 7a518dd

Please sign in to comment.