Skip to content

Commit

Permalink
New autorest, same commit de0361efa3a14d035efd6a1de02554370e819595
Browse files Browse the repository at this point in the history
  • Loading branch information
lmazuel committed Mar 18, 2016
1 parent c65e189 commit cb9f7a4
Show file tree
Hide file tree
Showing 595 changed files with 10,356 additions and 5,225 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ class GraphRbacManagementClientConfiguration(AzureConfiguration):
attributes.
:param credentials: Gets Azure subscription credentials.
:type credentials: credentials
:type credentials: :mod:`A msrestazure Credentials
object<msrestazure.azure_active_directory>`
:param subscription_id: Gets subscription credentials which uniquely
identify Microsoft Azure subscription. The subscription ID forms part of
the URI for every service call.
Expand Down
30 changes: 20 additions & 10 deletions azure-graphrbac/azure/graphrbac/models/aad_object.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,27 @@ class AADObject(Model):
"""
Active Directory object information
:param str object_id: Gets or sets object Id
:param str object_type: Gets or sets object type
:param str display_name: Gets or sets object display name
:param str user_principal_name: Gets or sets principal name
:param str mail: Gets or sets mail
:param bool mail_enabled: Gets or sets MailEnabled field
:param bool security_enabled: Gets or sets SecurityEnabled field
:param str sign_in_name: Gets or sets signIn name
:param list service_principal_names: Gets or sets the list of service
:param object_id: Gets or sets object Id
:type object_id: str
:param object_type: Gets or sets object type
:type object_type: str
:param display_name: Gets or sets object display name
:type display_name: str
:param user_principal_name: Gets or sets principal name
:type user_principal_name: str
:param mail: Gets or sets mail
:type mail: str
:param mail_enabled: Gets or sets MailEnabled field
:type mail_enabled: bool
:param security_enabled: Gets or sets SecurityEnabled field
:type security_enabled: bool
:param sign_in_name: Gets or sets signIn name
:type sign_in_name: str
:param service_principal_names: Gets or sets the list of service
principal names.
:param str user_type: Gets or sets the user type
:type service_principal_names: list of str
:param user_type: Gets or sets the user type
:type user_type: str
"""

