Skip to content

Commit 4f83caa

Browse files
authored
Merge pull request #239 from microsoft/users/tedchamb/dev5
fix some camel casing and misspellings
2 parents 54b76c8 + 57dc441 commit 4f83caa

File tree

18 files changed

+101
-101
lines changed

18 files changed

+101
-101
lines changed

azure-devops/azure/devops/v5_1/cloud_load_test/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1410,7 +1410,7 @@ class WebApiUserLoadTestMachineInput(WebApiLoadTestMachineInput):
14101410
'agent_group_name': {'key': 'agentGroupName', 'type': 'str'},
14111411
'tenant_id': {'key': 'tenantId', 'type': 'str'},
14121412
'user_load_agent_resources_uri': {'key': 'userLoadAgentResourcesUri', 'type': 'str'},
1413-
'vSTSAccount_uri': {'key': 'vSTSAccountUri', 'type': 'str'}
1413+
'vSTSAccount_uri': {'key': 'vstsAccountUri', 'type': 'str'}
14141414
}
14151415

14161416
def __init__(self, machine_group_id=None, machine_type=None, setup_configuration=None, supported_run_types=None, agent_group_name=None, tenant_id=None, user_load_agent_resources_uri=None, vSTSAccount_uri=None):

azure-devops/azure/devops/v5_1/contributions/models.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
class ClientContribution(Model):
1313
"""
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.
1515
1616
:param description: Description of the contribution/type
1717
:type description: str
@@ -48,7 +48,7 @@ def __init__(self, description=None, id=None, includes=None, properties=None, ta
4848

4949
class ClientContributionNode(Model):
5050
"""
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.
5252
5353
:param children: List of ids for contributions which are children to the current contribution.
5454
:type children: list of str
@@ -79,7 +79,7 @@ class ClientContributionProviderDetails(Model):
7979
:type name: str
8080
:param properties: Properties associated with the provider
8181
: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.
8383
:type version: str
8484
"""
8585

@@ -195,7 +195,7 @@ class ContributionNodeQueryResult(Model):
195195
196196
:param nodes: Map of contribution ids to corresponding node.
197197
: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.
199199
:type provider_details: dict
200200
"""
201201

