-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ruby): Configure client for google-cloud-policy_simulator
PiperOrigin-RevId: 552671931
- Loading branch information
1 parent
88a9a5f
commit 1dcb40c
Showing
2 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# This build file includes a target for the Ruby wrapper library for | ||
# google-cloud-policy_simulator. | ||
|
||
# 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 policysimulator. | ||
# 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 = "policysimulator_ruby_wrapper", | ||
srcs = ["//google/cloud/policysimulator/v1:policysimulator_proto_with_info"], | ||
extra_protoc_parameters = [ | ||
"ruby-cloud-gem-name=google-cloud-policy_simulator", | ||
"ruby-cloud-wrapper-of=v1:0.0", | ||
], | ||
service_yaml = "//google/cloud/policysimulator/v1:policysimulator_v1.yaml", | ||
transport = "grpc+rest", | ||
) | ||
|
||
# Open Source package. | ||
ruby_gapic_assembly_pkg( | ||
name = "google-cloud-policysimulator-ruby", | ||
deps = [ | ||
":policysimulator_ruby_wrapper", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters