1# This build file includes a target for the Ruby wrapper library for 2# google-cloud-vmware_engine. 3 4# This is an API workspace, having public visibility by default makes perfect sense. 5package(default_visibility = ["//visibility:public"]) 6 7# Export yaml configs. 8exports_files(glob(["*.yaml"])) 9 10load( 11 "@com_google_googleapis_imports//:imports.bzl", 12 "ruby_cloud_gapic_library", 13 "ruby_gapic_assembly_pkg", 14) 15 16# Generates a Ruby wrapper client for VMware Engine. 17# Ruby wrapper clients are versionless, but are generated from source protos 18# for a particular service version, v1 in this case. 19ruby_cloud_gapic_library( 20 name = "vmwareengine_ruby_wrapper", 21 srcs = ["//google/cloud/vmwareengine/v1:vmwareengine_proto_with_info"], 22 extra_protoc_parameters = [ 23 "ruby-cloud-gem-name=google-cloud-vmware_engine", 24 "ruby-cloud-wrapper-of=v1:0.6", 25 "ruby-cloud-product-url=https://cloud.google.com/vmware-engine/", 26 "ruby-cloud-api-id=vmwareengine.googleapis.com", 27 "ruby-cloud-api-shortname=vmwareengine", 28 ], 29 ruby_cloud_description = "Google Cloud VMware Engine is a fully managed service that lets you run the VMware platform in Google Cloud. VMware Engine provides you with VMware operational continuity so you can benefit from a cloud consumption model and lower your total cost of ownership. VMware Engine also offers on-demand provisioning, pay-as-you-grow, and capacity optimization.", 30 ruby_cloud_title = "Google Cloud VMware Engine", 31 transport = "grpc+rest", 32) 33 34# Open Source package. 35ruby_gapic_assembly_pkg( 36 name = "google-cloud-vmwareengine-ruby", 37 deps = [ 38 ":vmwareengine_ruby_wrapper", 39 ], 40) 41