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
// GENERATED CODE

use crate::api_default_imports::*;

resource_api_client!(
    ManagedAppRegistrationsApiClient,
    ManagedAppRegistrationsIdApiClient,
    ResourceIdentity::ManagedAppRegistrations
);

impl ManagedAppRegistrationsApiClient {
    get!(
        doc: "Get managedAppRegistrations from users",
        name: list_managed_app_registrations,
        path: "/managedAppRegistrations"
    );
    get!(
        doc: "Get the number of the resource",
        name: count,
        path: "/managedAppRegistrations/$count"
    );
}

impl ManagedAppRegistrationsIdApiClient {
    get!(
        doc: "Get managedAppRegistrations from users",
        name: get_managed_app_registrations,
        path: "/managedAppRegistrations/{{RID}}"
    );
}