Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR graphrbac/data-plane] added restore deleted apps and get list of deleted apps #2507

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
101 changes: 92 additions & 9 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions profiles/latest/graphrbac/graphrbac/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const (
)

type BaseClient = original.BaseClient
type DeletedApplicationsClient = original.DeletedApplicationsClient
type DomainsClient = original.DomainsClient
type GroupsClient = original.GroupsClient
type ObjectType = original.ObjectType
Expand Down Expand Up @@ -84,6 +85,7 @@ type PasswordCredential = original.PasswordCredential
type PasswordCredentialListResult = original.PasswordCredentialListResult
type PasswordCredentialsUpdateParameters = original.PasswordCredentialsUpdateParameters
type PasswordProfile = original.PasswordProfile
type Permissions = original.Permissions
type RequiredResourceAccess = original.RequiredResourceAccess
type ResourceAccess = original.ResourceAccess
type ServicePrincipal = original.ServicePrincipal
Expand All @@ -101,6 +103,7 @@ type UserListResult = original.UserListResult
type UserListResultIterator = original.UserListResultIterator
type UserListResultPage = original.UserListResultPage
type UserUpdateParameters = original.UserUpdateParameters
type OAuth2Client = original.OAuth2Client
type ObjectsClient = original.ObjectsClient
type ServicePrincipalsClient = original.ServicePrincipalsClient
type UsersClient = original.UsersClient
Expand All @@ -117,6 +120,12 @@ func New(tenantID string) BaseClient {
func NewWithBaseURI(baseURI string, tenantID string) BaseClient {
return original.NewWithBaseURI(baseURI, tenantID)
}
func NewDeletedApplicationsClient(tenantID string) DeletedApplicationsClient {
return original.NewDeletedApplicationsClient(tenantID)
}
func NewDeletedApplicationsClientWithBaseURI(baseURI string, tenantID string) DeletedApplicationsClient {
return original.NewDeletedApplicationsClientWithBaseURI(baseURI, tenantID)
}
func NewDomainsClient(tenantID string) DomainsClient {
return original.NewDomainsClient(tenantID)
}
Expand All @@ -135,6 +144,12 @@ func PossibleObjectTypeValues() []ObjectType {
func PossibleUserTypeValues() []UserType {
return original.PossibleUserTypeValues()
}
func NewOAuth2Client(tenantID string) OAuth2Client {
return original.NewOAuth2Client(tenantID)
}
func NewOAuth2ClientWithBaseURI(baseURI string, tenantID string) OAuth2Client {
return original.NewOAuth2ClientWithBaseURI(baseURI, tenantID)
}
func NewObjectsClient(tenantID string) ObjectsClient {
return original.NewObjectsClient(tenantID)
}
Expand Down
Loading