@@ -396,17 +396,17 @@ class ExtensionEventCallbackCollection(Model):
396396
"""
397397
Collection of event callbacks - endpoints called when particular extension events occur.
398398
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.
400400
: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.
402402
: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.
404404
: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.
406406
: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.
408408
: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.
410410
:type pre_install: :class:`ExtensionEventCallback <azure.devops.v5_1.contributions.models.ExtensionEventCallback>`
411411
: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
412412
:type version_check: :class:`ExtensionEventCallback <azure.devops.v5_1.contributions.models.ExtensionEventCallback>`
@@ -497,7 +497,7 @@ class ExtensionManifest(Model):
497497
:type licensing: :class:`ExtensionLicensing <azure.devops.v5_1.contributions.models.ExtensionLicensing>`
498498
:param manifest_version: Version of the extension manifest format/content
499499
: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.
501501
:type restricted_to: list of str
502502
:param scopes: List of all oauth scopes required by this extension
503503
:type scopes: list of str
@@ -562,7 +562,7 @@ class InstalledExtension(ExtensionManifest):
562562
:type licensing: :class:`ExtensionLicensing <azure.devops.v5_1.contributions.models.ExtensionLicensing>`
563563
:param manifest_version: Version of the extension manifest format/content
564564
: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.
566566
:type restricted_to: list of str
567567
:param scopes: List of all oauth scopes required by this extension
568568
:type scopes: list of str

azure-devops/azure/devops/v5_1/core/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -786,7 +786,7 @@ class TeamProjectCollection(TeamProjectCollectionReference):
786786
:type _links: :class:`ReferenceLinks <azure.devops.v5_1.core.models.ReferenceLinks>`
787787
:param description: Project collection description.
788788
:type description: str
789-
:param process_customization_type: Process customzation type on this collection. It can be Xml or Inherited.
789+
:param process_customization_type: Process customization type on this collection. It can be Xml or Inherited.
790790
:type process_customization_type: object
791791
:param state: Project collection state.
792792
:type state: str

azure-devops/azure/devops/v5_1/extension_management/models.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -413,17 +413,17 @@ class ExtensionEventCallbackCollection(Model):
413413
"""
414414
Collection of event callbacks - endpoints called when particular extension events occur.
415415
416-
:param post_disable: Optional. Defines an endpoint that gets called via a POST reqeust to notify that an extension disable has occurred.
416+
:param post_disable: Optional. Defines an endpoint that gets called via a POST request to notify that an extension disable has occurred.
417417
:type post_disable: :class:`ExtensionEventCallback <azure.devops.v5_1.extension_management.models.ExtensionEventCallback>`
418-
:param post_enable: Optional. Defines an endpoint that gets called via a POST reqeust to notify that an extension enable has occurred.
418+
:param post_enable: Optional. Defines an endpoint that gets called via a POST request to notify that an extension enable has occurred.
419419
:type post_enable: :class:`ExtensionEventCallback <azure.devops.v5_1.extension_management.models.ExtensionEventCallback>`
420-
:param post_install: Optional. Defines an endpoint that gets called via a POST reqeust to notify that an extension install has completed.
420+
:param post_install: Optional. Defines an endpoint that gets called via a POST request to notify that an extension install has completed.
421421
:type post_install: :class:`ExtensionEventCallback <azure.devops.v5_1.extension_management.models.ExtensionEventCallback>`
422-
:param post_uninstall: Optional. Defines an endpoint that gets called via a POST reqeust to notify that an extension uninstall has occurred.
422+
:param post_uninstall: Optional. Defines an endpoint that gets called via a POST request to notify that an extension uninstall has occurred.
423423
:type post_uninstall: :class:`ExtensionEventCallback <azure.devops.v5_1.extension_management.models.ExtensionEventCallback>`
424-
:param post_update: Optional. Defines an endpoint that gets called via a POST reqeust to notify that an extension update has occurred.
424+
:param post_update: Optional. Defines an endpoint that gets called via a POST request to notify that an extension update has occurred.
425425
:type post_update: :class:`ExtensionEventCallback <azure.devops.v5_1.extension_management.models.ExtensionEventCallback>`
426-
: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.
426+
: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.
427427
:type pre_install: :class:`ExtensionEventCallback <azure.devops.v5_1.extension_management.models.ExtensionEventCallback>`
428428
: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
429429
:type version_check: :class:`ExtensionEventCallback <azure.devops.v5_1.extension_management.models.ExtensionEventCallback>`
@@ -535,7 +535,7 @@ class ExtensionManifest(Model):
535535
:type licensing: :class:`ExtensionLicensing <azure.devops.v5_1.extension_management.models.ExtensionLicensing>`
536536
:param manifest_version: Version of the extension manifest format/content
537537
:type manifest_version: float
538-
: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.
538+
: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.
539539
:type restricted_to: list of str
540540
:param scopes: List of all oauth scopes required by this extension
541541
:type scopes: list of str
@@ -864,7 +864,7 @@ class InstalledExtension(ExtensionManifest):
864864
:type licensing: :class:`ExtensionLicensing <azure.devops.v5_1.extension_management.models.ExtensionLicensing>`
865865
:param manifest_version: Version of the extension manifest format/content
866866
:type manifest_version: float
867-
: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.
867+
: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.
868868
:type restricted_to: list of str
869869
:param scopes: List of all oauth scopes required by this extension
870870
:type scopes: list of str

