13
13
from msrest import Serializer , Deserializer
14
14
from msrestazure import AzureConfiguration
15
15
from .version import VERSION
16
- from .operations .objects_operations import ObjectsOperations
16
+ from .operations .signed_in_user_operations import SignedInUserOperations
17
17
from .operations .applications_operations import ApplicationsOperations
18
+ from .operations .deleted_applications_operations import DeletedApplicationsOperations
18
19
from .operations .groups_operations import GroupsOperations
19
20
from .operations .service_principals_operations import ServicePrincipalsOperations
20
21
from .operations .users_operations import UsersOperations
22
+ from .operations .objects_operations import ObjectsOperations
21
23
from .operations .domains_operations import DomainsOperations
22
24
from .operations .oauth2_operations import OAuth2Operations
23
25
from . import models
@@ -61,16 +63,20 @@ class GraphRbacManagementClient(SDKClient):
61
63
:ivar config: Configuration for client.
62
64
:vartype config: GraphRbacManagementClientConfiguration
63
65
64
- :ivar objects: Objects operations
65
- :vartype objects : azure.graphrbac.operations.ObjectsOperations
66
+ :ivar signed_in_user: SignedInUser operations
67
+ :vartype signed_in_user : azure.graphrbac.operations.SignedInUserOperations
66
68
:ivar applications: Applications operations
67
69
:vartype applications: azure.graphrbac.operations.ApplicationsOperations
70
+ :ivar deleted_applications: DeletedApplications operations
71
+ :vartype deleted_applications: azure.graphrbac.operations.DeletedApplicationsOperations
68
72
:ivar groups: Groups operations
69
73
:vartype groups: azure.graphrbac.operations.GroupsOperations
70
74
:ivar service_principals: ServicePrincipals operations
71
75
:vartype service_principals: azure.graphrbac.operations.ServicePrincipalsOperations
72
76
:ivar users: Users operations
73
77
:vartype users: azure.graphrbac.operations.UsersOperations
78
+ :ivar objects: Objects operations
79
+ :vartype objects: azure.graphrbac.operations.ObjectsOperations
74
80
:ivar domains: Domains operations
75
81
:vartype domains: azure.graphrbac.operations.DomainsOperations
76
82
:ivar oauth2: OAuth2 operations
@@ -95,16 +101,20 @@ def __init__(
95
101
self ._serialize = Serializer (client_models )
96
102
self ._deserialize = Deserializer (client_models )
97
103
98
- self .objects = ObjectsOperations (
104
+ self .signed_in_user = SignedInUserOperations (
99
105
self ._client , self .config , self ._serialize , self ._deserialize )
100
106
self .applications = ApplicationsOperations (
101
107
self ._client , self .config , self ._serialize , self ._deserialize )
108
+ self .deleted_applications = DeletedApplicationsOperations (
109
+ self ._client , self .config , self ._serialize , self ._deserialize )
102
110
self .groups = GroupsOperations (
103
111
self ._client , self .config , self ._serialize , self ._deserialize )
104
112
self .service_principals = ServicePrincipalsOperations (
105
113
self ._client , self .config , self ._serialize , self ._deserialize )
106
114
self .users = UsersOperations (
107
115
self ._client , self .config , self ._serialize , self ._deserialize )
116
+ self .objects = ObjectsOperations (
117
+ self ._client , self .config , self ._serialize , self ._deserialize )
108
118
self .domains = DomainsOperations (
109
119
self ._client , self .config , self ._serialize , self ._deserialize )
110
120
self .oauth2 = OAuth2Operations (
0 commit comments