Skip to content

Commit

Permalink
Fix PR break
Browse files Browse the repository at this point in the history
  • Loading branch information
allenjzhang committed Jun 12, 2024
1 parent 28a1716 commit 2d69e58
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
12 changes: 6 additions & 6 deletions docs/libraries/azure-core/reference/data-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -348,12 +348,12 @@ model Azure.Core.ResourceOperationStatus<Resource, StatusResult, StatusError>

#### Properties

| Name | Type | Description |
| ------- | ------------------------------------------------------------------------- | -------------------------------------------------------------- |
| id | `string` | The unique ID of the operation. |
| status | [`OperationState`](./data-types.md#Azure.Core.Foundations.OperationState) | The status of the operation |
| error? | `StatusError` | Error object that describes the error when status is "Failed". |
| result? | `StatusResult` | The result of the operation. |
| Name | Type | Description |
| ------- | ------------------------------------------------------------------------- | ----------- |
| id | `string` | |
| status | [`OperationState`](./data-types.md#Azure.Core.Foundations.OperationState) | |
| error? | `StatusError` | |
| result? | `StatusResult` | |

### `ResponseProperty` {#Azure.Core.ResponseProperty}

Expand Down
4 changes: 2 additions & 2 deletions docs/libraries/azure-core/reference/interfaces.md
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ op Azure.Core.ResourceOperations.LongRunningResourceCollectionAction(apiVersion:
Resource operation status operation template.

```typespec
op Azure.Core.ResourceOperations.GetResourceOperationStatus(apiVersion: string, operationId: string): Azure.Core.ResourceOperationStatus<Resource, StatusResult, StatusError> | ErrorResponse
op Azure.Core.ResourceOperations.GetResourceOperationStatus(apiVersion: string): Azure.Core.ResourceOperationStatus<Resource, StatusResult, StatusError> | ErrorResponse
```

##### Template Parameters
Expand All @@ -280,7 +280,7 @@ op Azure.Core.ResourceOperations.GetResourceOperationStatus(apiVersion: string,
Operation signature to retrieve a resource operation status.

```typespec
op Azure.Core.GetResourceOperationStatus(apiVersion: string, operationId: string): Azure.Core.ResourceOperationStatus<Resource, StatusResult, StatusError> | Azure.Core.Foundations.ErrorResponse
op Azure.Core.GetResourceOperationStatus(apiVersion: string): Azure.Core.ResourceOperationStatus<Resource, StatusResult, StatusError> | Azure.Core.Foundations.ErrorResponse
```

#### Template Parameters
Expand Down
26 changes: 13 additions & 13 deletions docs/libraries/azure-resource-manager/reference/data-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -338,10 +338,10 @@ model Azure.ResourceManager.ArmResourceUpdatedResponse<Resource>

#### Properties

| Name | Type | Description |
| ---------- | ---------- | --------------------------------------------------- |
| statusCode | `200` | The status code. |
| body | `Resource` | The body type of the operation request or response. |
| Name | Type | Description |
| ---------- | ---------- | ---------------- |
| statusCode | `200` | The status code. |
| body | `Resource` | |

### `ArmResponse` {#Azure.ResourceManager.ArmResponse}

Expand Down Expand Up @@ -723,10 +723,10 @@ model Azure.ResourceManager.ResourceListResult<Resource>

#### Properties

| Name | Type | Description |
| --------- | -------------------------------- | ---------------------------------- |
| value | `Array<Element>` | The {name} items on this page |
| nextLink? | `TypeSpec.Rest.ResourceLocation` | The link to the next page of items |
| Name | Type | Description |
| --------- | -------------------------------- | ----------- |
| value | `Array<Element>` | |
| nextLink? | `TypeSpec.Rest.ResourceLocation` | |

### `ResourceNameParameter` {#Azure.ResourceManager.ResourceNameParameter}

Expand Down Expand Up @@ -1918,7 +1918,7 @@ model Azure.ResourceManager.Foundations.ExtensionScope<Resource>
| ----------- | -------------------------------- | ---------------------------------------------------------------------- |
| apiVersion | `string` | The API version to use for this operation. |
| resourceUri | `string` | The fully qualified Azure Resource manager identifier of the resource. |
| provider | `"Microsoft.ThisWillBeReplaced"` | The provider namespace for the resource. |
| provider | `"Microsoft.ThisWillBeReplaced"` | |

### `LocationBaseParameters` {#Azure.ResourceManager.Foundations.LocationBaseParameters}

Expand Down Expand Up @@ -1957,7 +1957,7 @@ model Azure.ResourceManager.Foundations.LocationScope<Resource>
| apiVersion | `string` | The API version to use for this operation. |
| subscriptionId | `Core.uuid` | The ID of the target subscription. The value must be an UUID. |
| location | `string` | The location name. |
| provider | `"Microsoft.ThisWillBeReplaced"` | The provider namespace for the resource. |
| provider | `"Microsoft.ThisWillBeReplaced"` | |

### `ProxyResourceUpdateModel` {#Azure.ResourceManager.Foundations.ProxyResourceUpdateModel}

Expand Down Expand Up @@ -2019,7 +2019,7 @@ model Azure.ResourceManager.Foundations.ResourceGroupScope<Resource>
| location | `string` | The location name. |
| resourceGroupName | `string` | The name of the resource group. The name is case insensitive. |
| resourceUri | `string` | The fully qualified Azure Resource manager identifier of the resource. |
| provider | `"Microsoft.ThisWillBeReplaced"` | The provider namespace for the resource. |
| provider | `"Microsoft.ThisWillBeReplaced"` | |

### `ResourceUpdateModel` {#Azure.ResourceManager.Foundations.ResourceUpdateModel}

Expand Down Expand Up @@ -2098,7 +2098,7 @@ model Azure.ResourceManager.Foundations.SubscriptionScope<Resource>
| -------------- | -------------------------------- | ------------------------------------------------------------- |
| apiVersion | `string` | The API version to use for this operation. |
| subscriptionId | `Core.uuid` | The ID of the target subscription. The value must be an UUID. |
| provider | `"Microsoft.ThisWillBeReplaced"` | The provider namespace for the resource. |
| provider | `"Microsoft.ThisWillBeReplaced"` | |

### `TagsUpdateModel` {#Azure.ResourceManager.Foundations.TagsUpdateModel}

Expand Down Expand Up @@ -2153,4 +2153,4 @@ model Azure.ResourceManager.Foundations.TenantScope<Resource>
| Name | Type | Description |
| ---------- | -------------------------------- | ------------------------------------------ |
| apiVersion | `string` | The API version to use for this operation. |
| provider | `"Microsoft.ThisWillBeReplaced"` | The provider namespace for the resource. |
| provider | `"Microsoft.ThisWillBeReplaced"` | |

0 comments on commit 2d69e58

Please sign in to comment.