Skip to content

Commit

Permalink
docs: minor formatting fixes
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 458309366
  • Loading branch information
Google APIs authored and Copybara-Service committed Jun 30, 2022
1 parent 917762b commit 503fcb1
Show file tree
Hide file tree
Showing 7 changed files with 198 additions and 2 deletions.
39 changes: 39 additions & 0 deletions google/cloud/beyondcorp/appconnections/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# This build file includes a target for the Ruby wrapper library for
# google-cloud-beyond_corp-app_connections.

# This is an API workspace, having public visibility by default makes perfect sense.
package(default_visibility = ["//visibility:public"])

# Export yaml configs.
exports_files(glob(["*.yaml"]))

load(
"@com_google_googleapis_imports//:imports.bzl",
"ruby_cloud_gapic_library",
"ruby_gapic_assembly_pkg",
)

# Generates a Ruby wrapper client for appconnections.
# Ruby wrapper clients are versionless, but are generated from source protos
# for a particular service version, v1 in this case.
ruby_cloud_gapic_library(
name = "appconnections_ruby_wrapper",
srcs = ["//google/cloud/beyondcorp/appconnections/v1:appconnections_proto_with_info"],
extra_protoc_parameters = [
"ruby-cloud-api-id=beyondcorp.googleapis.com",
"ruby-cloud-api-shortname=beyondcorp",
"ruby-cloud-gem-name=google-cloud-beyond_corp-app_connections",
"ruby-cloud-product-url=https://cloud.google.com/beyondcorp/",
"ruby-cloud-wrapper-of=v1:0.0",
],
ruby_cloud_description = "Beyondcorp Enterprise provides identity and context aware access controls for enterprise resources and enables zero-trust access. Using the Beyondcorp Enterprise APIs, enterprises can set up multi-cloud and on-prem connectivity using the App Connector hybrid connectivity solution.",
ruby_cloud_title = "BeyondCorp AppConnections",
)

# Open Source package.
ruby_gapic_assembly_pkg(
name = "google-cloud-appconnections-ruby",
deps = [
":appconnections_ruby_wrapper",
],
)
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ message ResolveAppConnectionsResponse {
AppConnection app_connection = 1;

// If type=GCP_REGIONAL_MIG, contains most recent VM instances, like
// "https://www.googleapis.com/compute/v1/projects/{project_id}/zones/{zone_id}/instances/{instance_id}".
// `https://www.googleapis.com/compute/v1/projects/{project_id}/zones/{zone_id}/instances/{instance_id}`.
repeated string recent_mig_vms = 2;
}

