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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
// GENERATED CODE

use crate::api_default_imports::*;

resource_api_client!(
    DeviceManagementReportsApiClient,
    ResourceIdentity::DeviceManagementReports
);

impl DeviceManagementReportsApiClient {
    delete!(
        doc: "Delete navigation property reports for deviceManagement",
        name: delete_reports,
        path: "/reports"
    );
    get!(
        doc: "Get reports from deviceManagement",
        name: get_reports,
        path: "/reports"
    );
    patch!(
        doc: "Update the navigation property reports in deviceManagement",
        name: update_reports,
        path: "/reports",
        body: true
    );
    post!(
        doc: "Create new navigation property to exportJobs for deviceManagement",
        name: create_export_jobs,
        path: "/reports/exportJobs",
        body: true
    );
    get!(
        doc: "Get exportJobs from deviceManagement",
        name: list_export_jobs,
        path: "/reports/exportJobs"
    );
    get!(
        doc: "Get the number of the resource",
        name: get_export_jobs_count,
        path: "/reports/exportJobs/$count"
    );
    delete!(
        doc: "Delete navigation property exportJobs for deviceManagement",
        name: delete_export_jobs,
        path: "/reports/exportJobs/{{id}}",
        params: device_management_export_job_id
    );
    get!(
        doc: "Get exportJobs from deviceManagement",
        name: get_export_jobs,
        path: "/reports/exportJobs/{{id}}",
        params: device_management_export_job_id
    );
    patch!(
        doc: "Update the navigation property exportJobs in deviceManagement",
        name: update_export_jobs,
        path: "/reports/exportJobs/{{id}}",
        body: true,
        params: device_management_export_job_id
    );
    post!(
        doc: "Invoke action getCachedReport",
        name: get_cached_report,
        path: "/reports/getCachedReport",
        body: true
    );
    post!(
        doc: "Invoke action getCompliancePolicyNonComplianceReport",
        name: get_compliance_policy_non_compliance_report,
        path: "/reports/getCompliancePolicyNonComplianceReport",
        body: true
    );
    post!(
        doc: "Invoke action getCompliancePolicyNonComplianceSummaryReport",
        name: get_compliance_policy_non_compliance_summary_report,
        path: "/reports/getCompliancePolicyNonComplianceSummaryReport",
        body: true
    );
    post!(
        doc: "Invoke action getComplianceSettingNonComplianceReport",
        name: get_compliance_setting_non_compliance_report,
        path: "/reports/getComplianceSettingNonComplianceReport",
        body: true
    );
    post!(
        doc: "Invoke action getConfigurationPolicyNonComplianceReport",
        name: get_configuration_policy_non_compliance_report,
        path: "/reports/getConfigurationPolicyNonComplianceReport",
        body: true
    );
    post!(
        doc: "Invoke action getConfigurationPolicyNonComplianceSummaryReport",
        name: get_configuration_policy_non_compliance_summary_report,
        path: "/reports/getConfigurationPolicyNonComplianceSummaryReport",
        body: true
    );
    post!(
        doc: "Invoke action getConfigurationSettingNonComplianceReport",
        name: get_configuration_setting_non_compliance_report,
        path: "/reports/getConfigurationSettingNonComplianceReport",
        body: true
    );
    post!(
        doc: "Invoke action getDeviceManagementIntentPerSettingContributingProfiles",
        name: get_device_management_intent_per_setting_contributing_profiles,
        path: "/reports/getDeviceManagementIntentPerSettingContributingProfiles",
        body: true
    );
    post!(
        doc: "Invoke action getDeviceManagementIntentSettingsReport",
        name: get_device_management_intent_settings_report,
        path: "/reports/getDeviceManagementIntentSettingsReport",
        body: true
    );
    post!(
        doc: "Invoke action getDeviceNonComplianceReport",
        name: get_device_non_compliance_report,
        path: "/reports/getDeviceNonComplianceReport",
        body: true
    );
    post!(
        doc: "Invoke action getDevicesWithoutCompliancePolicyReport",
        name: get_devices_without_compliance_policy_report,
        path: "/reports/getDevicesWithoutCompliancePolicyReport",
        body: true
    );
    post!(
        doc: "Invoke action getHistoricalReport",
        name: get_historical_report,
        path: "/reports/getHistoricalReport",
        body: true
    );
    post!(
        doc: "Invoke action getNoncompliantDevicesAndSettingsReport",
        name: get_noncompliant_devices_and_settings_report,
        path: "/reports/getNoncompliantDevicesAndSettingsReport",
        body: true
    );
    post!(
        doc: "Invoke action getPolicyNonComplianceMetadata",
        name: get_policy_non_compliance_metadata,
        path: "/reports/getPolicyNonComplianceMetadata",
        body: true
    );
    post!(
        doc: "Invoke action getPolicyNonComplianceReport",
        name: get_policy_non_compliance_report,
        path: "/reports/getPolicyNonComplianceReport",
        body: true
    );
    post!(
        doc: "Invoke action getPolicyNonComplianceSummaryReport",
        name: get_policy_non_compliance_summary_report,
        path: "/reports/getPolicyNonComplianceSummaryReport",
        body: true
    );
    post!(
        doc: "Invoke action getReportFilters",
        name: get_report_filters,
        path: "/reports/getReportFilters",
        body: true
    );
    post!(
        doc: "Invoke action getSettingNonComplianceReport",
        name: get_setting_non_compliance_report,
        path: "/reports/getSettingNonComplianceReport",
        body: true
    );
}