1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// GENERATED CODE

use crate::api_default_imports::*;

api_client!(
    TermStoreSetsChildrenApiClient,
    TermStoreSetsChildrenIdApiClient,
    ResourceIdentity::TermStoreSetsChildren
);

impl TermStoreSetsChildrenApiClient {
    post!(
        doc: "Create term",
        name: create_children,
        path: "/children",
        body: true
    );
    get!(
        doc: "List children",
        name: list_children,
        path: "/children"
    );
    get!(
        doc: "Get the number of the resource",
        name: get_children_count,
        path: "/children/$count"
    );
}

impl TermStoreSetsChildrenIdApiClient {
    delete!(
        doc: "Delete navigation property children for sites",
        name: delete_children,
        path: "/children/{{RID}}"
    );
    get!(
        doc: "Get children from sites",
        name: get_children,
        path: "/children/{{RID}}"
    );
    patch!(
        doc: "Update the navigation property children in sites",
        name: update_children,
        path: "/children/{{RID}}",
        body: true
    );
    post!(
        doc: "Create new navigation property to children for sites",
        name: create_children,
        path: "/children/{{RID}}/children",
        body: true
    );
    get!(
        doc: "Get children from sites",
        name: list_children,
        path: "/children/{{RID}}/children"
    );
    get!(
        doc: "Get the number of the resource",
        name: get_children_count,
        path: "/children/{{RID}}/children/$count"
    );
    post!(
        doc: "Create new navigation property to relations for sites",
        name: create_relations,
        path: "/children/{{RID}}/relations",
        body: true
    );
    get!(
        doc: "Get relations from sites",
        name: list_relations,
        path: "/children/{{RID}}/relations"
    );
    get!(
        doc: "Get the number of the resource",
        name: get_relations_count,
        path: "/children/{{RID}}/relations/$count"
    );
    get!(
        doc: "Get set from sites",
        name: get_set,
        path: "/children/{{RID}}/set"
    );
}