File tree Expand file tree Collapse file tree 4 files changed +29
-51
lines changed
specification/specs/cluster/cluster_delete_component_template Expand file tree Collapse file tree 4 files changed +29
-51
lines changed Original file line number Diff line number Diff line change 33851
33851
"attachedBehaviors": [
33852
33852
"CommonQueryParameters"
33853
33853
],
33854
- "body": {
33855
- "kind": "properties",
33856
- "properties": [
33857
- {
33858
- "name": "stub_c",
33859
- "required": true,
33860
- "type": {
33861
- "kind": "instance_of",
33862
- "type": {
33863
- "name": "string",
33864
- "namespace": "internal"
33865
- }
33866
- }
33867
- }
33868
- ]
33869
- },
33870
33854
"inherits": [
33871
33855
{
33872
33856
"type": {
@@ -33882,26 +33866,38 @@
33882
33866
},
33883
33867
"path": [
33884
33868
{
33885
- "name": "stub_a",
33869
+ "description": "The name of the template",
33870
+ "name": "name",
33886
33871
"required": true,
33887
33872
"type": {
33888
33873
"kind": "instance_of",
33889
33874
"type": {
33890
- "name": "string ",
33875
+ "name": "Name ",
33891
33876
"namespace": "internal"
33892
33877
}
33893
33878
}
33894
33879
}
33895
33880
],
33896
33881
"query": [
33897
33882
{
33898
- "name": "stub_b ",
33899
- "required": true ,
33883
+ "name": "master_timeout ",
33884
+ "required": false ,
33900
33885
"type": {
33901
33886
"kind": "instance_of",
33902
33887
"type": {
33903
- "name": "string",
33904
- "namespace": "internal"
33888
+ "name": "Time",
33889
+ "namespace": "common_options.time_unit"
33890
+ }
33891
+ }
33892
+ },
33893
+ {
33894
+ "name": "timeout",
33895
+ "required": false,
33896
+ "type": {
33897
+ "kind": "instance_of",
33898
+ "type": {
33899
+ "name": "Time",
33900
+ "namespace": "common_options.time_unit"
33905
33901
}
33906
33902
}
33907
33903
}
33911
33907
"inherits": [
33912
33908
{
33913
33909
"type": {
33914
- "name": "ResponseBase ",
33910
+ "name": "AcknowledgedResponseBase ",
33915
33911
"namespace": "common_abstractions.response"
33916
33912
}
33917
33913
}
33921
33917
"name": "ClusterDeleteComponentTemplateResponse",
33922
33918
"namespace": "cluster.cluster_delete_component_template"
33923
33919
},
33924
- "properties": [
33925
- {
33926
- "name": "stub",
33927
- "required": true,
33928
- "type": {
33929
- "kind": "instance_of",
33930
- "type": {
33931
- "name": "integer",
33932
- "namespace": "internal"
33933
- }
33934
- }
33935
- }
33936
- ]
33920
+ "properties": []
33937
33921
},
33938
33922
{
33939
33923
"attachedBehaviors": [
Original file line number Diff line number Diff line change @@ -3050,15 +3050,12 @@ export interface ClusterComponentTemplateExistsResponse extends ResponseBase {
3050
3050
}
3051
3051
3052
3052
export interface ClusterDeleteComponentTemplateRequest extends RequestBase {
3053
- stub_a : string
3054
- stub_b : string
3055
- body ?: {
3056
- stub_c : string
3057
- }
3053
+ name : Name
3054
+ master_timeout ?: Time
3055
+ timeout ?: Time
3058
3056
}
3059
3057
3060
- export interface ClusterDeleteComponentTemplateResponse extends ResponseBase {
3061
- stub : integer
3058
+ export interface ClusterDeleteComponentTemplateResponse extends AcknowledgedResponseBase {
3062
3059
}
3063
3060
3064
3061
export interface ClusterDeleteVotingConfigExclusionsRequest extends RequestBase {
Original file line number Diff line number Diff line change 24
24
*/
25
25
interface ClusterDeleteComponentTemplateRequest extends RequestBase {
26
26
path_parts ?: {
27
- stub_a : string
27
+ name : Name
28
28
}
29
29
query_parameters ?: {
30
- stub_b : string
31
- }
32
- body ?: {
33
- stub_c : string
30
+ master_timeout ?: Time // Default: 30s
31
+ timeout ?: Time // Default: 30s
34
32
}
33
+ body ?: { }
35
34
}
Original file line number Diff line number Diff line change 17
17
* under the License.
18
18
*/
19
19
20
- class ClusterDeleteComponentTemplateResponse extends ResponseBase {
21
- stub : integer
22
- }
20
+ class ClusterDeleteComponentTemplateResponse extends AcknowledgedResponseBase { }
You can’t perform that action at this time.
0 commit comments