mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/yunionio/cloudpods.git
synced 2026-09-21 00:24:07 +08:00
41 lines
1.0 KiB
YAML
41 lines
1.0 KiB
YAML
get:
|
|
summary: 获得指定认证源的详情
|
|
parameters:
|
|
- $ref: '../parameters/identity_provider.yaml#/idp_id'
|
|
responses:
|
|
200:
|
|
description: 认证源信息
|
|
schema:
|
|
$ref: "../schemas/identity_provider.yaml#/IdpGetResponse"
|
|
tags:
|
|
- identity_providers
|
|
|
|
put:
|
|
summary: 更新指定认证源的字段
|
|
parameters:
|
|
- $ref: '../parameters/identity_provider.yaml#/idp_id'
|
|
- name: identity_provider
|
|
in: body
|
|
required: true
|
|
schema:
|
|
$ref: "../schemas/identity_provider.yaml#/IdpPutRequestInput"
|
|
responses:
|
|
200:
|
|
description: 认证源信息
|
|
schema:
|
|
$ref: "../schemas/identity_provider.yaml#/IdpGetResponse"
|
|
tags:
|
|
- identity_providers
|
|
|
|
delete:
|
|
summary: 删除指定的认证源
|
|
parameters:
|
|
- $ref: '../parameters/identity_provider.yaml#/idp_id'
|
|
responses:
|
|
200:
|
|
description: 被删除的认证源信息
|
|
schema:
|
|
$ref: "../schemas/identity_provider.yaml#/IdpGetResponse"
|
|
tags:
|
|
- identity_providers
|