@maxim_mazurok/gapi.client.managedidentities-v1beta1
Advanced tools
Comparing version 0.0.20220823 to 0.0.20220826
{ | ||
"name": "@maxim_mazurok/gapi.client.managedidentities-v1beta1", | ||
"version": "0.0.20220823", | ||
"version": "0.0.20220826", | ||
"description": "TypeScript typings for Managed Service for Microsoft Active Directory API v1beta1", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
23
tests.ts
@@ -6,3 +6,3 @@ /* This is stub file for gapi.client.managedidentities-v1beta1 definition tests */ | ||
// Revision: 20220823 | ||
// Revision: 20220826 | ||
@@ -64,2 +64,7 @@ gapi.load('client', async () => { | ||
}); | ||
/** CheckMigrationPermission API gets the current state of DomainMigration */ | ||
await gapi.client.managedidentities.projects.locations.global.domains.checkMigrationPermission({ | ||
domain: "Test string", | ||
}, { | ||
}); | ||
/** Creates a Microsoft AD domain. */ | ||
@@ -130,2 +135,18 @@ await gapi.client.managedidentities.projects.locations.global.domains.create({ | ||
}); | ||
/** Disable Domain Migration */ | ||
await gapi.client.managedidentities.projects.locations.global.domains.disableMigration({ | ||
domain: "Test string", | ||
}, { | ||
}); | ||
/** Enable Domain Migration */ | ||
await gapi.client.managedidentities.projects.locations.global.domains.enableMigration({ | ||
domain: "Test string", | ||
}, { | ||
migratingDomains: [ | ||
{ | ||
disableSidFiltering: true, | ||
domainName: "Test string", | ||
} | ||
], | ||
}); | ||
/** Extend Schema for Domain */ | ||
@@ -132,0 +153,0 @@ await gapi.client.managedidentities.projects.locations.global.domains.extendSchema({ |
Sorry, the diff of this file is too big to display
190269
3198