You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: nservicebus/hosting/azure-functions-service-bus/in-process/index.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,7 +78,7 @@ Use the [`asb-transport` command line (CLI) tool](/transports/azure-service-bus/
78
78
asb-transport endpoint create <queue name>
79
79
```
80
80
81
-
See the [full documentation](/transports/azure-service-bus/operational-scripting.md#operational-scripting-asb-transport-endpoint-create) for the `asb-transport endpoint create` command for more details.
81
+
See the [full documentation](/transports/azure-service-bus/operational-scripting.md#available-commands-asb-transport-endpoint-create) for the `asb-transport endpoint create` command for more details.
82
82
83
83
> [!WARNING]
84
84
> If the `asb-tranport` command-line tool is not used to create the queue, it is recommended to set the `MaxDeliveryCount` setting to the maximum value.
@@ -89,7 +89,7 @@ See the [full documentation](/transports/azure-service-bus/operational-scripting
See the [full documentation](/transports/azure-service-bus/operational-scripting.md#operational-scripting-asb-transport-endpoint-subscribe) for the `asb-transport endpoint subscribe` command for more details.
92
+
See the [full documentation](/transports/azure-service-bus/operational-scripting.md#available-commands-asb-transport-endpoint-subscribe) for the `asb-transport endpoint subscribe` command for more details.
Copy file name to clipboardExpand all lines: nservicebus/hosting/azure-functions-service-bus/index.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,7 +66,7 @@ To manually provision the entities in the namespace for the Function endpoint, u
66
66
asb-transport endpoint create <queue name>
67
67
```
68
68
69
-
For more details, see the [operation scripting documentation](/transports/azure-service-bus/operational-scripting.md#operational-scripting-asb-transport-endpoint-create) for the `asb-transport endpoint create` command.
69
+
For more details, see the [operation scripting documentation](/transports/azure-service-bus/operational-scripting.md#available-commands-asb-transport-endpoint-create) for the `asb-transport endpoint create` command.
70
70
71
71
> [!WARNING]
72
72
> If the `asb-transport` command-line tool is not used to create the queue, set the `MaxDeliveryCount` setting to the maximum value.
@@ -77,6 +77,6 @@ For more details, see the [operation scripting documentation](/transports/azure-
For more details, see the [operational scripting documentation](/transports/azure-service-bus/operational-scripting.md#operational-scripting-asb-transport-endpoint-subscribe) for the `asb-transport endpoint subscribe` command.
80
+
For more details, see the [operational scripting documentation](/transports/azure-service-bus/operational-scripting.md#available-commands-asb-transport-endpoint-subscribe) for the `asb-transport endpoint subscribe` command.
Copy file name to clipboardExpand all lines: transports/azure-service-bus/operational-scripting.md
+14-4Lines changed: 14 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,14 @@ Once installed, the `asb-transport` command line tool will be available for use.
19
19
20
20
`asb-transport <command> [options]`
21
21
22
+
## Available commands
23
+
24
+
-`endpoint create`
25
+
-`endpoint subscribe`
26
+
-`endpoint unsubscribe`
27
+
-`queue create`
28
+
-`queue delete`
29
+
22
30
partial: endpoint-command
23
31
24
32
### asb-transport queue create
@@ -56,22 +64,24 @@ asb-transport queue delete name
56
64
57
65
`-n` | `--namespace` : Sets the fully qualified namespace to connect with cached credentials, e.g., credentials from Azure PowerShell or CLI. This setting cannot be used in conjunction with the connection string setting.
Creates infrastructure for an endpoint -- input queue.
17
4
18
5
```
19
6
asb-transport endpoint create name
@@ -33,7 +20,7 @@ asb-transport endpoint create name
33
20
34
21
### asb-transport endpoint subscribe
35
22
36
-
Create a new subscription for an endpoint using:
23
+
Creates a new subscription for an endpoint.
37
24
38
25
```
39
26
asb-transport endpoint subscribe name topic
@@ -50,7 +37,7 @@ asb-transport endpoint subscribe name topic
50
37
51
38
### asb-transport endpoint unsubscribe
52
39
53
-
Delete a subscription for an endpoint using:
40
+
Deletes a subscription for an endpoint.
54
41
55
42
```
56
43
asb-transport endpoint unsubscribe name topic
@@ -64,114 +51,3 @@ asb-transport endpoint unsubscribe name topic
64
51
`-n` | `--namespace` : Sets the fully qualified namespace to connect with cached credentials, e.g., credentials from Azure PowerShell or CLI. This setting cannot be used in conjunction with the connection string setting.
65
52
66
53
`-b` | `--subscription`: Subscription name (defaults to endpoint name)
67
-
68
-
### asb-transport migration endpoint create
69
-
70
-
Create a new endpoint that uses migration topology using:
71
-
72
-
```
73
-
asb-transport migration endpoint create name
74
-
[--size]
75
-
[--partitioned]
76
-
[--topic]
77
-
[--topic-to-publish-to] [--topic-to-subscribe-on]
78
-
[--subscription]
79
-
```
80
-
81
-
#### options
82
-
83
-
`-c` | `--connection-string` : Overrides the environment variable 'AzureServiceBus_ConnectionString'
84
-
85
-
`-n` | `--namespace` : Sets the fully qualified namespace to connect with cached credentials, e.g., credentials from Azure PowerShell or CLI. This setting cannot be used in conjunction with the connection string setting.
86
-
87
-
`-s` | `--size` : Queue size in GB (defaults to 5)
88
-
89
-
`-p` | `--partitioned`: Enable partitioning
90
-
91
-
`-t` | `--topic`: Topic name (defaults to 'bundle-1')
92
-
93
-
`-tp` | `--topic-to-publish-to`: The topic name to publish to.
94
-
95
-
`-ts` | `--topic-to-subscribe-on`: The topic name to subscribe on.
96
-
97
-
`-b` | `--subscription`: Subscription name (defaults to endpoint name)
98
-
99
-
### asb-transport migration endpoint subscribe
100
-
101
-
Create a new subscription for an endpoint that uses migration topology using:
102
-
103
-
```
104
-
asb-transport migration endpoint subscribe name event-type
105
-
[--topic]
106
-
[--subscription]
107
-
[--rule-name]
108
-
```
109
-
110
-
#### Options
111
-
112
-
`-c` | `--connection-string` : Overrides the environment variable 'AzureServiceBus_ConnectionString'
113
-
114
-
`-n` | `--namespace` : Sets the fully qualified namespace to connect with cached credentials, e.g., credentials from Azure PowerShell or CLI. This setting cannot be used in conjunction with the connection string setting.
115
-
116
-
`-t` | `--topic`: Topic name to subscribe on (defaults to 'bundle-1')
117
-
118
-
`-b` | `--subscription`: Subscription name (defaults to endpoint name)
119
-
120
-
`-r` | `--rule-name`: Rule name (defaults to event type)
121
-
122
-
### asb-transport migration endpoint unsubscribe
123
-
124
-
Delete a subscription for an endpoint that uses migration topology using:
125
-
126
-
```
127
-
asb-transport migration endpoint unsubscribe name event-type
128
-
[--topic]
129
-
[--subscription]
130
-
[--rule-name]
131
-
```
132
-
133
-
#### Options
134
-
135
-
`-c` | `--connection-string` : Overrides the environment variable 'AzureServiceBus_ConnectionString'
136
-
137
-
`-n` | `--namespace` : Sets the fully qualified namespace to connect with cached credentials, e.g., credentials from Azure PowerShell or CLI. This setting cannot be used in conjunction with the connection string setting.
138
-
139
-
`-t` | `--topic`: Topic name to unsubscribe from (defaults to 'bundle-1')
140
-
141
-
`-b` | `--subscription`: Subscription name (defaults to endpoint name)
142
-
143
-
`-r` | `--rule-name`: Rule name (defaults to event type)
Create a new subscription for an endpoint that uses migration topology using:
148
-
149
-
```
150
-
asb-transport migration endpoint subscribe-migrated name topic
151
-
[--subscription]
152
-
```
153
-
154
-
#### Options
155
-
156
-
`-c` | `--connection-string` : Overrides the environment variable 'AzureServiceBus_ConnectionString'
157
-
158
-
`-n` | `--namespace` : Sets the fully qualified namespace to connect with cached credentials, e.g., credentials from Azure PowerShell or CLI. This setting cannot be used in conjunction with the connection string setting.
159
-
160
-
`-b` | `--subscription`: Subscription name (defaults to endpoint name)
Delete a subscription for an endpoint that uses migration topology using:
165
-
166
-
```
167
-
asb-transport migration endpoint unsubscribe-migrated name topic
168
-
[--subscription]
169
-
```
170
-
171
-
#### Options
172
-
173
-
`-c` | `--connection-string` : Overrides the environment variable 'AzureServiceBus_ConnectionString'
174
-
175
-
`-n` | `--namespace` : Sets the fully qualified namespace to connect with cached credentials, e.g., credentials from Azure PowerShell or CLI. This setting cannot be used in conjunction with the connection string setting.
176
-
177
-
`-b` | `--subscription`: Subscription name (defaults to endpoint name)
0 commit comments