Tworzenie usługi Service Fabric
Tworzy lub aktualizuje zasób usługi Service Fabric.
Utwórz lub zaktualizuj zasób usługi Service Fabric o określonej nazwie.
Żądanie
Metoda | Identyfikator URI żądania |
---|---|
PUT | /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/clusters/{clusterName}/applications/{applicationName}/services/{serviceName}?api-version=2017-07-01-preview |
Parametry
Nazwa | Typ | Wymagane | Lokalizacja |
---|---|---|---|
Subscriptionid | ciąg | Tak | Ścieżka |
resourceGroupName | ciąg | Tak | Ścieżka |
clusterName | ciąg | Tak | Ścieżka |
Applicationname | ciąg | Tak | Ścieżka |
Servicename | ciąg | Tak | Ścieżka |
api-version | ciąg | Tak | Zapytanie |
parameters | ServiceResource | Tak | Treść |
subscriptionId
Typ: ciąg
Wymagane: Tak
Identyfikator subskrypcji klienta.
resourceGroupName
Typ: ciąg
Wymagane: Tak
Nazwa grupy zasobów.
clusterName
Typ: ciąg
Wymagane: Tak
Nazwa zasobu klastra.
applicationName
Typ: ciąg
Wymagane: Tak
Nazwa zasobu aplikacji.
Servicename
Typ: ciąg
Wymagane: Tak
Nazwa zasobu usługi w formacie {applicationName}~{serviceName}}.
api-version
Typ: ciąg
Wymagane: Tak
Ustawienie domyślne: 2017-07-01-preview
Wersja interfejsu API dostawcy zasobów usługi Service Fabric. Jest to wymagany parametr i dla tej specyfikacji musi być to wartość "2017-07-01-preview".
parameters
Typ: ServiceResource
Wymagane: Tak
Zasób usługi.
Odpowiedzi
Kod stanu HTTP | Opis | Response Schema |
---|---|---|
202 (zaakceptowane) | Żądanie zostało zaakceptowane, a operacja zostanie ukończona asynchronicznie. |
ServiceResource |
Wszystkie inne kody stanu | Szczegółowa odpowiedź na błąd. |
ErrorModel |
Przykłady
Umieszczanie usługi z parametrami mininum
Żądanie
PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp/services/myService?api-version=2017-07-01-preview
Treść
{
"type": "services",
"location": "eastus",
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp/services/myService",
"name": "myCluster",
"tags": {},
"properties": {
"serviceKind": "Stateless",
"serviceTypeName": "myServiceType",
"partitionDescription": {
"partitionScheme": "Singleton"
},
"instanceCount": "1"
}
}
Odpowiedź z 202 r.
Nagłówki
Retry-After: 10
Location: http://10.91.140.224/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastus/operationResults/5bc615c3-6c5b-4593-80e1-008f55376ec7?api-version=2017-07-01-preview
Treść
{
"type": "services",
"location": "eastus",
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp/services/myService",
"name": "myCluster",
"tags": {},
"etag": "W/\"636462502183671256\"",
"properties": {
"provisioningState": "Updating",
"serviceKind": "Stateless",
"serviceTypeName": "myServiceType",
"partitionDescription": {
"partitionScheme": "Singleton"
},
"instanceCount": "1"
}
}
Umieszczanie usługi z maksymalnymi parametrami
Żądanie
PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp/services/myService?api-version=2017-07-01-preview
Treść
{
"type": "services",
"location": "eastus",
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp/services/myService",
"name": "myCluster",
"tags": {},
"properties": {
"serviceKind": "Stateless",
"placementConstraints": "NodeType==frontend",
"serviceTypeName": "myServiceType",
"partitionDescription": {
"partitionScheme": "Singleton"
},
"serviceLoadMetrics": [
{
"name": "metric1",
"weight": "Low"
}
],
"correlationScheme": [
{
"serviceName": "fabric:/app1/app1~svc1",
"scheme": "Affinity"
}
],
"servicePlacementPolicies": [],
"defaultMoveCost": "Medium",
"instanceCount": "5"
}
}
Odpowiedź z 202 r.
Nagłówki
Retry-After: 10
Location: http://10.91.140.224/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastus/operationResults/2e633105-aadc-4928-9164-d76b974170a3?api-version=2017-07-01-preview
Treść
{
"type": "services",
"location": "eastus",
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/resRg/providers/Microsoft.ServiceFabric/clusters/myCluster/applications/myApp/services/myService",
"name": "myCluster",
"tags": {},
"etag": "W/\"636462502183671258\"",
"properties": {
"provisioningState": "Updating",
"serviceKind": "Stateless",
"placementConstraints": "NodeType==frontend",
"serviceTypeName": "myServiceType",
"partitionDescription": {
"partitionScheme": "Singleton"
},
"serviceLoadMetrics": [
{
"name": "metric1",
"weight": "Low"
}
],
"servicePlacementPolicies": [],
"defaultMoveCost": "Medium",
"instanceCount": "5"
}
}