forked from MicrosoftDocs/azure-docs-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnode.pycliyml
More file actions
831 lines (831 loc) · 36.2 KB
/
node.pycliyml
File metadata and controls
831 lines (831 loc) · 36.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
commandList:
- name: az sf node code-package
description: Gets the list of code packages deployed on a Service Fabric node.
href: node#code-package
- name: az sf node list
description: Gets the list of nodes in the Service Fabric cluster.
href: node#list
- name: az sf node load
description: Gets the load information of a Service Fabric node.
href: node#load
- name: az sf node remove-state
description: Notifies Service Fabric that the persisted state on a node has been permanently removed or lost.
href: node#remove-state
- name: az sf node replica-list
description: Gets the list of replicas deployed on a Service Fabric node.
href: node#replica-list
- name: az sf node report-health
description: Sends a health report on the Service Fabric node.
href: node#report-health
- name: az sf node restart
description: Restarts a Service Fabric cluster node.
href: node#restart
- name: az sf node service-package
description: Gets the list of service packages deployed on a Service Fabric node matching exactly the specified name.
href: node#service-package
- name: az sf node service-package-list
description: Gets the list of service packages deployed on a Service Fabric node.
href: node#service-package-list
- name: az sf node service-package-upload
description: Downloads packages associated with specified service manifest to the image cache on specified node.
href: node#service-package-upload
- name: az sf node service-type
description: Gets the information about a specified service type of the application deployed on a node in a Service Fabric cluster.
href: node#service-type
- name: az sf node service-type-list
description: Gets the list containing the information about service types from the applications deployed on a node in a Service Fabric cluster.
href: node#service-type-list
- name: az sf node start
description: Starts a Service Fabric cluster node.
href: node#start
- name: az sf node stop
description: Stops a Service Fabric cluster node.
href: node#stop
htmlId: node
examples: []
source:
remote:
path: src/command_modules/azure-cli-sf/azure/cli/command_modules/sf/_help.py
branch: master
repo: https://github.com/Azure/azure-cli.git
children:
- commandList: []
htmlId: code-package
examples: []
parameters:
- name: --application-id
isRequired: True
summary: The identity of the application. This is typically the full name of the application without the 'fabric:' URI scheme.
description: ''
- name: --node-name
isRequired: True
summary: The name of the node.
description: ''
- name: --code-package-name
isRequired: False
summary: The name of code package specified in service manifest registered as part of an application type in a Service Fabric cluster.
description: ''
- name: --service-manifest-name
isRequired: False
summary: The name of a service manifest registered as part of an application type in a Service Fabric cluster.
description: ''
- name: --timeout -t
isRequired: False
summary: The server timeout for performing the operation, specified in seconds. This is the maximum time a client can wait.
description: ''
defaultValue: 60
- name: --debug
isRequired: False
summary: Increase logging verbosity to show all debug logs.
description: ''
- name: --help -h
isRequired: False
summary: Show this help message and exit.
description: ''
- name: --output -o
isRequired: False
summary: Output format.
description: ''
defaultValue: json
parameterValueGroup: json, jsonc, table, tsv
- name: --query
isRequired: False
summary: JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.
description: ''
- name: --verbose
isRequired: False
summary: Increase logging verbosity. Use --debug for full debug logs.
description: ''
source:
remote:
path: src/command_modules/azure-cli-sf/azure/cli/command_modules/sf/_help.py
branch: master
repo: https://github.com/Azure/azure-cli.git
children: []
uid: az_sf_node_code-package
name: az sf node code-package
description: Gets the list of code packages deployed on a Service Fabric node for the given application.
summary: Gets the list of code packages deployed on a Service Fabric node.
Metadata: {}
- commandList: []
htmlId: list
examples: []
parameters:
- name: --continuation-token
isRequired: False
summary: The continuation token parameter is used to obtain next set of results. A continuation token with a non empty value is included in the response of the API when the results from the system do not fit in a single response. When this value is passed to the next API call, the API returns next set of results. If there are no further results then the continuation token does not contain a value. The value of this parameter should not be URL encoded.
description: ''
- name: --node-status-filter
isRequired: False
summary: Allows filtering the nodes based on the NodeStatus. Only the nodes that are matching the specified filter value will be returned. The filter value can be one of the following. - default - This filter value will match all of the nodes excepts the ones with with status as Unknown or Removed. - all - This filter value will match all of the nodes. - up - This filter value will match nodes that are Up. - down - This filter value will match nodes that are Down. - enabling - This filter value will match nodes that are in the process of being enabled with status as Enabling. - disabling - This filter value will match nodes that are in the process of being disabled with status as Disabling. - disabled - This filter value will match nodes that are Disabled. - unknown - This filter value will match nodes whose status is Unknown. A node would be in Unknown state if Service Fabric does not have authoritative information about that node. This can happen if the system learns about a node at runtime. - removed - This filter value will match nodes whose status is Removed. These are the nodes that are removed from the cluster using the RemoveNodeState API. .
description: ''
defaultValue: default
- name: --timeout -t
isRequired: False
summary: The server timeout for performing the operation, specified in seconds. This is the maximum time a client can wait.
description: ''
defaultValue: 60
- name: --debug
isRequired: False
summary: Increase logging verbosity to show all debug logs.
description: ''
- name: --help -h
isRequired: False
summary: Show this help message and exit.
description: ''
- name: --output -o
isRequired: False
summary: Output format.
description: ''
defaultValue: json
parameterValueGroup: json, jsonc, table, tsv
- name: --query
isRequired: False
summary: JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.
description: ''
- name: --verbose
isRequired: False
summary: Increase logging verbosity. Use --debug for full debug logs.
description: ''
source:
remote:
path: src/command_modules/azure-cli-sf/azure/cli/command_modules/sf/_help.py
branch: master
repo: https://github.com/Azure/azure-cli.git
children: []
uid: az_sf_node_list
name: az sf node list
description: The Nodes endpoint returns information about the nodes in the Service Fabric Cluster. The respons include the name, status, id, health, uptime and other details about the node.
summary: Gets the list of nodes in the Service Fabric cluster.
Metadata: {}
- commandList: []
htmlId: load
examples: []
parameters:
- name: --node-name
isRequired: True
summary: The name of the node.
description: ''
- name: --timeout -t
isRequired: False
summary: The server timeout for performing the operation, specified in seconds. This is the maximum time a client can wait.
description: ''
defaultValue: 60
- name: --debug
isRequired: False
summary: Increase logging verbosity to show all debug logs.
description: ''
- name: --help -h
isRequired: False
summary: Show this help message and exit.
description: ''
- name: --output -o
isRequired: False
summary: Output format.
description: ''
defaultValue: json
parameterValueGroup: json, jsonc, table, tsv
- name: --query
isRequired: False
summary: JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.
description: ''
- name: --verbose
isRequired: False
summary: Increase logging verbosity. Use --debug for full debug logs.
description: ''
source:
remote:
path: src/command_modules/azure-cli-sf/azure/cli/command_modules/sf/_help.py
branch: master
repo: https://github.com/Azure/azure-cli.git
children: []
uid: az_sf_node_load
name: az sf node load
description: Gets the load information of a Service Fabric node.
summary: Gets the load information of a Service Fabric node.
Metadata: {}
- commandList: []
htmlId: remove-state
examples: []
parameters:
- name: --node-name
isRequired: True
summary: The name of the node.
description: ''
- name: --timeout -t
isRequired: False
summary: The server timeout for performing the operation, specified in seconds. This is the maximum time a client can wait.
description: ''
defaultValue: 60
- name: --debug
isRequired: False
summary: Increase logging verbosity to show all debug logs.
description: ''
- name: --help -h
isRequired: False
summary: Show this help message and exit.
description: ''
- name: --output -o
isRequired: False
summary: Output format.
description: ''
defaultValue: json
parameterValueGroup: json, jsonc, table, tsv
- name: --query
isRequired: False
summary: JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.
description: ''
- name: --verbose
isRequired: False
summary: Increase logging verbosity. Use --debug for full debug logs.
description: ''
source:
remote:
path: src/command_modules/azure-cli-sf/azure/cli/command_modules/sf/_help.py
branch: master
repo: https://github.com/Azure/azure-cli.git
children: []
uid: az_sf_node_remove-state
name: az sf node remove-state
description: Notifies Service Fabric that the persisted state on a node has been permanently removed or lost. This implies that it is not possible to recover the persisted state of that node. This generally happens if a hard disk has been wiped clean, or if a hard disk crashes. The node has to be down for this operation to be successful. This operation lets Service Fabric know that the replicas on that node no longer exist, and that Service Fabric should stop waiting for those replicas to come back up. Do not run this cmdlet if the state on the node has not been removed and the node can comes back up with its state intact.
summary: Notifies Service Fabric that the persisted state on a node has been permanently removed or lost.
Metadata: {}
- commandList: []
htmlId: replica-list
examples: []
parameters:
- name: --application-id
isRequired: True
summary: The identity of the application. This is typically the full name of the application without the 'fabric:' URI scheme.
description: ''
- name: --node-name
isRequired: True
summary: The name of the node.
description: ''
- name: --partition-id
isRequired: False
summary: The identity of the partition.
description: ''
- name: --service-manifest-name
isRequired: False
summary: The name of a service manifest registered as part of an application type in a Service Fabric cluster.
description: ''
- name: --timeout -t
isRequired: False
summary: The server timeout for performing the operation, specified in seconds. This is the maximum time a client can wait.
description: ''
defaultValue: 60
- name: --debug
isRequired: False
summary: Increase logging verbosity to show all debug logs.
description: ''
- name: --help -h
isRequired: False
summary: Show this help message and exit.
description: ''
- name: --output -o
isRequired: False
summary: Output format.
description: ''
defaultValue: json
parameterValueGroup: json, jsonc, table, tsv
- name: --query
isRequired: False
summary: JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.
description: ''
- name: --verbose
isRequired: False
summary: Increase logging verbosity. Use --debug for full debug logs.
description: ''
source:
remote:
path: src/command_modules/azure-cli-sf/azure/cli/command_modules/sf/_help.py
branch: master
repo: https://github.com/Azure/azure-cli.git
children: []
uid: az_sf_node_replica-list
name: az sf node replica-list
description: Gets the list containing the information about replicas deployed on a Service Fabric node. The information include partition id, replica id, status of the replica, name of the service, name of the service type and other information. Use PartitionId or ServiceManifestName query parameters to return information about the deployed replicas matching the specified values for those parameters.
summary: Gets the list of replicas deployed on a Service Fabric node.
Metadata: {}
- commandList: []
htmlId: report-health
examples: []
parameters:
- name: --health-property
isRequired: True
summary: The property of the health information. An entity can have health reports for different properties. The property is a string and not a fixed enumeration to allow the reporter flexibility to categorize the state condition that triggers the report. For example, a reporter with SourceId "LocalWatchdog" can monitor the state of the available disk on a node, so it can report "AvailableDisk" property on that node. The same reporter can monitor the node connectivity, so it can report a property "Connectivity" on the same node. In the health store, these reports are treated as separate health events for the specified node. Together with the SourceId, the property uniquely identifies the health information.
description: ''
- name: --health-state
isRequired: True
summary: 'Possible values include: ''Invalid'', ''Ok'', ''Warning'', ''Error'', ''Unknown''.'
description: ''
- name: --node-name
isRequired: True
summary: The name of the node.
description: ''
- name: --source-id
isRequired: True
summary: The source name which identifies the client/watchdog/system component which generated the health information.
description: ''
- name: --description
isRequired: False
summary: The description of the health information. It represents free text used to add human readable information about the report. The maximum string length for the description is 4096 characters. If the provided string is longer, it will be automatically truncated. When truncated, the last characters of the description contain a marker "[Truncated]", and total string size is 4096 characters. The presence of the marker indicates to users that truncation occurred. Note that when truncated, the description has less than 4096 characters from the original string.
description: ''
- name: --remove-when-expired
isRequired: False
summary: Value that indicates whether the report is removed from health store when it expires. If set to true, the report is removed from the health store after it expires. If set to false, the report is treated as an error when expired. The value of this property is false by default. When clients report periodically, they should set this value to false (default). This way, is the reporter has issues (eg. deadlock) and can't report, the entity is evaluated at error when the health report expires. This flags the entity as being in Error health state.
description: ''
- name: --sequence-number
isRequired: False
summary: The sequence number for this health report as a numeric string. The report sequence number is used by the health store to detect stale reports. If not specified, a sequence number is auto-generated by the health client when a report is added.
description: ''
- name: --timeout -t
isRequired: False
summary: The server timeout for performing the operation, specified in seconds. This is the maximum time a client can wait.
description: ''
defaultValue: 60
- name: --ttl
isRequired: False
summary: The duration, in milliseconds, for which this health report is valid. When clients report periodically, they should send reports with higher frequency than time to live. If not specified, time to live defaults to infinite value.
description: ''
- name: --debug
isRequired: False
summary: Increase logging verbosity to show all debug logs.
description: ''
- name: --help -h
isRequired: False
summary: Show this help message and exit.
description: ''
- name: --output -o
isRequired: False
summary: Output format.
description: ''
defaultValue: json
parameterValueGroup: json, jsonc, table, tsv
- name: --query
isRequired: False
summary: JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.
description: ''
- name: --verbose
isRequired: False
summary: Increase logging verbosity. Use --debug for full debug logs.
description: ''
source:
remote:
path: src/command_modules/azure-cli-sf/azure/cli/command_modules/sf/_help.py
branch: master
repo: https://github.com/Azure/azure-cli.git
children: []
uid: az_sf_node_report-health
name: az sf node report-health
description: Reports health state of the specified Service Fabric node. The report must contain the information about the source of the health report and property on which it is reported. The report is sent to a Service Fabric gateway node, which forwards to the health store. The report may be accepted by the gateway, but rejected by the health store after extra validation. For example, the health store may reject the report because of an invalid parameter, like a stale sequence number. To see whether the report was applied in the health store, check that the report appears in the events section.
summary: Sends a health report on the Service Fabric node.
Metadata: {}
- commandList: []
htmlId: restart
examples: []
parameters:
- name: --node-name
isRequired: True
summary: The name of the node.
description: ''
- name: --create-fabric-dump
isRequired: False
summary: Specify True to create a dump of the fabric node process. This is case sensitive.
description: ''
defaultValue: False
- name: --node-instance-id
isRequired: False
summary: The instance id of the target node. If instance id is specified the node is restarted only if it matches with the current instance of the node. A default value of "0" would match any instance id. The instance id can be obtained using get node query.
description: ''
defaultValue: 0
- name: --timeout -t
isRequired: False
summary: The server timeout for performing the operation, specified in seconds. This is the maximum time a client can wait.
description: ''
defaultValue: 60
- name: --debug
isRequired: False
summary: Increase logging verbosity to show all debug logs.
description: ''
- name: --help -h
isRequired: False
summary: Show this help message and exit.
description: ''
- name: --output -o
isRequired: False
summary: Output format.
description: ''
defaultValue: json
parameterValueGroup: json, jsonc, table, tsv
- name: --query
isRequired: False
summary: JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.
description: ''
- name: --verbose
isRequired: False
summary: Increase logging verbosity. Use --debug for full debug logs.
description: ''
source:
remote:
path: src/command_modules/azure-cli-sf/azure/cli/command_modules/sf/_help.py
branch: master
repo: https://github.com/Azure/azure-cli.git
children: []
uid: az_sf_node_restart
name: az sf node restart
description: Restarts a Service Fabric cluster node that is already started.
summary: Restarts a Service Fabric cluster node.
Metadata: {}
- commandList: []
htmlId: service-package
examples: []
parameters:
- name: --application-id
isRequired: True
summary: The identity of the application. This is typically the full name of the application without the 'fabric:' URI scheme.
description: ''
- name: --node-name
isRequired: True
summary: The name of the node.
description: ''
- name: --service-package-name
isRequired: True
summary: The name of the service package.
description: ''
- name: --timeout -t
isRequired: False
summary: The server timeout for performing the operation, specified in seconds. This is the maximum time a client can wait.
description: ''
defaultValue: 60
- name: --debug
isRequired: False
summary: Increase logging verbosity to show all debug logs.
description: ''
- name: --help -h
isRequired: False
summary: Show this help message and exit.
description: ''
- name: --output -o
isRequired: False
summary: Output format.
description: ''
defaultValue: json
parameterValueGroup: json, jsonc, table, tsv
- name: --query
isRequired: False
summary: JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.
description: ''
- name: --verbose
isRequired: False
summary: Increase logging verbosity. Use --debug for full debug logs.
description: ''
source:
remote:
path: src/command_modules/azure-cli-sf/azure/cli/command_modules/sf/_help.py
branch: master
repo: https://github.com/Azure/azure-cli.git
children: []
uid: az_sf_node_service-package
name: az sf node service-package
description: Returns the information about the service packages deployed on a Service Fabric node for the given application. These results are of service packages whose name match exactly the service package name specified as the parameter.
summary: Gets the list of service packages deployed on a Service Fabric node matching exactly the specified name.
Metadata: {}
- commandList: []
htmlId: service-package-list
examples: []
parameters:
- name: --application-id
isRequired: True
summary: The identity of the application. This is typically the full name of the application without the 'fabric:' URI scheme.
description: ''
- name: --node-name
isRequired: True
summary: The name of the node.
description: ''
- name: --timeout -t
isRequired: False
summary: The server timeout for performing the operation, specified in seconds. This is the maximum time a client can wait.
description: ''
defaultValue: 60
- name: --debug
isRequired: False
summary: Increase logging verbosity to show all debug logs.
description: ''
- name: --help -h
isRequired: False
summary: Show this help message and exit.
description: ''
- name: --output -o
isRequired: False
summary: Output format.
description: ''
defaultValue: json
parameterValueGroup: json, jsonc, table, tsv
- name: --query
isRequired: False
summary: JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.
description: ''
- name: --verbose
isRequired: False
summary: Increase logging verbosity. Use --debug for full debug logs.
description: ''
source:
remote:
path: src/command_modules/azure-cli-sf/azure/cli/command_modules/sf/_help.py
branch: master
repo: https://github.com/Azure/azure-cli.git
children: []
uid: az_sf_node_service-package-list
name: az sf node service-package-list
description: Returns the information about the service packages deployed on a Service Fabric node for the given application.
summary: Gets the list of service packages deployed on a Service Fabric node.
Metadata: {}
- commandList: []
htmlId: service-package-upload
examples: []
parameters:
- name: --app-type-name
isRequired: True
summary: The name of the application manifest for the corresponding requested service manifest.
description: ''
- name: --app-type-version
isRequired: True
summary: The version of the application manifest for the corresponding requested service manifest.
description: ''
- name: --node-name
isRequired: True
summary: The name of the node.
description: ''
- name: --service-manifest-name
isRequired: True
summary: The name of service manifest associated with the packages that will be downloaded.
description: ''
- name: --share-policy
isRequired: False
summary: JSON encoded list of sharing policies. Each sharing policy element is composed of a 'name' and 'scope'. The name corresponds to the name of the code, configuration, or data package that is to be shared. The scope can either 'None', 'All', 'Code', 'Config' or 'Data'.
description: ''
- name: --timeout -t
isRequired: False
summary: The server timeout for performing the operation, specified in seconds. This is the maximum time a client can wait.
description: ''
defaultValue: 60
- name: --debug
isRequired: False
summary: Increase logging verbosity to show all debug logs.
description: ''
- name: --help -h
isRequired: False
summary: Show this help message and exit.
description: ''
- name: --output -o
isRequired: False
summary: Output format.
description: ''
defaultValue: json
parameterValueGroup: json, jsonc, table, tsv
- name: --query
isRequired: False
summary: JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.
description: ''
- name: --verbose
isRequired: False
summary: Increase logging verbosity. Use --debug for full debug logs.
description: ''
source:
remote:
path: src/command_modules/azure-cli-sf/azure/cli/command_modules/sf/_help.py
branch: master
repo: https://github.com/Azure/azure-cli.git
children: []
uid: az_sf_node_service-package-upload
name: az sf node service-package-upload
description: ''
summary: Downloads packages associated with specified service manifest to the image cache on specified node.
Metadata: {}
- commandList: []
htmlId: service-type
examples: []
parameters:
- name: --application-id
isRequired: True
summary: The identity of the application. This is typically the full name of the application without the 'fabric:' URI scheme.
description: ''
- name: --node-name
isRequired: True
summary: The name of the node.
description: ''
- name: --service-type-name
isRequired: True
summary: Specifies the name of a Service Fabric service type.
description: ''
- name: --service-manifest-name
isRequired: False
summary: The name of the service manifest to filter the list of deployed service type information. If specified, the response will only contain the information about service types that are defined in this service manifest.
description: ''
- name: --timeout -t
isRequired: False
summary: The server timeout for performing the operation, specified in seconds. This is the maximum time a client can wait.
description: ''
defaultValue: 60
- name: --debug
isRequired: False
summary: Increase logging verbosity to show all debug logs.
description: ''
- name: --help -h
isRequired: False
summary: Show this help message and exit.
description: ''
- name: --output -o
isRequired: False
summary: Output format.
description: ''
defaultValue: json
parameterValueGroup: json, jsonc, table, tsv
- name: --query
isRequired: False
summary: JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.
description: ''
- name: --verbose
isRequired: False
summary: Increase logging verbosity. Use --debug for full debug logs.
description: ''
source:
remote:
path: src/command_modules/azure-cli-sf/azure/cli/command_modules/sf/_help.py
branch: master
repo: https://github.com/Azure/azure-cli.git
children: []
uid: az_sf_node_service-type
name: az sf node service-type
description: Gets the information about a specified service type of the application deployed on a node in a Service Fabric cluster. The response includes the name of the service type, its registration status, the code package that registered it and activation id of the service package.
summary: Gets the information about a specified service type of the application deployed on a node in a Service Fabric cluster.
Metadata: {}
- commandList: []
htmlId: service-type-list
examples: []
parameters:
- name: --application-id
isRequired: True
summary: The identity of the application. This is typically the full name of the application without the 'fabric:' URI scheme.
description: ''
- name: --node-name
isRequired: True
summary: The name of the node.
description: ''
- name: --service-manifest-name
isRequired: False
summary: The name of the service manifest to filter the list of deployed service type information. If specified, the response will only contain the information about service types that are defined in this service manifest.
description: ''
- name: --timeout -t
isRequired: False
summary: The server timeout for performing the operation, specified in seconds. This is the maximum time a client can wait.
description: ''
defaultValue: 60
- name: --debug
isRequired: False
summary: Increase logging verbosity to show all debug logs.
description: ''
- name: --help -h
isRequired: False
summary: Show this help message and exit.
description: ''
- name: --output -o
isRequired: False
summary: Output format.
description: ''
defaultValue: json
parameterValueGroup: json, jsonc, table, tsv
- name: --query
isRequired: False
summary: JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.
description: ''
- name: --verbose
isRequired: False
summary: Increase logging verbosity. Use --debug for full debug logs.
description: ''
source:
remote:
path: src/command_modules/azure-cli-sf/azure/cli/command_modules/sf/_help.py
branch: master
repo: https://github.com/Azure/azure-cli.git
children: []
uid: az_sf_node_service-type-list
name: az sf node service-type-list
description: Gets the list containing the information about service types from the applications deployed on a node in a Service Fabric cluster. The response includes the name of the service type, its registration status, the code package that registered it and activation id of the service package.
summary: Gets the list containing the information about service types from the applications deployed on a node in a Service Fabric cluster.
Metadata: {}
- commandList: []
htmlId: start
examples: []
parameters:
- name: --node-name
isRequired: True
summary: The name of the node.
description: ''
- name: --node-instance-id
isRequired: False
summary: The instance id of the node that is stopped. If instance id is specified the node is started only if it matches with the current instance of the stopped node. A default value of "0" would match any instance id. The instance id can be obtained using get node query.
description: ''
defaultValue: 0
- name: --timeout -t
isRequired: False
summary: The server timeout for performing the operation, specified in seconds. This is the maximum time a client can wait.
description: ''
defaultValue: 60
- name: --debug
isRequired: False
summary: Increase logging verbosity to show all debug logs.
description: ''
- name: --help -h
isRequired: False
summary: Show this help message and exit.
description: ''
- name: --output -o
isRequired: False
summary: Output format.
description: ''
defaultValue: json
parameterValueGroup: json, jsonc, table, tsv
- name: --query
isRequired: False
summary: JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.
description: ''
- name: --verbose
isRequired: False
summary: Increase logging verbosity. Use --debug for full debug logs.
description: ''
source:
remote:
path: src/command_modules/azure-cli-sf/azure/cli/command_modules/sf/_help.py
branch: master
repo: https://github.com/Azure/azure-cli.git
children: []
uid: az_sf_node_start
name: az sf node start
description: Starts a Service Fabric cluster node that is already stopped.
summary: Starts a Service Fabric cluster node.
Metadata: {}
- commandList: []
htmlId: stop
examples: []
parameters:
- name: --node-name
isRequired: True
summary: The name of the node.
description: ''
- name: --node-instance-id
isRequired: False
summary: The instance id of the target node. If instance id is specified the node is stopped only if it matches with the current instance of the node. A default value of "0" would match any instance id. The instance id can be obtained using get node query.
description: ''
defaultValue: 0
- name: --timeout -t
isRequired: False
summary: The server timeout for performing the operation, specified in seconds. This is the maximum time a client can wait.
description: ''
defaultValue: 60
- name: --debug
isRequired: False
summary: Increase logging verbosity to show all debug logs.
description: ''
- name: --help -h
isRequired: False
summary: Show this help message and exit.
description: ''
- name: --output -o
isRequired: False
summary: Output format.
description: ''
defaultValue: json
parameterValueGroup: json, jsonc, table, tsv
- name: --query
isRequired: False
summary: JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.
description: ''
- name: --verbose
isRequired: False
summary: Increase logging verbosity. Use --debug for full debug logs.
description: ''
source:
remote:
path: src/command_modules/azure-cli-sf/azure/cli/command_modules/sf/_help.py
branch: master
repo: https://github.com/Azure/azure-cli.git
children: []
uid: az_sf_node_stop
name: az sf node stop
description: Stops a Service Fabric cluster node that is in a started state. The node will stay down until start node is called.
summary: Stops a Service Fabric cluster node.
Metadata: {}
uid: az_sf_node
name: az sf node
description: ''
summary: Manage the nodes that create a Service Fabric cluster.
Metadata:
doc_source_url_repo: https://github.com/Azure/azure-cli/blob/master/
doc_source_url_path: src/command_modules/azure-cli-sf/azure/cli/command_modules/sf/_help.py
original_content_git_url: https://github.com/Azure/azure-cli/blob/master/src/command_modules/azure-cli-sf/azure/cli/command_modules/sf/_help.py
gitcommit: https://github.com/Azure/azure-cli/blob/71c76c65a64e7dd4788a51d85644b01012f80356/src/command_modules/azure-cli-sf/azure/cli/command_modules/sf/_help.py
updated_at: 6/8/2017 4:07:47 PM
ms.date: 6/8/2017