google-cloud-service_management-v1 0.4.1 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/google/cloud/service_management/v1/rest.rb +37 -0
- data/lib/google/cloud/service_management/v1/service_manager/rest/client.rb +1347 -0
- data/lib/google/cloud/service_management/v1/service_manager/rest/operations.rb +791 -0
- data/lib/google/cloud/service_management/v1/service_manager/rest/service_stub.rb +823 -0
- data/lib/google/cloud/service_management/v1/service_manager/rest.rb +53 -0
- data/lib/google/cloud/service_management/v1/service_manager.rb +6 -0
- data/lib/google/cloud/service_management/v1/version.rb +1 -1
- data/lib/google/cloud/service_management/v1.rb +5 -0
- metadata +11 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5dbdfceb2ffe80990ec667158a04873b283daa2b70efe4158bbf17195b03ee84
|
4
|
+
data.tar.gz: 48dd2d4bb32c1b85f04774ffff771fe2b376708e11a7ea1959477577d77be1d1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5ea0682cd81c35650d619b5d5cba2f7f9a8318dd0e383e70e91f6a941857b6fd6ae8aadd2fa45db83de0a6da3ca0175e9e53a13b95b9873fb60400d39c6a8f94
|
7
|
+
data.tar.gz: 213f38ffa4767c32eaa88817c62778d4263ac500ea0c343eea43f93e1a6b46643637235b09df8c562f369f09f1f666554128de6995e57f4c3cbaddf4ffb9155d
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Ruby Client for the Service Management V1 API
|
2
2
|
|
3
|
-
|
3
|
+
Google Service Management allows service producers to publish their services on Google Cloud Platform so that they can be discovered and used by service consumers.
|
4
4
|
|
5
5
|
Google Service Management allows service producers to publish their services on Google Cloud Platform so that they can be discovered and used by service consumers.
|
6
6
|
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
require "google/cloud/service_management/v1/service_manager/rest"
|
20
|
+
require "google/cloud/service_management/v1/version"
|
21
|
+
|
22
|
+
module Google
|
23
|
+
module Cloud
|
24
|
+
module ServiceManagement
|
25
|
+
##
|
26
|
+
# To load just the REST part of this package, including all its services, and instantiate a REST client:
|
27
|
+
#
|
28
|
+
# @example
|
29
|
+
#
|
30
|
+
# require "google/cloud/service_management/v1/rest"
|
31
|
+
# client = ::Google::Cloud::ServiceManagement::V1::ServiceManager::Rest::Client.new
|
32
|
+
#
|
33
|
+
module V1
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|