fix!: correct response_type for DeleteRepository and add missing bazel rules.

PiperOrigin-RevId: 341678368
pull/628/head
Google APIs 4 years ago committed by Copybara-Service
parent 6c0f55f33f
commit 8b15967515
  1. 208
      google/devtools/artifactregistry/v1beta2/BUILD.bazel
  2. 2
      google/devtools/artifactregistry/v1beta2/service.proto

@ -1,4 +1,13 @@
# This file was automatically generated by BuildFileGenerator # This file was automatically generated by BuildFileGenerator
# https://github.com/googleapis/gapic-generator/tree/master/rules_gapic/bazel
# Most of the manual changes to this file will be overwritten.
# It's **only** allowed to change the following rule attribute values:
# - names of *_gapic_assembly_* rules
# - certain parameters of *_gapic_library rules, including but not limited to:
# * extra_protoc_parameters
# * extra_protoc_file_parameters
# The complete list of preserved parameters can be found in the source code.
# This is an API workspace, having public visibility by default makes perfect sense. # This is an API workspace, having public visibility by default makes perfect sense.
package(default_visibility = ["//visibility:public"]) package(default_visibility = ["//visibility:public"])
@ -7,6 +16,7 @@ package(default_visibility = ["//visibility:public"])
# Common # Common
############################################################################## ##############################################################################
load("@rules_proto//proto:defs.bzl", "proto_library") load("@rules_proto//proto:defs.bzl", "proto_library")
load("@com_google_googleapis_imports//:imports.bzl", "proto_library_with_info")
proto_library( proto_library(
name = "artifactregistry_proto", name = "artifactregistry_proto",
@ -34,11 +44,22 @@ proto_library(
], ],
) )
proto_library_with_info(
name = "artifactregistry_proto_with_info",
deps = [
":artifactregistry_proto",
"//google/cloud:common_resources_proto",
],
)
############################################################################## ##############################################################################
# Java # Java
############################################################################## ##############################################################################
load( load(
"@com_google_googleapis_imports//:imports.bzl", "@com_google_googleapis_imports//:imports.bzl",
"java_gapic_assembly_gradle_pkg",
"java_gapic_library",
"java_gapic_test",
"java_grpc_library", "java_grpc_library",
"java_proto_library", "java_proto_library",
) )
@ -54,12 +75,51 @@ java_grpc_library(
deps = [":artifactregistry_java_proto"], deps = [":artifactregistry_java_proto"],
) )
java_gapic_library(
name = "artifactregistry_java_gapic",
src = ":artifactregistry_proto_with_info",
gapic_yaml = "artifactregistry_gapic.yaml",
grpc_service_config = "artifactregistry_grpc_service_config.json",
package = "google.devtools.artifactregistry.v1beta2",
service_yaml = "artifactregistry_v1beta2.yaml",
test_deps = [
":artifactregistry_java_grpc",
"//google/iam/v1:iam_java_grpc",
],
deps = [
":artifactregistry_java_proto",
"//google/iam/v1:iam_java_proto",
],
)
java_gapic_test(
name = "artifactregistry_java_gapic_test_suite",
test_classes = [
"com.google.devtools.artifactregistry.v1beta2.ArtifactRegistryClientTest",
],
runtime_deps = [":artifactregistry_java_gapic_test"],
)
# Open Source Packages
java_gapic_assembly_gradle_pkg(
name = "google-cloud-devtools-artifactregistry-v1beta2-java",
deps = [
":artifactregistry_java_gapic",
":artifactregistry_java_grpc",
":artifactregistry_java_proto",
":artifactregistry_proto",
],
)
############################################################################## ##############################################################################
# Go # Go
############################################################################## ##############################################################################
load( load(
"@com_google_googleapis_imports//:imports.bzl", "@com_google_googleapis_imports//:imports.bzl",
"go_gapic_assembly_pkg",
"go_gapic_library",
"go_proto_library", "go_proto_library",
"go_test",
) )
go_proto_library( go_proto_library(
@ -74,12 +134,46 @@ go_proto_library(
], ],
) )
go_gapic_library(
name = "artifactregistry_go_gapic",
srcs = [":artifactregistry_proto_with_info"],
grpc_service_config = "artifactregistry_grpc_service_config.json",
importpath = "cloud.google.com/go/devtools/artifactregistry/apiv1beta2;artifactregistry",
service_yaml = "artifactregistry_v1beta2.yaml",
deps = [
":artifactregistry_go_proto",
"//google/iam/v1:iam_go_proto",
"//google/longrunning:longrunning_go_proto",
"@com_google_cloud_go//longrunning/autogen:go_default_library",
"@com_google_cloud_go//longrunning:go_default_library",
],
)
go_test(
name = "artifactregistry_go_gapic_test",
srcs = [":artifactregistry_go_gapic_srcjar_test"],
embed = [":artifactregistry_go_gapic"],
importpath = "cloud.google.com/go/devtools/artifactregistry/apiv1beta2",
)
# Open Source Packages
go_gapic_assembly_pkg(
name = "gapi-cloud-devtools-artifactregistry-v1beta2-go",
deps = [
":artifactregistry_go_gapic",
":artifactregistry_go_gapic_srcjar-test.srcjar",
":artifactregistry_go_proto",
],
)
############################################################################## ##############################################################################
# Python # Python
############################################################################## ##############################################################################
load( load(
"@com_google_googleapis_imports//:imports.bzl", "@com_google_googleapis_imports//:imports.bzl",
"moved_proto_library", "moved_proto_library",
"py_gapic_assembly_pkg",
"py_gapic_library",
"py_grpc_library", "py_grpc_library",
"py_proto_library", "py_proto_library",
) )
@ -113,11 +207,36 @@ py_grpc_library(
deps = [":artifactregistry_py_proto"], deps = [":artifactregistry_py_proto"],
) )
py_gapic_library(
name = "artifactregistry_py_gapic",
src = ":artifactregistry_proto_with_info",
gapic_yaml = "artifactregistry_gapic.yaml",
grpc_service_config = "artifactregistry_grpc_service_config.json",
package = "google.devtools.artifactregistry.v1beta2",
service_yaml = "artifactregistry_v1beta2.yaml",
deps = [
":artifactregistry_py_grpc",
":artifactregistry_py_proto",
],
)
# Open Source Packages
py_gapic_assembly_pkg(
name = "devtools-artifactregistry-v1beta2-py",
deps = [
":artifactregistry_py_gapic",
":artifactregistry_py_grpc",
":artifactregistry_py_proto",
],
)
############################################################################## ##############################################################################
# PHP # PHP
############################################################################## ##############################################################################
load( load(
"@com_google_googleapis_imports//:imports.bzl", "@com_google_googleapis_imports//:imports.bzl",
"php_gapic_assembly_pkg",
"php_gapic_library",
"php_grpc_library", "php_grpc_library",
"php_proto_library", "php_proto_library",
) )
@ -133,6 +252,29 @@ php_grpc_library(
deps = [":artifactregistry_php_proto"], deps = [":artifactregistry_php_proto"],
) )
php_gapic_library(
name = "artifactregistry_php_gapic",
src = ":artifactregistry_proto_with_info",
gapic_yaml = "artifactregistry_gapic.yaml",
grpc_service_config = "artifactregistry_grpc_service_config.json",
package = "google.devtools.artifactregistry.v1beta2",
service_yaml = "artifactregistry_v1beta2.yaml",
deps = [
":artifactregistry_php_grpc",
":artifactregistry_php_proto",
],
)
# Open Source Packages
php_gapic_assembly_pkg(
name = "google-cloud-devtools-artifactregistry-v1beta2-php",
deps = [
":artifactregistry_php_gapic",
":artifactregistry_php_grpc",
":artifactregistry_php_proto",
],
)
############################################################################## ##############################################################################
# Node.js # Node.js
############################################################################## ##############################################################################
@ -142,12 +284,30 @@ load(
"nodejs_gapic_library", "nodejs_gapic_library",
) )
nodejs_gapic_library(
name = "artifactregistry_nodejs_gapic",
src = ":artifactregistry_proto_with_info",
grpc_service_config = "artifactregistry_grpc_service_config.json",
package = "google.devtools.artifactregistry.v1beta2",
service_yaml = "artifactregistry_v1beta2.yaml",
deps = [],
)
nodejs_gapic_assembly_pkg(
name = "devtools-artifactregistry-v1beta2-nodejs",
deps = [
":artifactregistry_nodejs_gapic",
":artifactregistry_proto",
],
)
############################################################################## ##############################################################################
# Ruby # Ruby
############################################################################## ##############################################################################
load( load(
"@com_google_googleapis_imports//:imports.bzl", "@com_google_googleapis_imports//:imports.bzl",
"ruby_gapic_assembly_pkg",
"ruby_gapic_library",
"ruby_grpc_library", "ruby_grpc_library",
"ruby_proto_library", "ruby_proto_library",
) )
@ -163,11 +323,36 @@ ruby_grpc_library(
deps = [":artifactregistry_ruby_proto"], deps = [":artifactregistry_ruby_proto"],
) )
ruby_gapic_library(
name = "artifactregistry_ruby_gapic",
src = ":artifactregistry_proto_with_info",
gapic_yaml = "artifactregistry_gapic.yaml",
grpc_service_config = "artifactregistry_grpc_service_config.json",
package = "google.devtools.artifactregistry.v1beta2",
service_yaml = "artifactregistry_v1beta2.yaml",
deps = [
":artifactregistry_ruby_grpc",
":artifactregistry_ruby_proto",
],
)
# Open Source Packages
ruby_gapic_assembly_pkg(
name = "google-cloud-devtools-artifactregistry-v1beta2-ruby",
deps = [
":artifactregistry_ruby_gapic",
":artifactregistry_ruby_grpc",
":artifactregistry_ruby_proto",
],
)
############################################################################## ##############################################################################
# C# # C#
############################################################################## ##############################################################################
load( load(
"@com_google_googleapis_imports//:imports.bzl", "@com_google_googleapis_imports//:imports.bzl",
"csharp_gapic_assembly_pkg",
"csharp_gapic_library",
"csharp_grpc_library", "csharp_grpc_library",
"csharp_proto_library", "csharp_proto_library",
) )
@ -183,7 +368,28 @@ csharp_grpc_library(
deps = [":artifactregistry_csharp_proto"], deps = [":artifactregistry_csharp_proto"],
) )
csharp_gapic_library(
name = "artifactregistry_csharp_gapic",
srcs = [":artifactregistry_proto_with_info"],
grpc_service_config = "artifactregistry_grpc_service_config.json",
common_resources_config = "@gax_dotnet//:Google.Api.Gax/ResourceNames/CommonResourcesConfig.json",
deps = [
":artifactregistry_csharp_grpc",
":artifactregistry_csharp_proto",
],
)
# Open Source Packages
csharp_gapic_assembly_pkg(
name = "google-cloud-devtools-artifactregistry-v1beta2-csharp",
deps = [
":artifactregistry_csharp_gapic",
":artifactregistry_csharp_grpc",
":artifactregistry_csharp_proto",
],
)
############################################################################## ##############################################################################
# C++ # C++
############################################################################## ##############################################################################
# Put your C++ code here # Put your C++ rules here

@ -104,7 +104,7 @@ service ArtifactRegistry {
}; };
option (google.api.method_signature) = "name"; option (google.api.method_signature) = "name";
option (google.longrunning.operation_info) = { option (google.longrunning.operation_info) = {
response_type: "google.proto.Empty" response_type: "google.protobuf.Empty"
metadata_type: "OperationMetadata" metadata_type: "OperationMetadata"
}; };
} }

Loading…
Cancel
Save