@grafana/openapi 13.1.0-25469333600 → 13.1.0-25644485979
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.
|
@@ -742,7 +742,13 @@
|
|
|
742
742
|
"$ref": "#/components/schemas/CorrelationDataSourceRef"
|
|
743
743
|
},
|
|
744
744
|
"target": {
|
|
745
|
-
"
|
|
745
|
+
"description": "null is for PATCH/edit when we want to clear the value",
|
|
746
|
+
"nullable": true,
|
|
747
|
+
"allOf": [
|
|
748
|
+
{
|
|
749
|
+
"$ref": "#/components/schemas/CorrelationDataSourceRef"
|
|
750
|
+
}
|
|
751
|
+
]
|
|
746
752
|
},
|
|
747
753
|
"type": {
|
|
748
754
|
"$ref": "#/components/schemas/CorrelationCorrelationType"
|
|
@@ -2882,6 +2882,43 @@
|
|
|
2882
2882
|
}
|
|
2883
2883
|
]
|
|
2884
2884
|
},
|
|
2885
|
+
"/teams/{name}/addmember": {
|
|
2886
|
+
"post": {
|
|
2887
|
+
"tags": ["Team"],
|
|
2888
|
+
"description": "connect POST requests to addmember of Team",
|
|
2889
|
+
"operationId": "createTeamAddmember",
|
|
2890
|
+
"responses": {
|
|
2891
|
+
"200": {
|
|
2892
|
+
"description": "OK",
|
|
2893
|
+
"content": {
|
|
2894
|
+
"*/*": {
|
|
2895
|
+
"schema": {
|
|
2896
|
+
"$ref": "#/components/schemas/github.com~1grafana~1grafana~1pkg~1apis~1iam~1v0alpha1.TeamMemberList"
|
|
2897
|
+
}
|
|
2898
|
+
}
|
|
2899
|
+
}
|
|
2900
|
+
}
|
|
2901
|
+
},
|
|
2902
|
+
"x-kubernetes-action": "connect",
|
|
2903
|
+
"x-kubernetes-group-version-kind": {
|
|
2904
|
+
"group": "iam.grafana.app",
|
|
2905
|
+
"version": "v0alpha1",
|
|
2906
|
+
"kind": "TeamMemberList"
|
|
2907
|
+
}
|
|
2908
|
+
},
|
|
2909
|
+
"parameters": [
|
|
2910
|
+
{
|
|
2911
|
+
"name": "name",
|
|
2912
|
+
"in": "path",
|
|
2913
|
+
"description": "name of the TeamMemberList",
|
|
2914
|
+
"required": true,
|
|
2915
|
+
"schema": {
|
|
2916
|
+
"type": "string",
|
|
2917
|
+
"uniqueItems": true
|
|
2918
|
+
}
|
|
2919
|
+
}
|
|
2920
|
+
]
|
|
2921
|
+
},
|
|
2885
2922
|
"/teams/{name}/groups": {
|
|
2886
2923
|
"get": {
|
|
2887
2924
|
"tags": ["Team"],
|
|
@@ -3020,6 +3057,43 @@
|
|
|
3020
3057
|
}
|
|
3021
3058
|
]
|
|
3022
3059
|
},
|
|
3060
|
+
"/teams/{name}/removemember": {
|
|
3061
|
+
"post": {
|
|
3062
|
+
"tags": ["Team"],
|
|
3063
|
+
"description": "connect POST requests to removemember of Team",
|
|
3064
|
+
"operationId": "createTeamRemovemember",
|
|
3065
|
+
"responses": {
|
|
3066
|
+
"200": {
|
|
3067
|
+
"description": "OK",
|
|
3068
|
+
"content": {
|
|
3069
|
+
"*/*": {
|
|
3070
|
+
"schema": {
|
|
3071
|
+
"$ref": "#/components/schemas/github.com~1grafana~1grafana~1pkg~1apis~1iam~1v0alpha1.TeamMemberList"
|
|
3072
|
+
}
|
|
3073
|
+
}
|
|
3074
|
+
}
|
|
3075
|
+
}
|
|
3076
|
+
},
|
|
3077
|
+
"x-kubernetes-action": "connect",
|
|
3078
|
+
"x-kubernetes-group-version-kind": {
|
|
3079
|
+
"group": "iam.grafana.app",
|
|
3080
|
+
"version": "v0alpha1",
|
|
3081
|
+
"kind": "TeamMemberList"
|
|
3082
|
+
}
|
|
3083
|
+
},
|
|
3084
|
+
"parameters": [
|
|
3085
|
+
{
|
|
3086
|
+
"name": "name",
|
|
3087
|
+
"in": "path",
|
|
3088
|
+
"description": "name of the TeamMemberList",
|
|
3089
|
+
"required": true,
|
|
3090
|
+
"schema": {
|
|
3091
|
+
"type": "string",
|
|
3092
|
+
"uniqueItems": true
|
|
3093
|
+
}
|
|
3094
|
+
}
|
|
3095
|
+
]
|
|
3096
|
+
},
|
|
3023
3097
|
"/users": {
|
|
3024
3098
|
"get": {
|
|
3025
3099
|
"tags": ["User"],
|
|
@@ -3973,6 +4047,60 @@
|
|
|
3973
4047
|
}
|
|
3974
4048
|
]
|
|
3975
4049
|
},
|
|
4050
|
+
"CreateTeamMemberBody": {
|
|
4051
|
+
"type": "object",
|
|
4052
|
+
"required": ["team", "user", "permission", "external"],
|
|
4053
|
+
"properties": {
|
|
4054
|
+
"external": {
|
|
4055
|
+
"description": "external reflects the stored origin of the membership after the operation. On a re-add this may differ from the value submitted in the request; clients that care about origin should diff request vs response.",
|
|
4056
|
+
"type": "boolean",
|
|
4057
|
+
"default": false
|
|
4058
|
+
},
|
|
4059
|
+
"permission": {
|
|
4060
|
+
"type": "string",
|
|
4061
|
+
"default": ""
|
|
4062
|
+
},
|
|
4063
|
+
"team": {
|
|
4064
|
+
"type": "string",
|
|
4065
|
+
"default": ""
|
|
4066
|
+
},
|
|
4067
|
+
"user": {
|
|
4068
|
+
"type": "string",
|
|
4069
|
+
"default": ""
|
|
4070
|
+
}
|
|
4071
|
+
}
|
|
4072
|
+
},
|
|
4073
|
+
"CreateTeamMemberResponse": {
|
|
4074
|
+
"type": "object",
|
|
4075
|
+
"required": ["team", "user", "permission", "external"],
|
|
4076
|
+
"properties": {
|
|
4077
|
+
"apiVersion": {
|
|
4078
|
+
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
|
|
4079
|
+
"type": "string"
|
|
4080
|
+
},
|
|
4081
|
+
"external": {
|
|
4082
|
+
"description": "external reflects the stored origin of the membership after the operation. On a re-add this may differ from the value submitted in the request; clients that care about origin should diff request vs response.",
|
|
4083
|
+
"type": "boolean",
|
|
4084
|
+
"default": false
|
|
4085
|
+
},
|
|
4086
|
+
"kind": {
|
|
4087
|
+
"description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
|
|
4088
|
+
"type": "string"
|
|
4089
|
+
},
|
|
4090
|
+
"permission": {
|
|
4091
|
+
"type": "string",
|
|
4092
|
+
"default": ""
|
|
4093
|
+
},
|
|
4094
|
+
"team": {
|
|
4095
|
+
"type": "string",
|
|
4096
|
+
"default": ""
|
|
4097
|
+
},
|
|
4098
|
+
"user": {
|
|
4099
|
+
"type": "string",
|
|
4100
|
+
"default": ""
|
|
4101
|
+
}
|
|
4102
|
+
}
|
|
4103
|
+
},
|
|
3976
4104
|
"DeleteServiceAccountTokenBody": {
|
|
3977
4105
|
"type": "object",
|
|
3978
4106
|
"required": ["message"],
|
|
@@ -4008,6 +4136,42 @@
|
|
|
4008
4136
|
}
|
|
4009
4137
|
]
|
|
4010
4138
|
},
|
|
4139
|
+
"DeleteTeamMemberBody": {
|
|
4140
|
+
"type": "object",
|
|
4141
|
+
"required": ["team", "user"],
|
|
4142
|
+
"properties": {
|
|
4143
|
+
"team": {
|
|
4144
|
+
"type": "string",
|
|
4145
|
+
"default": ""
|
|
4146
|
+
},
|
|
4147
|
+
"user": {
|
|
4148
|
+
"type": "string",
|
|
4149
|
+
"default": ""
|
|
4150
|
+
}
|
|
4151
|
+
}
|
|
4152
|
+
},
|
|
4153
|
+
"DeleteTeamMemberResponse": {
|
|
4154
|
+
"type": "object",
|
|
4155
|
+
"required": ["team", "user"],
|
|
4156
|
+
"properties": {
|
|
4157
|
+
"apiVersion": {
|
|
4158
|
+
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
|
|
4159
|
+
"type": "string"
|
|
4160
|
+
},
|
|
4161
|
+
"kind": {
|
|
4162
|
+
"description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
|
|
4163
|
+
"type": "string"
|
|
4164
|
+
},
|
|
4165
|
+
"team": {
|
|
4166
|
+
"type": "string",
|
|
4167
|
+
"default": ""
|
|
4168
|
+
},
|
|
4169
|
+
"user": {
|
|
4170
|
+
"type": "string",
|
|
4171
|
+
"default": ""
|
|
4172
|
+
}
|
|
4173
|
+
}
|
|
4174
|
+
},
|
|
4011
4175
|
"ExternalGroupMapping": {
|
|
4012
4176
|
"type": "object",
|
|
4013
4177
|
"required": ["metadata", "spec"],
|