_attribute_map = {
Expand Down
15 changes: 10 additions & 5 deletions azure-graphrbac/azure/graphrbac/models/ad_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,16 @@ class ADGroup(Model):
"""
Active Directory group information
:param str object_id: Gets or sets object Id
:param str object_type: Gets or sets object type
:param str display_name: Gets or sets group display name
:param bool security_enabled: Gets or sets security enabled field
:param str mail: Gets or sets mail field
:param object_id: Gets or sets object Id
:type object_id: str
:param object_type: Gets or sets object type
:type object_type: str
:param display_name: Gets or sets group display name
:type display_name: str
:param security_enabled: Gets or sets security enabled field
:type security_enabled: bool
:param mail: Gets or sets mail field
:type mail: str
"""

_attribute_map = {
Expand Down
26 changes: 17 additions & 9 deletions azure-graphrbac/azure/graphrbac/models/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,23 @@ class Application(Model):
"""
Active Directory user information
:param str object_id: Gets or sets object Id
:param str object_type: Gets or sets object type
:param str app_id: Gets or sets application Id
:param list app_permissions: Gets or sets application permissions
:param bool available_to_other_tenants: Indicates if the application will
be available to other tenants
:param str display_name: Gets or sets the displayName
:param list identifier_uris: Gets or sets the application identifier Uris
:param list reply_urls: Gets or sets the application reply Urls
:param object_id: Gets or sets object Id
:type object_id: str
:param object_type: Gets or sets object type
:type object_type: str
:param app_id: Gets or sets application Id
:type app_id: str
:param app_permissions: Gets or sets application permissions
:type app_permissions: list of str
:param available_to_other_tenants: Indicates if the application will be
available to other tenants
:type available_to_other_tenants: bool
:param display_name: Gets or sets the displayName
:type display_name: str
:param identifier_uris: Gets or sets the application identifier Uris
:type identifier_uris: list of str
:param reply_urls: Gets or sets the application reply Urls
:type reply_urls: list of str
"""

_attribute_map = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,24 @@ class ApplicationCreateParameters(Model):
"""
Request parameters for create a new application
:param bool available_to_other_tenants: Indicates if the application will
be available to other tenants
:param str display_name: Application display name
:param str homepage: Application homepage
:param list identifier_uris: Application Uris
:param list reply_urls: Application reply Urls
:param list key_credentials: Gets or sets the list of KeyCredential
:param available_to_other_tenants: Indicates if the application will be
available to other tenants
:type available_to_other_tenants: bool
:param display_name: Application display name
:type display_name: str
:param homepage: Application homepage
:type homepage: str
:param identifier_uris: Application Uris
:type identifier_uris: list of str
:param reply_urls: Application reply Urls
:type reply_urls: list of str
:param key_credentials: Gets or sets the list of KeyCredential objects
:type key_credentials: list of :class:`KeyCredential
<azure.graphrbac.models.KeyCredential>`
:param password_credentials: Gets or sets the list of PasswordCredential
objects
:param list password_credentials: Gets or sets the list of
PasswordCredential objects
:type password_credentials: list of :class:`PasswordCredential
<azure.graphrbac.models.PasswordCredential>`
"""

_validation = {
Expand Down
9 changes: 6 additions & 3 deletions azure-graphrbac/azure/graphrbac/models/application_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,12 @@ class ApplicationFilter(Model):
"""
Filter parameters for listing applications
:param str display_name_starts_with: Application display name starts with
:param str app_id: ApplicationId
:param str identifier_uri: Identifier Uri
:param display_name_starts_with: Application display name starts with
:type display_name_starts_with: str
:param app_id: ApplicationId
:type app_id: str
:param identifier_uri: Identifier Uri
:type identifier_uri: str
"""

_attribute_map = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ class ApplicationListResult(Model):
"""
Role assignment list operation result.
:param list value: Application list.
:param value: Application list.
:type value: list of :class:`Application
<azure.graphrbac.models.Application>`
"""

_attribute_map = {
Expand Down
11 changes: 7 additions & 4 deletions azure-graphrbac/azure/graphrbac/models/get_objects_parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,13 @@ class GetObjectsParameters(Model):
"""
Request parameters for GetObjectsByObjectIds API call
:param list object_ids: Requested object Ids
:param list types: Requested object types
:param bool include_directory_object_references: If true, also searches
for object ids in the partner tenant
:param object_ids: Requested object Ids
:type object_ids: list of str
:param types: Requested object types
:type types: list of str
:param include_directory_object_references: If true, also searches for
object ids in the partner tenant
:type include_directory_object_references: bool
"""

_validation = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ class GroupAddMemberParameters(Model):
"""
Request parameters for adding members to a groups
:param str url: Group display name
:param url: Group display name
:type url: str
"""

_validation = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,14 @@ class GroupCreateParameters(Model):
"""
Request parameters for create a new group
:param str display_name: Group display name
:param bool mail_enabled: Mail
:param str mail_nickname: Mail nick name
:param bool security_enabled: Is security enabled
:param display_name: Group display name
:type display_name: str
:param mail_enabled: Mail
:type mail_enabled: bool
:param mail_nickname: Mail nick name
:type mail_nickname: str
:param security_enabled: Is security enabled
:type security_enabled: bool
"""

_validation = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ class GroupGetMemberGroupsParameters(Model):
"""
Request parameters for GetMemberGroups API call
:param bool security_enabled_only: If true only membership in security
enabled groups should be checked. Otherwise membership in all groups
should be checked
:param security_enabled_only: If true only membership in security enabled
groups should be checked. Otherwise membership in all groups should be
checked
:type security_enabled_only: bool
"""

_validation = {
Expand Down
18 changes: 12 additions & 6 deletions azure-graphrbac/azure/graphrbac/models/key_credential.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,18 @@ class KeyCredential(Model):
"""
Active Directory service principal Key Credential information
:param datetime start_date: Gets or sets start date
:param datetime end_date: Gets or sets end date
:param str value: Gets or sets value
:param str key_id: Gets or sets key Id
:param str usage: Gets or sets usage
:param str type: Gets or sets type
:param start_date: Gets or sets start date
:type start_date: datetime
:param end_date: Gets or sets end date
:type end_date: datetime
:param value: Gets or sets value
:type value: str
:param key_id: Gets or sets key Id
:type key_id: str
:param usage: Gets or sets usage
:type usage: str
:param type: Gets or sets type
:type type: str
"""

_attribute_map = {
Expand Down
12 changes: 8 additions & 4 deletions azure-graphrbac/azure/graphrbac/models/password_credential.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,14 @@ class PasswordCredential(Model):
"""
Active Directory service principal Password Credential information
:param datetime start_date: Gets or sets start date
:param datetime end_date: Gets or sets end date
:param str key_id: Gets or sets key Id
:param str value: Gets or sets value
:param start_date: Gets or sets start date
:type start_date: datetime
:param end_date: Gets or sets end date
:type end_date: datetime
:param key_id: Gets or sets key Id
:type key_id: str
:param value: Gets or sets value
:type value: str
"""

_attribute_map = {
Expand Down
15 changes: 10 additions & 5 deletions azure-graphrbac/azure/graphrbac/models/service_principal.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,16 @@ class ServicePrincipal(Model):
"""
Active Directory service principal information
:param str object_id: Gets or sets object Id
:param str object_type: Gets or sets object type
:param str display_name: Gets or sets service principal display name
:param str app_id: Gets or sets app id
:param list service_principal_names: Gets or sets the list of names.
:param object_id: Gets or sets object Id
:type object_id: str
:param object_type: Gets or sets object type
:type object_type: str
:param display_name: Gets or sets service principal display name
:type display_name: str
:param app_id: Gets or sets app id
:type app_id: str
:param service_principal_names: Gets or sets the list of names.
:type service_principal_names: list of str
"""

_attribute_map = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,10 @@ class ServicePrincipalCreateParameters(Model):
"""
Request parameters for create a new service principal
:param str app_id: Gets or sets application Id
:param bool account_enabled: Specifies if the account is enabled
:param app_id: Gets or sets application Id
:type app_id: str
:param account_enabled: Specifies if the account is enabled
:type account_enabled: bool
"""

_validation = {
Expand Down
18 changes: 12 additions & 6 deletions azure-graphrbac/azure/graphrbac/models/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,18 @@ class User(Model):
"""
Active Directory user information
:param str object_id: Gets or sets object Id
:param str object_type: Gets or sets object type
:param str user_principal_name: Gets or sets user principal name
:param str display_name: Gets or sets user display name
:param str sign_in_name: Gets or sets user signIn name
:param str mail: Gets or sets user mail
:param object_id: Gets or sets object Id
:type object_id: str
:param object_type: Gets or sets object type
:type object_type: str
:param user_principal_name: Gets or sets user principal name
:type user_principal_name: str
:param display_name: Gets or sets user display name
:type display_name: str
:param sign_in_name: Gets or sets user signIn name
:type sign_in_name: str
:param mail: Gets or sets user mail
:type mail: str
"""

_attribute_map = {
Expand Down
17 changes: 11 additions & 6 deletions azure-graphrbac/azure/graphrbac/models/user_create_parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,17 @@ class UserCreateParameters(Model):
"""
Request parameters for create a new user
:param str user_principal_name: User Principal Name
:param bool account_enabled: Enable the account
:param str display_name: User display name
:param str mail_nickname: Mail nick name
:param UserCreateParametersPasswordProfile password_profile: Password
Profile
:param user_principal_name: User Principal Name
:type user_principal_name: str
:param account_enabled: Enable the account
:type account_enabled: bool
:param display_name: User display name
:type display_name: str
:param mail_nickname: Mail nick name
:type mail_nickname: str
:param password_profile: Password Profile
:type password_profile: :class:`UserCreateParametersPasswordProfile
<azure.graphrbac.models.UserCreateParametersPasswordProfile>`
"""

_validation = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,11 @@
class UserCreateParametersPasswordProfile(Model):
"""UserCreateParametersPasswordProfile
:param str password: Password
:param bool force_change_password_next_login: Force change password on
next login
:param password: Password
:type password: str
:param force_change_password_next_login: Force change password on next
login
:type force_change_password_next_login: bool
"""

_validation = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ class UserGetMemberGroupsParameters(Model):
"""
Request parameters for GetMemberGroups API call
:param bool security_enabled_only: If true only membership in security
enabled groups should be checked. Otherwise membership in all groups
should be checked
:param security_enabled_only: If true only membership in security enabled
groups should be checked. Otherwise membership in all groups should be
checked
:type security_enabled_only: bool
"""

_validation = {
Expand Down
Loading

0 comments on commit cb9f7a4

Please sign in to comment.