Skip to content

Commit a14d9c4

Browse files
Add changes
1 parent dce60f0 commit a14d9c4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pnap_network_api/docs/NetworkMembership.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Resource details linked to the Network.
77
Name | Type | Description | Notes
88
------------ | ------------- | ------------- | -------------
99
**resource_id** | **str** | The resource identifier. |
10-
**resource_type** | **str** | The resource's type. |
10+
**resource_type** | **str** | The resource's type. Can have one of the following values: `server`, `storage` or `virtual`. |
1111
**ips** | **List[str]** | List of IPs associated to the resource. |
1212

1313
## Example

pnap_network_api/pnap_network_api/models/network_membership.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class NetworkMembership(BaseModel):
3232
Resource details linked to the Network.
3333
""" # noqa: E501
3434
resource_id: StrictStr = Field(description="The resource identifier.", alias="resourceId")
35-
resource_type: StrictStr = Field(description="The resource's type.", alias="resourceType")
35+
resource_type: StrictStr = Field(description="The resource's type. Can have one of the following values: `server`, `storage` or `virtual`.", alias="resourceType")
3636
ips: List[StrictStr] = Field(description="List of IPs associated to the resource.")
3737
additional_properties: Dict[str, Any] = {}
3838
__properties: ClassVar[List[str]] = ["resourceId", "resourceType", "ips"]

specs/pnap_network_api.spec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1383,7 +1383,7 @@ components:
13831383
type: string
13841384
example: 603f3e995c18d515cda9c4f8
13851385
resourceType:
1386-
description: The resource's type.
1386+
description: 'The resource''s type. Can have one of the following values: `server`, `storage` or `virtual`.'
13871387
type: string
13881388
example: server
13891389
ips:

0 commit comments

Comments
 (0)