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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
// GENERATED CODE

use crate::api_default_imports::*;

resource_api_client!(AuditLogsApiClient, ResourceIdentity::AuditLogs);

impl AuditLogsApiClient {
    get!(
        doc: "Get auditLogs",
        name: get_audit_log_root,
        path: "/auditLogs"
    );
    patch!(
        doc: "Update auditLogs",
        name: update_audit_log_root,
        path: "/auditLogs",
        body: true
    );
    post!(
        doc: "Create new navigation property to directoryAudits for auditLogs",
        name: create_directory_audits,
        path: "/auditLogs/directoryAudits",
        body: true
    );
    get!(
        doc: "List directoryAudits",
        name: list_directory_audits,
        path: "/auditLogs/directoryAudits"
    );
    get!(
        doc: "Get the number of the resource",
        name: directory_audits_fedb,
        path: "/auditLogs/directoryAudits/$count"
    );
    delete!(
        doc: "Delete navigation property directoryAudits for auditLogs",
        name: delete_directory_audits,
        path: "/auditLogs/directoryAudits/{{id}}",
        params: directory_audit_id
    );
    get!(
        doc: "Get directoryAudits from auditLogs",
        name: get_directory_audits,
        path: "/auditLogs/directoryAudits/{{id}}",
        params: directory_audit_id
    );
    patch!(
        doc: "Update the navigation property directoryAudits in auditLogs",
        name: update_directory_audits,
        path: "/auditLogs/directoryAudits/{{id}}",
        body: true,
        params: directory_audit_id
    );
    post!(
        doc: "Create new navigation property to provisioning for auditLogs",
        name: create_provisioning,
        path: "/auditLogs/provisioning",
        body: true
    );
    get!(
        doc: "List provisioningObjectSummary",
        name: list_provisioning,
        path: "/auditLogs/provisioning"
    );
    get!(
        doc: "Get the number of the resource",
        name: get_provisioning_count,
        path: "/auditLogs/provisioning/$count"
    );
    delete!(
        doc: "Delete navigation property provisioning for auditLogs",
        name: delete_provisioning,
        path: "/auditLogs/provisioning/{{id}}",
        params: provisioning_object_summary_id
    );
    get!(
        doc: "Get provisioning from auditLogs",
        name: get_provisioning,
        path: "/auditLogs/provisioning/{{id}}",
        params: provisioning_object_summary_id
    );
    patch!(
        doc: "Update the navigation property provisioning in auditLogs",
        name: update_provisioning,
        path: "/auditLogs/provisioning/{{id}}",
        body: true,
        params: provisioning_object_summary_id
    );
    post!(
        doc: "Create new navigation property to signIns for auditLogs",
        name: create_sign_ins,
        path: "/auditLogs/signIns",
        body: true
    );
    get!(
        doc: "List signIns",
        name: list_sign_ins,
        path: "/auditLogs/signIns"
    );
    get!(
        doc: "Get the number of the resource",
        name: get_sign_ins_count,
        path: "/auditLogs/signIns/$count"
    );
    delete!(
        doc: "Delete navigation property signIns for auditLogs",
        name: delete_sign_ins,
        path: "/auditLogs/signIns/{{id}}",
        params: sign_in_id
    );
    get!(
        doc: "Get signIns from auditLogs",
        name: get_sign_ins,
        path: "/auditLogs/signIns/{{id}}",
        params: sign_in_id
    );
    patch!(
        doc: "Update the navigation property signIns in auditLogs",
        name: update_sign_ins,
        path: "/auditLogs/signIns/{{id}}",
        body: true,
        params: sign_in_id
    );
}