protected override void ProcessRecord()
        {
            var GraphAPI = new GraphAPI();

            WriteObject(GraphAPI.ExecuteGetAll <ResponseSubscribedSku>("v1.0", "subscribedSkus").value, true);
        }
        protected override void ProcessRecord()
        {
            var GraphAPI = new GraphAPI();

            WriteObject(GraphAPI.ExecuteGetAll <ResponseUser>("v1.0", "users").value, true);
        }
Exemple #3
0
        protected override void ProcessRecord()
        {
            var GraphAPI = new GraphAPI();

            WriteObject(GraphAPI.ExecuteGetAll <ResponseUserLicence>("v1.0", $"users/{userPrincipalName}/licenseDetails").value, true);
        }