azure-devops/azure/devops/v5_1/feature_management/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class ContributedFeature(Model):
2323
:type description: str
2424
:param feature_properties: Extra properties for the feature
2525
:type feature_properties: dict
26-
:param feature_state_changed_listeners: Handler for listening to setter calls on feature value. These listeners are only invoked after a successful set has occured
26+
:param feature_state_changed_listeners: Handler for listening to setter calls on feature value. These listeners are only invoked after a successful set has occurred
2727
:type feature_state_changed_listeners: list of :class:`ContributedFeatureListener <azure.devops.v5_1.feature_management.models.ContributedFeatureListener>`
2828
:param id: The full contribution id of the feature
2929
:type id: str

azure-devops/azure/devops/v5_1/gallery/models.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ class Answers(Model):
7070
"""
7171

7272
_attribute_map = {
73-
'vSMarketplace_extension_name': {'key': 'vSMarketplaceExtensionName', 'type': 'str'},
74-
'vSMarketplace_publisher_name': {'key': 'vSMarketplacePublisherName', 'type': 'str'}
73+
'vSMarketplace_extension_name': {'key': 'vsMarketplaceExtensionName', 'type': 'str'},
74+
'vSMarketplace_publisher_name': {'key': 'vsMarketplacePublisherName', 'type': 'str'}
7575
}
7676

7777
def __init__(self, vSMarketplace_extension_name=None, vSMarketplace_publisher_name=None):
@@ -570,7 +570,7 @@ class ExtensionFilterResult(Model):
570570
"""
571571
The FilterResult is the set of extensions that matched a particular query filter.
572572
573-
:param extensions: This is the set of appplications that matched the query filter supplied.
573+
:param extensions: This is the set of applications that matched the query filter supplied.
574574
:type extensions: list of :class:`PublishedExtension <azure.devops.v5_1.gallery.models.PublishedExtension>`
575575
:param paging_token: The PagingToken is returned from a request when more records exist that match the result than were requested or could be returned. A follow-up query with this paging token can be used to retrieve more results.
576576
:type paging_token: str
@@ -684,7 +684,7 @@ class ExtensionQuery(Model):
684684
:type asset_types: list of str
685685
:param filters: Each filter is a unique query and will have matching set of extensions returned from the request. Each result will have the same index in the resulting array that the filter had in the incoming query.
686686
:type filters: list of :class:`QueryFilter <azure.devops.v5_1.gallery.models.QueryFilter>`
687-
:param flags: The Flags are used to deterine which set of information the caller would like returned for the matched extensions.
687+
:param flags: The Flags are used to determine which set of information the caller would like returned for the matched extensions.
688688
:type flags: object
689689
"""
690690

@@ -1225,7 +1225,7 @@ class PublisherFilterResult(Model):
12251225
"""
12261226
The FilterResult is the set of publishers that matched a particular query filter.
12271227
1228-
:param publishers: This is the set of appplications that matched the query filter supplied.
1228+
:param publishers: This is the set of applications that matched the query filter supplied.
12291229
:type publishers: list of :class:`Publisher <azure.devops.v5_1.gallery.models.Publisher>`
12301230
"""
12311231

@@ -1244,7 +1244,7 @@ class PublisherQuery(Model):
12441244
12451245
:param filters: Each filter is a unique query and will have matching set of publishers returned from the request. Each result will have the same index in the resulting array that the filter had in the incoming query.
12461246
:type filters: list of :class:`QueryFilter <azure.devops.v5_1.gallery.models.QueryFilter>`
1247-
:param flags: The Flags are used to deterine which set of information the caller would like returned for the matched publishers.
1247+
:param flags: The Flags are used to determine which set of information the caller would like returned for the matched publishers.
12481248
:type flags: object
12491249
"""
12501250

@@ -1718,7 +1718,7 @@ class ReviewSummary(Model):
17181718
:type average_rating: int
17191719
:param rating_count: Count of total ratings
17201720
:type rating_count: long
1721-
:param rating_split: Split of count accross rating
1721+
:param rating_split: Split of count across rating
17221722
:type rating_split: list of :class:`RatingCountPerRating <azure.devops.v5_1.gallery.models.RatingCountPerRating>`
17231723
"""
17241724

0 commit comments

Comments
 (0)