@@ -61,7 +61,7 @@ When creating capability hosts, be aware of these important constraints to avoid
61
61
62
62
### Common 409 conflict scenarios
63
63
64
- #### 1. ** Multiple capability hosts per scope** ?
64
+ #### 1. ** Multiple capability hosts per scope**
65
65
66
66
** What happens:** You try to create a capability host with a different name when one already exists at the same scope (account or project level).
67
67
@@ -76,11 +76,11 @@ When creating capability hosts, be aware of these important constraints to avoid
76
76
```
77
77
78
78
** How to avoid:**
79
- - ? ** Check existing capability hosts first** before creating new ones
80
- - ? ** Use consistent naming** across all requests for the same scope
81
- - ? ** Query existing resources** to understand current state
79
+ - ** Check existing capability hosts first** before creating new ones
80
+ - ** Use consistent naming** across all requests for the same scope
81
+ - ** Query existing resources** to understand current state
82
82
83
- #### 2. ** Concurrent operations** ?
83
+ #### 2. ** Concurrent operations**
84
84
85
85
** What happens:** You try to create a capability host while another operation (update, delete, modify) is in progress at the same scope.
86
86
@@ -95,9 +95,9 @@ When creating capability hosts, be aware of these important constraints to avoid
95
95
```
96
96
97
97
** How to avoid:**
98
- - ? ** Monitor operation status** before making new requests
99
- - ? ** Implement retry logic** with exponential backoff
100
- - ? ** Wait for operations to complete** before starting new ones
98
+ - ** Monitor operation status** before making new requests
99
+ - ** Implement retry logic** with exponential backoff
100
+ - ** Wait for operations to complete** before starting new ones
101
101
102
102
### Best practices to prevent conflicts
103
103
@@ -144,9 +144,9 @@ GET https://management.azure.com/subscriptions/{subscriptionId}/providers/Micros
144
144
145
145
#### 4. ** Handle idempotent requests correctly**
146
146
The system supports idempotent create requests:
147
- - ? ** Same name + same configuration** = Returns existing resource (success)
148
- - ? ** Same name + different configuration** = Returns 400 Bad Request
149
- - ? ** Different name** = Returns 409 Conflict
147
+ - ** Same name + same configuration** = Returns existing resource (success)
148
+ - ** Same name + different configuration** = Returns 400 Bad Request
149
+ - ** Different name** = Returns 409 Conflict
150
150
151
151
### Configuration update limitations
152
152
0 commit comments