Expand Down Expand Up @@ -397,7 +397,7 @@ message AppConnection {
int32 ingress_port = 4 [(google.api.field_behavior) = OUTPUT_ONLY];

// Required. AppGateway name in following format:
// projects/{project_id}/locations/{location_id}/appgateways/{gateway_id}
// `projects/{project_id}/locations/{location_id}/appgateways/{gateway_id}`
string app_gateway = 5 [
(google.api.field_behavior) = REQUIRED,
(google.api.resource_reference) = {
Expand Down
39 changes: 39 additions & 0 deletions google/cloud/beyondcorp/appconnectors/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# This build file includes a target for the Ruby wrapper library for
# google-cloud-beyond_corp-app_connectors.

# This is an API workspace, having public visibility by default makes perfect sense.
package(default_visibility = ["//visibility:public"])

# Export yaml configs.
exports_files(glob(["*.yaml"]))

load(
"@com_google_googleapis_imports//:imports.bzl",
"ruby_cloud_gapic_library",
"ruby_gapic_assembly_pkg",
)

# Generates a Ruby wrapper client for appconnectors.
# Ruby wrapper clients are versionless, but are generated from source protos
# for a particular service version, v1 in this case.
ruby_cloud_gapic_library(
name = "appconnectors_ruby_wrapper",
srcs = ["//google/cloud/beyondcorp/appconnectors/v1:appconnectors_proto_with_info"],
extra_protoc_parameters = [
"ruby-cloud-api-id=beyondcorp.googleapis.com",
"ruby-cloud-api-shortname=beyondcorp",
"ruby-cloud-gem-name=google-cloud-beyond_corp-app_connectors",
"ruby-cloud-product-url=https://cloud.google.com/beyondcorp/",
"ruby-cloud-wrapper-of=v1:0.0",
],
ruby_cloud_description = "Beyondcorp Enterprise provides identity and context aware access controls for enterprise resources and enables zero-trust access. Using the Beyondcorp Enterprise APIs, enterprises can set up multi-cloud and on-prem connectivity using the App Connector hybrid connectivity solution.",
ruby_cloud_title = "BeyondCorp AppConnectors",
)

# Open Source package.
ruby_gapic_assembly_pkg(
name = "google-cloud-appconnectors-ruby",
deps = [
":appconnectors_ruby_wrapper",
],
)
39 changes: 39 additions & 0 deletions google/cloud/beyondcorp/appgateways/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# This build file includes a target for the Ruby wrapper library for
# google-cloud-beyond_corp-app_gateways.

# This is an API workspace, having public visibility by default makes perfect sense.
package(default_visibility = ["//visibility:public"])

# Export yaml configs.
exports_files(glob(["*.yaml"]))

load(
"@com_google_googleapis_imports//:imports.bzl",
"ruby_cloud_gapic_library",
"ruby_gapic_assembly_pkg",
)

# Generates a Ruby wrapper client for appgateways.
# Ruby wrapper clients are versionless, but are generated from source protos
# for a particular service version, v1 in this case.
ruby_cloud_gapic_library(
name = "appgateways_ruby_wrapper",
srcs = ["//google/cloud/beyondcorp/appgateways/v1:appgateways_proto_with_info"],
extra_protoc_parameters = [
"ruby-cloud-api-id=beyondcorp.googleapis.com",
"ruby-cloud-api-shortname=beyondcorp",
"ruby-cloud-gem-name=google-cloud-beyond_corp-app_gateways",
"ruby-cloud-product-url=https://cloud.google.com/beyondcorp/",
"ruby-cloud-wrapper-of=v1:0.0",
],
ruby_cloud_description = "Beyondcorp Enterprise provides identity and context aware access controls for enterprise resources and enables zero-trust access. Using the Beyondcorp Enterprise APIs, enterprises can set up multi-cloud and on-prem connectivity using the App Connector hybrid connectivity solution.",
ruby_cloud_title = "BeyondCorp AppGateways",
)

# Open Source package.
ruby_gapic_assembly_pkg(
name = "google-cloud-appgateways-ruby",
deps = [
":appgateways_ruby_wrapper",
],
)
39 changes: 39 additions & 0 deletions google/cloud/beyondcorp/clientconnectorservices/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# This build file includes a target for the Ruby wrapper library for
# google-cloud-beyond_corp-client_connector_services.

# This is an API workspace, having public visibility by default makes perfect sense.
package(default_visibility = ["//visibility:public"])

# Export yaml configs.
exports_files(glob(["*.yaml"]))

load(
"@com_google_googleapis_imports//:imports.bzl",
"ruby_cloud_gapic_library",
"ruby_gapic_assembly_pkg",
)

# Generates a Ruby wrapper client for clientconnectorservices.
# Ruby wrapper clients are versionless, but are generated from source protos
# for a particular service version, v1 in this case.
ruby_cloud_gapic_library(
name = "clientconnectorservices_ruby_wrapper",
srcs = ["//google/cloud/beyondcorp/clientconnectorservices/v1:clientconnectorservices_proto_with_info"],
extra_protoc_parameters = [
"ruby-cloud-api-id=beyondcorp.googleapis.com",
"ruby-cloud-api-shortname=beyondcorp",
"ruby-cloud-gem-name=google-cloud-beyond_corp-client_connector_services",
"ruby-cloud-product-url=https://cloud.google.com/beyondcorp/",
"ruby-cloud-wrapper-of=v1:0.0",
],
ruby_cloud_description = "Beyondcorp Enterprise provides identity and context aware access controls for enterprise resources and enables zero-trust access. Using the Beyondcorp Enterprise APIs, enterprises can set up multi-cloud and on-prem connectivity using the App Connector hybrid connectivity solution.",
ruby_cloud_title = "BeyondCorp ClientConnectorServices",
)

# Open Source package.
ruby_gapic_assembly_pkg(
name = "google-cloud-clientconnectorservices-ruby",
deps = [
":clientconnectorservices_ruby_wrapper",
],
)
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ ruby_cloud_gapic_library(
"ruby-cloud-api-shortname=beyondcorp",
],
grpc_service_config = "beyondcorp-clientconnectorservices_grpc_service_config.json",
service_yaml = "beyondcorp_v1.yaml",
ruby_cloud_description = "Beyondcorp Enterprise provides identity and context aware access controls for enterprise resources and enables zero-trust access. Using the Beyondcorp Enterprise APIs, enterprises can set up multi-cloud and on-prem connectivity using the App Connector hybrid connectivity solution.",
ruby_cloud_title = "BeyondCorp ClientConnectorServices V1",
deps = [
Expand Down
39 changes: 39 additions & 0 deletions google/cloud/beyondcorp/clientgateways/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# This build file includes a target for the Ruby wrapper library for
# google-cloud-beyond_corp-client_gateways.

# This is an API workspace, having public visibility by default makes perfect sense.
package(default_visibility = ["//visibility:public"])

# Export yaml configs.
exports_files(glob(["*.yaml"]))

load(
"@com_google_googleapis_imports//:imports.bzl",
"ruby_cloud_gapic_library",
"ruby_gapic_assembly_pkg",
)

# Generates a Ruby wrapper client for clientgateways.
# Ruby wrapper clients are versionless, but are generated from source protos
# for a particular service version, v1 in this case.
ruby_cloud_gapic_library(
name = "clientgateways_ruby_wrapper",
srcs = ["//google/cloud/beyondcorp/clientgateways/v1:clientgateways_proto_with_info"],
extra_protoc_parameters = [
"ruby-cloud-api-id=beyondcorp.googleapis.com",
"ruby-cloud-api-shortname=beyondcorp",
"ruby-cloud-gem-name=google-cloud-beyond_corp-client_gateways",
"ruby-cloud-product-url=https://cloud.google.com/beyondcorp/",
"ruby-cloud-wrapper-of=v1:0.0",
],
ruby_cloud_description = "Beyondcorp Enterprise provides identity and context aware access controls for enterprise resources and enables zero-trust access. Using the Beyondcorp Enterprise APIs, enterprises can set up multi-cloud and on-prem connectivity using the App Connector hybrid connectivity solution.",
ruby_cloud_title = "BeyondCorp ClientGateways",
)

# Open Source package.
ruby_gapic_assembly_pkg(
name = "google-cloud-clientgateways-ruby",
deps = [
":clientgateways_ruby_wrapper",
],
)

0 comments on commit 503fcb1

Please sign in to comment.