Skip to content

Commit c5e4cd6

Browse files
authored
[AutoPR servicefabric/data-plane] typo: servicefabric/data-plane/Microsoft.ServiceFabric/servicefabric (#3848)
* Generated from cebed9a01f5c0a1a57c6a8b4108d08e6ce853dd7 typo: servicefabric/data-plane/Microsoft.ServiceFabric/stable/6.2/servicefabric - specificed -> specified - sucessful -> successful - resturns -> returns - commited -> committed - Double word "maximum" - Double word "with" * Packaging update of azure-servicefabric
1 parent ce09935 commit c5e4cd6

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

azure-servicefabric/MANIFEST.in

+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
include *.rst
2+
include azure/__init__.py
3+

azure-servicefabric/azure/servicefabric/models/service_fabric_client_ap_is_enums.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -914,7 +914,7 @@ class OperatingSystemTypes(str, Enum):
914914

915915
class NodeStatusFilter(str, Enum):
916916

917-
default = "default" #: This filter value will match all of the nodes excepts the ones with with status as Unknown or Removed.
917+
default = "default" #: This filter value will match all of the nodes excepts the ones with status as Unknown or Removed.
918918
all = "all" #: This filter value will match all of the nodes.
919919
up = "up" #: This filter value will match nodes that are Up.
920920
down = "down" #: This filter value will match nodes that are Down.

azure-servicefabric/azure/servicefabric/models/service_type_health_policy.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,8 @@ class ServiceTypeHealthPolicy(Model):
4040
The computation rounds up to tolerate one failure on small numbers of
4141
replicas. Default percentage is zero. Default value: 0 .
4242
:type max_percent_unhealthy_replicas_per_partition: int
43-
:param max_percent_unhealthy_services: The maximum maximum allowed
44-
percentage of unhealthy services. Allowed values are Byte values from zero
45-
to 100.
43+
:param max_percent_unhealthy_services: The maximum allowed percentage of
44+
unhealthy services. Allowed values are Byte values from zero to 100.
4645
The percentage represents the maximum tolerated percentage of services
4746
that can be unhealthy before the application is considered in error.
4847
If the percentage is respected but there is at least one unhealthy

azure-servicefabric/azure/servicefabric/models/service_type_health_policy_py3.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,8 @@ class ServiceTypeHealthPolicy(Model):
4040
The computation rounds up to tolerate one failure on small numbers of
4141
replicas. Default percentage is zero. Default value: 0 .
4242
:type max_percent_unhealthy_replicas_per_partition: int
43-
:param max_percent_unhealthy_services: The maximum maximum allowed
44-
percentage of unhealthy services. Allowed values are Byte values from zero
45-
to 100.
43+
:param max_percent_unhealthy_services: The maximum allowed percentage of
44+
unhealthy services. Allowed values are Byte values from zero to 100.
4645
The percentage represents the maximum tolerated percentage of services
4746
that can be unhealthy before the application is considered in error.
4847
If the percentage is respected but there is at least one unhealthy

azure-servicefabric/azure/servicefabric/service_fabric_client_ap_is.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2889,7 +2889,7 @@ def get_service_type_info_by_name(
28892889
Gets the information about a specific service type that is supported by
28902890
a provisioned application type in a Service Fabric cluster. The
28912891
provided application type must exist. Otherwise, a 404 status is
2892-
returned. A 204 response is returned if the specificed service type is
2892+
returned. A 204 response is returned if the specified service type is
28932893
not found in the cluster.
28942894

28952895
:param application_type_name: The name of the application type.
@@ -15906,7 +15906,7 @@ def get_service(
1590615906

1590715907
def get_replicas(
1590815908
self, application_resource_name, service_resource_name, custom_headers=None, raw=False, **operation_config):
15909-
"""Gets replicas of a given service in an applciation resource.
15909+
"""Gets replicas of a given service in an application resource.
1591015910

1591115911
Gets the information about all replicas of a given service of an
1591215912
application. The information includes the runtime properties of the

azure-servicefabric/setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@
7777
]),
7878
install_requires=[
7979
'msrest>=0.5.0',
80+
'msrestazure>=0.4.32,<2.0.0',
8081
'azure-common~=1.1',
8182
],
8283
extras_require={

0 commit comments

Comments
 (0)