google-cloud-api_hub-v1 0.4.1 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/google/cloud/api_hub/v1/api_hub/paths.rb +21 -0
- data/lib/google/cloud/api_hub/v1/api_hub/rest/client.rb +497 -9
- data/lib/google/cloud/api_hub/v1/api_hub/rest/service_stub.rb +185 -0
- data/lib/google/cloud/api_hub/v1/api_hub_collect/credentials.rb +47 -0
- data/lib/google/cloud/api_hub/v1/api_hub_collect/paths.rb +218 -0
- data/lib/google/cloud/api_hub/v1/api_hub_collect/rest/client.rb +487 -0
- data/lib/google/cloud/api_hub/v1/api_hub_collect/rest/operations.rb +914 -0
- data/lib/google/cloud/api_hub/v1/api_hub_collect/rest/service_stub.rb +143 -0
- data/lib/google/cloud/api_hub/v1/api_hub_collect/rest.rb +56 -0
- data/lib/google/cloud/api_hub/v1/api_hub_collect.rb +50 -0
- data/lib/google/cloud/api_hub/v1/api_hub_curate/credentials.rb +47 -0
- data/lib/google/cloud/api_hub/v1/api_hub_curate/paths.rb +90 -0
- data/lib/google/cloud/api_hub/v1/api_hub_curate/rest/client.rb +869 -0
- data/lib/google/cloud/api_hub/v1/api_hub_curate/rest/service_stub.rb +388 -0
- data/lib/google/cloud/api_hub/v1/api_hub_curate/rest.rb +54 -0
- data/lib/google/cloud/api_hub/v1/api_hub_curate.rb +49 -0
- data/lib/google/cloud/api_hub/v1/api_hub_discovery/credentials.rb +47 -0
- data/lib/google/cloud/api_hub/v1/api_hub_discovery/paths.rb +90 -0
- data/lib/google/cloud/api_hub/v1/api_hub_discovery/rest/client.rb +750 -0
- data/lib/google/cloud/api_hub/v1/api_hub_discovery/rest/service_stub.rb +325 -0
- data/lib/google/cloud/api_hub/v1/api_hub_discovery/rest.rb +54 -0
- data/lib/google/cloud/api_hub/v1/api_hub_discovery.rb +49 -0
- data/lib/google/cloud/api_hub/v1/api_hub_plugin/paths.rb +74 -0
- data/lib/google/cloud/api_hub/v1/api_hub_plugin/rest/client.rb +1265 -98
- data/lib/google/cloud/api_hub/v1/api_hub_plugin/rest/operations.rb +914 -0
- data/lib/google/cloud/api_hub/v1/api_hub_plugin/rest/service_stub.rb +677 -0
- data/lib/google/cloud/api_hub/v1/api_hub_plugin/rest.rb +1 -0
- data/lib/google/cloud/api_hub/v1/bindings_override.rb +2 -29
- data/lib/google/cloud/api_hub/v1/provisioning/rest/client.rb +96 -0
- data/lib/google/cloud/api_hub/v1/provisioning/rest/service_stub.rb +61 -0
- data/lib/google/cloud/api_hub/v1/rest.rb +3 -0
- data/lib/google/cloud/api_hub/v1/version.rb +1 -1
- data/lib/google/cloud/api_hub/v1.rb +3 -0
- data/lib/google/cloud/apihub/v1/apihub_service_pb.rb +4 -1
- data/lib/google/cloud/apihub/v1/apihub_service_services_pb.rb +35 -2
- data/lib/google/cloud/apihub/v1/collect_service_pb.rb +60 -0
- data/lib/google/cloud/apihub/v1/collect_service_services_pb.rb +47 -0
- data/lib/google/cloud/apihub/v1/common_fields_pb.rb +34 -1
- data/lib/google/cloud/apihub/v1/curate_service_pb.rb +63 -0
- data/lib/google/cloud/apihub/v1/curate_service_services_pb.rb +64 -0
- data/lib/google/cloud/apihub/v1/discovery_service_pb.rb +54 -0
- data/lib/google/cloud/apihub/v1/discovery_service_services_pb.rb +55 -0
- data/lib/google/cloud/apihub/v1/plugin_service_pb.rb +44 -1
- data/lib/google/cloud/apihub/v1/plugin_service_services_pb.rb +43 -1
- data/lib/google/cloud/apihub/v1/provisioning_service_pb.rb +3 -1
- data/lib/google/cloud/apihub/v1/provisioning_service_services_pb.rb +2 -0
- data/proto_docs/google/cloud/apihub/v1/apihub_service.rb +251 -15
- data/proto_docs/google/cloud/apihub/v1/collect_service.rb +188 -0
- data/proto_docs/google/cloud/apihub/v1/common_fields.rb +819 -28
- data/proto_docs/google/cloud/apihub/v1/curate_service.rb +268 -0
- data/proto_docs/google/cloud/apihub/v1/discovery_service.rb +124 -0
- data/proto_docs/google/cloud/apihub/v1/linting_service.rb +10 -4
- data/proto_docs/google/cloud/apihub/v1/plugin_service.rb +799 -1
- data/proto_docs/google/cloud/apihub/v1/provisioning_service.rb +13 -0
- metadata +40 -23
@@ -44,6 +44,19 @@ module Google
|
|
44
44
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
45
45
|
end
|
46
46
|
|
47
|
+
# The
|
48
|
+
# {::Google::Cloud::ApiHub::V1::Provisioning::Rest::Client#delete_api_hub_instance DeleteApiHubInstance}
|
49
|
+
# method's request.
|
50
|
+
# @!attribute [rw] name
|
51
|
+
# @return [::String]
|
52
|
+
# Required. The name of the Api Hub instance to delete.
|
53
|
+
# Format:
|
54
|
+
# `projects/{project}/locations/{location}/apiHubInstances/{apiHubInstance}`.
|
55
|
+
class DeleteApiHubInstanceRequest
|
56
|
+
include ::Google::Protobuf::MessageExts
|
57
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
58
|
+
end
|
59
|
+
|
47
60
|
# The
|
48
61
|
# {::Google::Cloud::ApiHub::V1::Provisioning::Rest::Client#get_api_hub_instance GetApiHubInstance}
|
49
62
|
# method's request.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-api_hub-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -13,22 +13,16 @@ dependencies:
|
|
13
13
|
name: gapic-common
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
15
15
|
requirements:
|
16
|
-
- - "
|
17
|
-
- !ruby/object:Gem::Version
|
18
|
-
version: 0.25.0
|
19
|
-
- - "<"
|
16
|
+
- - "~>"
|
20
17
|
- !ruby/object:Gem::Version
|
21
|
-
version: 2
|
18
|
+
version: '1.2'
|
22
19
|
type: :runtime
|
23
20
|
prerelease: false
|
24
21
|
version_requirements: !ruby/object:Gem::Requirement
|
25
22
|
requirements:
|
26
|
-
- - "
|
27
|
-
- !ruby/object:Gem::Version
|
28
|
-
version: 0.25.0
|
29
|
-
- - "<"
|
23
|
+
- - "~>"
|
30
24
|
- !ruby/object:Gem::Version
|
31
|
-
version: 2
|
25
|
+
version: '1.2'
|
32
26
|
- !ruby/object:Gem::Dependency
|
33
27
|
name: google-cloud-errors
|
34
28
|
requirement: !ruby/object:Gem::Requirement
|
@@ -47,22 +41,16 @@ dependencies:
|
|
47
41
|
name: google-cloud-location
|
48
42
|
requirement: !ruby/object:Gem::Requirement
|
49
43
|
requirements:
|
50
|
-
- - "
|
51
|
-
- !ruby/object:Gem::Version
|
52
|
-
version: '0.7'
|
53
|
-
- - "<"
|
44
|
+
- - "~>"
|
54
45
|
- !ruby/object:Gem::Version
|
55
|
-
version:
|
46
|
+
version: '1.0'
|
56
47
|
type: :runtime
|
57
48
|
prerelease: false
|
58
49
|
version_requirements: !ruby/object:Gem::Requirement
|
59
50
|
requirements:
|
60
|
-
- - "
|
61
|
-
- !ruby/object:Gem::Version
|
62
|
-
version: '0.7'
|
63
|
-
- - "<"
|
51
|
+
- - "~>"
|
64
52
|
- !ruby/object:Gem::Version
|
65
|
-
version:
|
53
|
+
version: '1.0'
|
66
54
|
description: API hub lets you consolidate and organize information about all of the
|
67
55
|
APIs of interest to your organization. API hub lets you capture critical information
|
68
56
|
about APIs that allows developers to discover and evaluate them easily and leverage
|
@@ -87,17 +75,37 @@ files:
|
|
87
75
|
- lib/google/cloud/api_hub/v1/api_hub/rest.rb
|
88
76
|
- lib/google/cloud/api_hub/v1/api_hub/rest/client.rb
|
89
77
|
- lib/google/cloud/api_hub/v1/api_hub/rest/service_stub.rb
|
78
|
+
- lib/google/cloud/api_hub/v1/api_hub_collect.rb
|
79
|
+
- lib/google/cloud/api_hub/v1/api_hub_collect/credentials.rb
|
80
|
+
- lib/google/cloud/api_hub/v1/api_hub_collect/paths.rb
|
81
|
+
- lib/google/cloud/api_hub/v1/api_hub_collect/rest.rb
|
82
|
+
- lib/google/cloud/api_hub/v1/api_hub_collect/rest/client.rb
|
83
|
+
- lib/google/cloud/api_hub/v1/api_hub_collect/rest/operations.rb
|
84
|
+
- lib/google/cloud/api_hub/v1/api_hub_collect/rest/service_stub.rb
|
85
|
+
- lib/google/cloud/api_hub/v1/api_hub_curate.rb
|
86
|
+
- lib/google/cloud/api_hub/v1/api_hub_curate/credentials.rb
|
87
|
+
- lib/google/cloud/api_hub/v1/api_hub_curate/paths.rb
|
88
|
+
- lib/google/cloud/api_hub/v1/api_hub_curate/rest.rb
|
89
|
+
- lib/google/cloud/api_hub/v1/api_hub_curate/rest/client.rb
|
90
|
+
- lib/google/cloud/api_hub/v1/api_hub_curate/rest/service_stub.rb
|
90
91
|
- lib/google/cloud/api_hub/v1/api_hub_dependencies.rb
|
91
92
|
- lib/google/cloud/api_hub/v1/api_hub_dependencies/credentials.rb
|
92
93
|
- lib/google/cloud/api_hub/v1/api_hub_dependencies/paths.rb
|
93
94
|
- lib/google/cloud/api_hub/v1/api_hub_dependencies/rest.rb
|
94
95
|
- lib/google/cloud/api_hub/v1/api_hub_dependencies/rest/client.rb
|
95
96
|
- lib/google/cloud/api_hub/v1/api_hub_dependencies/rest/service_stub.rb
|
97
|
+
- lib/google/cloud/api_hub/v1/api_hub_discovery.rb
|
98
|
+
- lib/google/cloud/api_hub/v1/api_hub_discovery/credentials.rb
|
99
|
+
- lib/google/cloud/api_hub/v1/api_hub_discovery/paths.rb
|
100
|
+
- lib/google/cloud/api_hub/v1/api_hub_discovery/rest.rb
|
101
|
+
- lib/google/cloud/api_hub/v1/api_hub_discovery/rest/client.rb
|
102
|
+
- lib/google/cloud/api_hub/v1/api_hub_discovery/rest/service_stub.rb
|
96
103
|
- lib/google/cloud/api_hub/v1/api_hub_plugin.rb
|
97
104
|
- lib/google/cloud/api_hub/v1/api_hub_plugin/credentials.rb
|
98
105
|
- lib/google/cloud/api_hub/v1/api_hub_plugin/paths.rb
|
99
106
|
- lib/google/cloud/api_hub/v1/api_hub_plugin/rest.rb
|
100
107
|
- lib/google/cloud/api_hub/v1/api_hub_plugin/rest/client.rb
|
108
|
+
- lib/google/cloud/api_hub/v1/api_hub_plugin/rest/operations.rb
|
101
109
|
- lib/google/cloud/api_hub/v1/api_hub_plugin/rest/service_stub.rb
|
102
110
|
- lib/google/cloud/api_hub/v1/bindings_override.rb
|
103
111
|
- lib/google/cloud/api_hub/v1/host_project_registration_service.rb
|
@@ -129,7 +137,13 @@ files:
|
|
129
137
|
- lib/google/cloud/api_hub/v1/version.rb
|
130
138
|
- lib/google/cloud/apihub/v1/apihub_service_pb.rb
|
131
139
|
- lib/google/cloud/apihub/v1/apihub_service_services_pb.rb
|
140
|
+
- lib/google/cloud/apihub/v1/collect_service_pb.rb
|
141
|
+
- lib/google/cloud/apihub/v1/collect_service_services_pb.rb
|
132
142
|
- lib/google/cloud/apihub/v1/common_fields_pb.rb
|
143
|
+
- lib/google/cloud/apihub/v1/curate_service_pb.rb
|
144
|
+
- lib/google/cloud/apihub/v1/curate_service_services_pb.rb
|
145
|
+
- lib/google/cloud/apihub/v1/discovery_service_pb.rb
|
146
|
+
- lib/google/cloud/apihub/v1/discovery_service_services_pb.rb
|
133
147
|
- lib/google/cloud/apihub/v1/host_project_registration_service_pb.rb
|
134
148
|
- lib/google/cloud/apihub/v1/host_project_registration_service_services_pb.rb
|
135
149
|
- lib/google/cloud/apihub/v1/linting_service_pb.rb
|
@@ -146,7 +160,10 @@ files:
|
|
146
160
|
- proto_docs/google/api/launch_stage.rb
|
147
161
|
- proto_docs/google/api/resource.rb
|
148
162
|
- proto_docs/google/cloud/apihub/v1/apihub_service.rb
|
163
|
+
- proto_docs/google/cloud/apihub/v1/collect_service.rb
|
149
164
|
- proto_docs/google/cloud/apihub/v1/common_fields.rb
|
165
|
+
- proto_docs/google/cloud/apihub/v1/curate_service.rb
|
166
|
+
- proto_docs/google/cloud/apihub/v1/discovery_service.rb
|
150
167
|
- proto_docs/google/cloud/apihub/v1/host_project_registration_service.rb
|
151
168
|
- proto_docs/google/cloud/apihub/v1/linting_service.rb
|
152
169
|
- proto_docs/google/cloud/apihub/v1/plugin_service.rb
|
@@ -170,14 +187,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
170
187
|
requirements:
|
171
188
|
- - ">="
|
172
189
|
- !ruby/object:Gem::Version
|
173
|
-
version: '3.
|
190
|
+
version: '3.1'
|
174
191
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
175
192
|
requirements:
|
176
193
|
- - ">="
|
177
194
|
- !ruby/object:Gem::Version
|
178
195
|
version: '0'
|
179
196
|
requirements: []
|
180
|
-
rubygems_version: 3.6.
|
197
|
+
rubygems_version: 3.6.9
|
181
198
|
specification_version: 4
|
182
199
|
summary: API Client library for the API hub V1 API
|
183
200
|
test_files: []
|