|
11 | 11 |
|
12 | 12 | class ClientContribution(Model): |
13 | 13 | """ |
14 | | - Representaion of a ContributionNode that can be used for serialized to clients. |
| 14 | + Representation of a ContributionNode that can be used for serialized to clients. |
15 | 15 |
|
16 | 16 | :param description: Description of the contribution/type |
17 | 17 | :type description: str |
@@ -48,7 +48,7 @@ def __init__(self, description=None, id=None, includes=None, properties=None, ta |
48 | 48 |
|
49 | 49 | class ClientContributionNode(Model): |
50 | 50 | """ |
51 | | - Representaion of a ContributionNode that can be used for serialized to clients. |
| 51 | + Representation of a ContributionNode that can be used for serialized to clients. |
52 | 52 |
|
53 | 53 | :param children: List of ids for contributions which are children to the current contribution. |
54 | 54 | :type children: list of str |
@@ -79,7 +79,7 @@ class ClientContributionProviderDetails(Model): |
79 | 79 | :type name: str |
80 | 80 | :param properties: Properties associated with the provider |
81 | 81 | :type properties: dict |
82 | | - :param version: Version of contributions assoicated with this contribution provider. |
| 82 | + :param version: Version of contributions associated with this contribution provider. |
83 | 83 | :type version: str |
84 | 84 | """ |
85 | 85 |
|
@@ -195,7 +195,7 @@ class ContributionNodeQueryResult(Model): |
195 | 195 |
|
196 | 196 | :param nodes: Map of contribution ids to corresponding node. |
197 | 197 | :type nodes: dict |
198 | | - :param provider_details: Map of provder ids to the corresponding provider details object. |
| 198 | + :param provider_details: Map of provider ids to the corresponding provider details object. |
199 | 199 | :type provider_details: dict |
200 | 200 | """ |
201 | 201 |
|
@@ -396,17 +396,17 @@ class ExtensionEventCallbackCollection(Model): |
396 | 396 | """ |
397 | 397 | Collection of event callbacks - endpoints called when particular extension events occur. |
398 | 398 |
|
399 | | - :param post_disable: Optional. Defines an endpoint that gets called via a POST reqeust to notify that an extension disable has occurred. |
| 399 | + :param post_disable: Optional. Defines an endpoint that gets called via a POST request to notify that an extension disable has occurred. |
400 | 400 | :type post_disable: :class:`ExtensionEventCallback <azure.devops.v5_1.contributions.models.ExtensionEventCallback>` |
401 | | - :param post_enable: Optional. Defines an endpoint that gets called via a POST reqeust to notify that an extension enable has occurred. |
| 401 | + :param post_enable: Optional. Defines an endpoint that gets called via a POST request to notify that an extension enable has occurred. |
402 | 402 | :type post_enable: :class:`ExtensionEventCallback <azure.devops.v5_1.contributions.models.ExtensionEventCallback>` |
403 | | - :param post_install: Optional. Defines an endpoint that gets called via a POST reqeust to notify that an extension install has completed. |
| 403 | + :param post_install: Optional. Defines an endpoint that gets called via a POST request to notify that an extension install has completed. |
404 | 404 | :type post_install: :class:`ExtensionEventCallback <azure.devops.v5_1.contributions.models.ExtensionEventCallback>` |
405 | | - :param post_uninstall: Optional. Defines an endpoint that gets called via a POST reqeust to notify that an extension uninstall has occurred. |
| 405 | + :param post_uninstall: Optional. Defines an endpoint that gets called via a POST request to notify that an extension uninstall has occurred. |
406 | 406 | :type post_uninstall: :class:`ExtensionEventCallback <azure.devops.v5_1.contributions.models.ExtensionEventCallback>` |
407 | | - :param post_update: Optional. Defines an endpoint that gets called via a POST reqeust to notify that an extension update has occurred. |
| 407 | + :param post_update: Optional. Defines an endpoint that gets called via a POST request to notify that an extension update has occurred. |
408 | 408 | :type post_update: :class:`ExtensionEventCallback <azure.devops.v5_1.contributions.models.ExtensionEventCallback>` |
409 | | - :param pre_install: Optional. Defines an endpoint that gets called via a POST reqeust to notify that an extension install is about to occur. Response indicates whether to proceed or abort. |
| 409 | + :param pre_install: Optional. Defines an endpoint that gets called via a POST request to notify that an extension install is about to occur. Response indicates whether to proceed or abort. |
410 | 410 | :type pre_install: :class:`ExtensionEventCallback <azure.devops.v5_1.contributions.models.ExtensionEventCallback>` |
411 | 411 | :param version_check: For multi-version extensions, defines an endpoint that gets called via an OPTIONS request to determine the particular version of the extension to be used |
412 | 412 | :type version_check: :class:`ExtensionEventCallback <azure.devops.v5_1.contributions.models.ExtensionEventCallback>` |
@@ -497,7 +497,7 @@ class ExtensionManifest(Model): |
497 | 497 | :type licensing: :class:`ExtensionLicensing <azure.devops.v5_1.contributions.models.ExtensionLicensing>` |
498 | 498 | :param manifest_version: Version of the extension manifest format/content |
499 | 499 | :type manifest_version: float |
500 | | - :param restricted_to: Default user claims applied to all contributions (except the ones which have been speficied restrictedTo explicitly) to control the visibility of a contribution. |
| 500 | + :param restricted_to: Default user claims applied to all contributions (except the ones which have been specified restrictedTo explicitly) to control the visibility of a contribution. |
501 | 501 | :type restricted_to: list of str |
502 | 502 | :param scopes: List of all oauth scopes required by this extension |
503 | 503 | :type scopes: list of str |
@@ -562,7 +562,7 @@ class InstalledExtension(ExtensionManifest): |
562 | 562 | :type licensing: :class:`ExtensionLicensing <azure.devops.v5_1.contributions.models.ExtensionLicensing>` |
563 | 563 | :param manifest_version: Version of the extension manifest format/content |
564 | 564 | :type manifest_version: float |
565 | | - :param restricted_to: Default user claims applied to all contributions (except the ones which have been speficied restrictedTo explicitly) to control the visibility of a contribution. |
| 565 | + :param restricted_to: Default user claims applied to all contributions (except the ones which have been specified restrictedTo explicitly) to control the visibility of a contribution. |
566 | 566 | :type restricted_to: list of str |
567 | 567 | :param scopes: List of all oauth scopes required by this extension |
568 | 568 | :type scopes: list of str |
|
0 commit comments