You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.",
"description": "Returns a specific Resource in a namespace",
116
+
"tags": [
117
+
"third_party_resources"
118
+
],
119
+
"parameters": [
120
+
{
121
+
"name": "namespace",
122
+
"in": "path",
123
+
"required": true,
124
+
"description": "The Resource's namespace",
125
+
"type": "string"
126
+
},
127
+
{
128
+
"name": "name",
129
+
"in": "path",
130
+
"required": true,
131
+
"description": "The Resource's name",
132
+
"type": "string"
133
+
},
134
+
{
135
+
"name": "fqdn",
136
+
"in": "path",
137
+
"required": true,
138
+
"description": "The Third party Resource fqdn",
139
+
"type": "string"
140
+
},
141
+
{
142
+
"name": "resource",
143
+
"in": "path",
144
+
"required": true,
145
+
"description": "The Resource type",
146
+
"type": "string"
147
+
}
148
+
],
149
+
"responses": {
150
+
"200": {
151
+
"description": "A single Resource",
152
+
"schema": {
153
+
"type": "object"
154
+
}
155
+
}
156
+
}
157
+
},
158
+
"delete": {
159
+
"security": [
160
+
{
161
+
"Bearer": [
162
+
163
+
]
164
+
}
165
+
],
166
+
"summary": "Deletes a specific Resource",
167
+
"description": "Deletes the specified Resource in the specified namespace",
168
+
"tags": [
169
+
"third_party_resources"
170
+
],
171
+
"parameters": [
172
+
{
173
+
"name": "body",
174
+
"in": "body",
175
+
"required": true,
176
+
"schema": {
177
+
"$ref": "#/definitions/v1.DeleteOptions"
178
+
}
179
+
},
180
+
{
181
+
"name": "gracePeriodSeconds",
182
+
"uniqueItems": true,
183
+
"type": "integer",
184
+
"description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
185
+
"in": "query"
186
+
},
187
+
{
188
+
"name": "orphanDependents",
189
+
"uniqueItems": true,
190
+
"type": "boolean",
191
+
"description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.",
192
+
"in": "query"
193
+
},
194
+
{
195
+
"name": "propagationPolicy",
196
+
"uniqueItems": true,
197
+
"type": "string",
198
+
"description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy.",
199
+
"in": "query"
200
+
}
201
+
],
202
+
"responses": {
203
+
"200": {
204
+
"description": "OK",
205
+
"schema": {
206
+
"type": "object"
207
+
}
208
+
}
209
+
}
210
+
},
211
+
"put": {
212
+
"security": [
213
+
{
214
+
"Bearer": [
215
+
216
+
]
217
+
}
218
+
],
219
+
"summary": "Replace a Resource",
220
+
"description": "Replaces the specified third party resource of the type specified",
221
+
"tags": [
222
+
"third_party_resources"
223
+
],
224
+
"parameters": [
225
+
{
226
+
"name": "namespace",
227
+
"in": "path",
228
+
"required": true,
229
+
"description": "The Resource's namespace",
230
+
"type": "string"
231
+
},
232
+
{
233
+
"name": "fqdn",
234
+
"in": "path",
235
+
"required": true,
236
+
"description": "The Third party Resource fqdn",
237
+
"type": "string"
238
+
},
239
+
{
240
+
"name": "resource",
241
+
"in": "path",
242
+
"required": true,
243
+
"description": "The Resource type",
244
+
"type": "string"
245
+
},
246
+
{
247
+
"name": "body",
248
+
"in": "body",
249
+
"required": true,
250
+
"description": "The JSON schema of the Resource to create.",
0 commit comments