Skip to content

Commit 072ecb2

Browse files
[CI] api has been built
1 parent 4f9d95e commit 072ecb2

File tree

11 files changed

+302
-197
lines changed

11 files changed

+302
-197
lines changed

dist/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ replace github.com/cloudforet-io/api => ./
77
require (
88
github.com/golang/protobuf v1.5.4
99
github.com/grpc-ecosystem/grpc-gateway/v2 v2.25.1
10-
google.golang.org/genproto/googleapis/api v0.0.0-20241219192143-6b3ec007d9bb
10+
google.golang.org/genproto/googleapis/api v0.0.0-20241223144023-3abc09e42ca8
1111
google.golang.org/grpc v1.69.2
1212
google.golang.org/protobuf v1.36.1
1313
)

dist/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ golang.org/x/sys v0.28.0 h1:Fksou7UEQUWlKvIdsqzJmUmCX3cZuD2+P3XyyzwMhlA=
2626
golang.org/x/sys v0.28.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
2727
golang.org/x/text v0.21.0 h1:zyQAAkrwaneQ066sspRyJaG9VNi/YJ1NfzcGB3hZ/qo=
2828
golang.org/x/text v0.21.0/go.mod h1:4IBbMaMmOPCJ8SecivzSH54+73PCFmPWxNTLm+vZkEQ=
29-
google.golang.org/genproto/googleapis/api v0.0.0-20241219192143-6b3ec007d9bb h1:B7GIB7sr443wZ/EAEl7VZjmh1V6qzkt5V+RYcUYtS1U=
30-
google.golang.org/genproto/googleapis/api v0.0.0-20241219192143-6b3ec007d9bb/go.mod h1:E5//3O5ZIG2l71Xnt+P/CYUY8Bxs8E7WMoZ9tlcMbAY=
29+
google.golang.org/genproto/googleapis/api v0.0.0-20241223144023-3abc09e42ca8 h1:st3LcW/BPi75W4q1jJTEor/QWwbNlPlDG0JTn6XhZu0=
30+
google.golang.org/genproto/googleapis/api v0.0.0-20241223144023-3abc09e42ca8/go.mod h1:klhJGKFyG8Tn50enBn7gizg4nXGXJ+jqEREdCWaPcV4=
3131
google.golang.org/genproto/googleapis/rpc v0.0.0-20241219192143-6b3ec007d9bb h1:3oy2tynMOP1QbTC0MsNNAV+Se8M2Bd0A5+x1QHyw+pI=
3232
google.golang.org/genproto/googleapis/rpc v0.0.0-20241219192143-6b3ec007d9bb/go.mod h1:lcTa1sDdWEIHMWlITnIczmw5w60CF9ffkb8Z+DVmmjA=
3333
google.golang.org/grpc v1.69.2 h1:U3S9QEtbXC0bYNvRtcoklF3xGtLViumSYxWykJS+7AU=

dist/go/spaceone/api/alert-manager/v1/service.pb.go

+226-167
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/json/cloudforet/api/alert_manager/v1/Service.json

+36
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,42 @@
274274
}
275275
]
276276
},
277+
{
278+
"name": "ServiceDeleteRequest",
279+
"longName": "ServiceDeleteRequest",
280+
"fullName": "spaceone.api.alert_manager.v1.ServiceDeleteRequest",
281+
"description": "",
282+
"hasExtensions": false,
283+
"hasFields": true,
284+
"hasOneofs": false,
285+
"extensions": [],
286+
"fields": [
287+
{
288+
"name": "service_id",
289+
"description": "",
290+
"label": "",
291+
"type": "string",
292+
"longType": "string",
293+
"fullType": "string",
294+
"ismap": false,
295+
"isoneof": false,
296+
"oneofdecl": "",
297+
"defaultValue": ""
298+
},
299+
{
300+
"name": "force",
301+
"description": "+optional",
302+
"label": "",
303+
"type": "bool",
304+
"longType": "bool",
305+
"fullType": "bool",
306+
"ismap": false,
307+
"isoneof": false,
308+
"oneofdecl": "",
309+
"defaultValue": ""
310+
}
311+
]
312+
},
277313
{
278314
"name": "ServiceInfo",
279315
"longName": "ServiceInfo",

dist/openapi/cloudforet/api/alert_manager/v1/openapi.json

+6
Original file line numberDiff line numberDiff line change
@@ -2626,6 +2626,12 @@
26262626
"required": ["name","service_key"],
26272627
"title": "ServiceCreateRequest"
26282628
}
2629+
, "ServiceDeleteRequest": {
2630+
"properties" : {"service_id" : {"type": "string","title": "SERVICE_ID"},"force" : {"type": "boolean","title": "FORCE"}},
2631+
"type": "object",
2632+
"required": ["service_id"],
2633+
"title": "ServiceDeleteRequest"
2634+
}
26292635
, "ServiceInfo": {
26302636
"properties" : {"service_id" : {"type": "string","title": "SERVICE_ID"},"name" : {"type": "string","title": "NAME"},"service_key" : {"type": "string","title": "SERVICE_KEY"},"description" : {"type": "string","title": "DESCRIPTION"},"members" : {"$ref": "#/components/schemas/ServiceMembers","title": "MEMBERS"},"options" : {"$ref": "#/components/schemas/ServiceOptions","title": "OPTIONS"},"channels" : {"items": {"type": "string"},
26312637
"type": "array","title": "CHANNELS"},"webhooks" : {"items": {"type": "string"},

dist/python/build/lib/spaceone/api/alert_manager/v1/service_pb2.py

+15-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
-269 KB
Binary file not shown.
269 KB
Binary file not shown.

0 commit comments

Comments
 (0)