Skip to content
Merged
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
2 changes: 1 addition & 1 deletion azure-devops/azure/devops/v5_1/audit/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ class DecoratedAuditLogEntry(Model):
:type category: object
:param category_display_name: DisplayName of the category
:type category_display_name: str
:param correlation_id: This allows related audit entires to be grouped together. Generally this occurs when a single action cases a cascade of audit entries. For example, project creation.
:param correlation_id: This allows related audit entries to be grouped together. Generally this occurs when a single action causes a cascade of audit entries. For example, project creation.
:type correlation_id: str
:param data: External data such as CUIDs, item names, etc.
:type data: dict
Expand Down
6 changes: 3 additions & 3 deletions azure-devops/azure/devops/v5_1/token_admin/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def __init__(self, access_id=None, alternate_token=None, authorization_id=None,

class TokenAdminPagedSessionTokens(Model):
"""
A paginatated list of session tokens. Session tokens correspond to OAuth credentials such as personal access tokens (PATs) and other OAuth authorizations.
A paginated list of session tokens. Session tokens correspond to OAuth credentials such as personal access tokens (PATs) and other OAuth authorizations.

:param continuation_token: The continuation token that can be used to retrieve the next page of session tokens, or <code>null</code> if there is no next page.
:type continuation_token: str
Expand Down Expand Up @@ -130,9 +130,9 @@ class TokenAdminRevocationRule(Model):
"""
A rule which is applied to disable any incoming delegated authorization which matches the given properties.

:param created_before: A datetime cutoff. Tokens created before this time will be rejected. This is an optional paramter. If omitted, defaults to the time at which the rule was created.
:param created_before: A datetime cutoff. Tokens created before this time will be rejected. This is an optional parameter. If omitted, defaults to the time at which the rule was created.
:type created_before: datetime
:param scopes: A string containing a space-delimited list of OAuth scopes. A token matching any one of the scopes will be rejected. For a list of all OAuth scopes supported by VSTS, see: https://docs.microsoft.com/en-us/vsts/integrate/get-started/authentication/oauth?view=vsts#scopes. This is a mandatory parameter.
:param scopes: A string containing a space-delimited list of OAuth scopes. A token matching any one of the scopes will be rejected. For a list of all OAuth scopes supported by Azure DevOps, see: https://docs.microsoft.com/en-us/azure/devops/integrate/get-started/authentication/oauth?view=azure-devops#scopes This is a mandatory parameter.
:type scopes: str
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def __init__(self, audience=None, authorization_ids=None):

class TokenAdminPagedSessionTokens(Model):
"""
A paginatated list of session tokens. Session tokens correspond to OAuth credentials such as personal access tokens (PATs) and other OAuth authorizations.
A paginated list of session tokens. Session tokens correspond to OAuth credentials such as personal access tokens (PATs) and other OAuth authorizations.

:param continuation_token: The continuation token that can be used to retrieve the next page of session tokens, or <code>null</code> if there is no next page.
:type continuation_token: str
Expand Down