components: schemas: RedfishError: description: The error payload from a Redfish service. properties: error: description: The properties that describe an error from a Redfish service. properties: '@Message.ExtendedInfo': description: An array of messages describing one or more error messages. items: $ref: http://redfish.dmtf.org/schemas/v1/Message.v1_2_0.yaml#/components/schemas/Message_v1_2_0_Message type: array x-longDescription: This property shall be an array of message objects describing one or more error messages. code: description: A string indicating a specific MessageId from a message registry. readOnly: true type: string x-longDescription: This property shall contain a string indicating a specific MessageId from a message registry. message: description: A human-readable error message corresponding to the message in a message registry. readOnly: true type: string x-longDescription: This property shall contain a human-readable error message corresponding to the message in a message registry. required: - code - message type: object x-longDescription: The Redfish Specification-described type shall contain properties that describe an error from a Redfish service. required: - error type: object x-longDescription: The Redfish Specification-described type shall contain an error payload from a Redfish service. info: contact: name: DMTF url: https://www.dmtf.org/standards/redfish description: This contains the definition of a Redfish service. title: Redfish version: '2023.3' x-copyright: Copyright 2023 DMTF. For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright openapi: 3.0.1 paths: /redfish/v1: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ServiceRoot.v1_16_1.yaml#/components/schemas/ServiceRoot_v1_16_1_ServiceRoot description: The response contains a representation of the ServiceRoot resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ServiceRoot.v1_16_1.yaml#/components/schemas/ServiceRoot_v1_16_1_ServiceRoot description: The response contains a representation of the ServiceRoot resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/$metadata: get: responses: '200': content: application/xml: {} description: OData $metadata. default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AccountService.v1_15_0.yaml#/components/schemas/AccountService_v1_15_0_AccountService description: The response contains a representation of the AccountService resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AccountService.v1_15_0.yaml#/components/schemas/AccountService_v1_15_0_AccountService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AccountService.v1_15_0.yaml#/components/schemas/AccountService_v1_15_0_AccountService description: The response contains a representation of the AccountService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AccountService.v1_15_0.yaml#/components/schemas/AccountService_v1_15_0_AccountService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AccountService.v1_15_0.yaml#/components/schemas/AccountService_v1_15_0_AccountService description: The response contains a representation of the AccountService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/Accounts: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ManagerAccountCollection.yaml#/components/schemas/ManagerAccountCollection_ManagerAccountCollection description: The response contains a representation of the ManagerAccountCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ManagerAccount.v1_12_0.yaml#/components/schemas/ManagerAccount_v1_12_0_ManagerAccount required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ManagerAccount.v1_12_0.yaml#/components/schemas/ManagerAccount_v1_12_0_ManagerAccount description: A resource of type ManagerAccount has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/Accounts/{ManagerAccountId}: delete: parameters: - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ManagerAccount.v1_12_0.yaml#/components/schemas/ManagerAccount_v1_12_0_ManagerAccount description: The response contains a representation of the ManagerAccount resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ManagerAccount.v1_12_0.yaml#/components/schemas/ManagerAccount_v1_12_0_ManagerAccount description: The response contains a representation of the ManagerAccount resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ManagerAccount.v1_12_0.yaml#/components/schemas/ManagerAccount_v1_12_0_ManagerAccount required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ManagerAccount.v1_12_0.yaml#/components/schemas/ManagerAccount_v1_12_0_ManagerAccount description: The response contains a representation of the ManagerAccount resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ManagerAccount.v1_12_0.yaml#/components/schemas/ManagerAccount_v1_12_0_ManagerAccount required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ManagerAccount.v1_12_0.yaml#/components/schemas/ManagerAccount_v1_12_0_ManagerAccount description: The response contains a representation of the ManagerAccount resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/Accounts/{ManagerAccountId}/Actions/ManagerAccount.ChangePassword: post: parameters: - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ManagerAccount.v1_12_0.yaml#/components/schemas/ManagerAccount_v1_12_0_ChangePasswordRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangePassword action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangePassword action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/Accounts/{ManagerAccountId}/Certificates: get: parameters: - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/Accounts/{ManagerAccountId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/Accounts/{ManagerAccountId}/Certificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/Accounts/{ManagerAccountId}/Certificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/Accounts/{ManagerAccountId}/Keys: get: parameters: - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/KeyCollection.yaml#/components/schemas/KeyCollection_KeyCollection description: The response contains a representation of the KeyCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: A resource of type Key has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/Accounts/{ManagerAccountId}/Keys/{KeyId}: delete: parameters: - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string - description: The value of the Id property of the Key resource in: path name: KeyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string - description: The value of the Id property of the Key resource in: path name: KeyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string - description: The value of the Id property of the Key resource in: path name: KeyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string - description: The value of the Id property of the Key resource in: path name: KeyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/ActiveDirectory/Certificates: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/ActiveDirectory/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/ActiveDirectory/Certificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/ActiveDirectory/Certificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/ExternalAccountProviders: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ExternalAccountProviderCollection.yaml#/components/schemas/ExternalAccountProviderCollection_ExternalAccountProviderCollection description: The response contains a representation of the ExternalAccountProviderCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ExternalAccountProvider.v1_7_1.yaml#/components/schemas/ExternalAccountProvider_v1_7_1_ExternalAccountProvider required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ExternalAccountProvider.v1_7_1.yaml#/components/schemas/ExternalAccountProvider_v1_7_1_ExternalAccountProvider description: A resource of type ExternalAccountProvider has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/ExternalAccountProviders/{ExternalAccountProviderId}: delete: parameters: - description: The value of the Id property of the ExternalAccountProvider resource in: path name: ExternalAccountProviderId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ExternalAccountProvider.v1_7_1.yaml#/components/schemas/ExternalAccountProvider_v1_7_1_ExternalAccountProvider description: The response contains a representation of the ExternalAccountProvider resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ExternalAccountProvider resource in: path name: ExternalAccountProviderId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ExternalAccountProvider.v1_7_1.yaml#/components/schemas/ExternalAccountProvider_v1_7_1_ExternalAccountProvider description: The response contains a representation of the ExternalAccountProvider resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ExternalAccountProvider resource in: path name: ExternalAccountProviderId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ExternalAccountProvider.v1_7_1.yaml#/components/schemas/ExternalAccountProvider_v1_7_1_ExternalAccountProvider required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ExternalAccountProvider.v1_7_1.yaml#/components/schemas/ExternalAccountProvider_v1_7_1_ExternalAccountProvider description: The response contains a representation of the ExternalAccountProvider resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ExternalAccountProvider resource in: path name: ExternalAccountProviderId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ExternalAccountProvider.v1_7_1.yaml#/components/schemas/ExternalAccountProvider_v1_7_1_ExternalAccountProvider required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ExternalAccountProvider.v1_7_1.yaml#/components/schemas/ExternalAccountProvider_v1_7_1_ExternalAccountProvider description: The response contains a representation of the ExternalAccountProvider resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/ExternalAccountProviders/{ExternalAccountProviderId}/Certificates: get: parameters: - description: The value of the Id property of the ExternalAccountProvider resource in: path name: ExternalAccountProviderId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ExternalAccountProvider resource in: path name: ExternalAccountProviderId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/ExternalAccountProviders/{ExternalAccountProviderId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the ExternalAccountProvider resource in: path name: ExternalAccountProviderId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ExternalAccountProvider resource in: path name: ExternalAccountProviderId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ExternalAccountProvider resource in: path name: ExternalAccountProviderId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ExternalAccountProvider resource in: path name: ExternalAccountProviderId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/AccountService/ExternalAccountProviders/{ExternalAccountProviderId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ExternalAccountProvider resource in: path name: ExternalAccountProviderId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/AccountService/ExternalAccountProviders/{ExternalAccountProviderId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ExternalAccountProvider resource in: path name: ExternalAccountProviderId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/LDAP/Certificates: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/LDAP/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/LDAP/Certificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/LDAP/Certificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/MultiFactorAuth/ClientCertificate/Certificates: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/MultiFactorAuth/ClientCertificate/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/MultiFactorAuth/ClientCertificate/Certificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/MultiFactorAuth/ClientCertificate/Certificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/MultiFactorAuth/SecurID/Certificates: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/MultiFactorAuth/SecurID/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/MultiFactorAuth/SecurID/Certificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/MultiFactorAuth/SecurID/Certificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/OutboundConnections: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutboundConnectionCollection.yaml#/components/schemas/OutboundConnectionCollection_OutboundConnectionCollection description: The response contains a representation of the OutboundConnectionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutboundConnection.v1_0_1.yaml#/components/schemas/OutboundConnection_v1_0_1_OutboundConnection required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutboundConnection.v1_0_1.yaml#/components/schemas/OutboundConnection_v1_0_1_OutboundConnection description: A resource of type OutboundConnection has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/OutboundConnections/{OutboundConnectionId}: delete: parameters: - description: The value of the Id property of the OutboundConnection resource in: path name: OutboundConnectionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutboundConnection.v1_0_1.yaml#/components/schemas/OutboundConnection_v1_0_1_OutboundConnection description: The response contains a representation of the OutboundConnection resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the OutboundConnection resource in: path name: OutboundConnectionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutboundConnection.v1_0_1.yaml#/components/schemas/OutboundConnection_v1_0_1_OutboundConnection description: The response contains a representation of the OutboundConnection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the OutboundConnection resource in: path name: OutboundConnectionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutboundConnection.v1_0_1.yaml#/components/schemas/OutboundConnection_v1_0_1_OutboundConnection required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutboundConnection.v1_0_1.yaml#/components/schemas/OutboundConnection_v1_0_1_OutboundConnection description: The response contains a representation of the OutboundConnection resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the OutboundConnection resource in: path name: OutboundConnectionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutboundConnection.v1_0_1.yaml#/components/schemas/OutboundConnection_v1_0_1_OutboundConnection required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutboundConnection.v1_0_1.yaml#/components/schemas/OutboundConnection_v1_0_1_OutboundConnection description: The response contains a representation of the OutboundConnection resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/OutboundConnections/{OutboundConnectionId}/Certificates: get: parameters: - description: The value of the Id property of the OutboundConnection resource in: path name: OutboundConnectionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the OutboundConnection resource in: path name: OutboundConnectionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/OutboundConnections/{OutboundConnectionId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the OutboundConnection resource in: path name: OutboundConnectionId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the OutboundConnection resource in: path name: OutboundConnectionId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the OutboundConnection resource in: path name: OutboundConnectionId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the OutboundConnection resource in: path name: OutboundConnectionId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/AccountService/OutboundConnections/{OutboundConnectionId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the OutboundConnection resource in: path name: OutboundConnectionId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/AccountService/OutboundConnections/{OutboundConnectionId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the OutboundConnection resource in: path name: OutboundConnectionId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/OutboundConnections/{OutboundConnectionId}/ClientCertificates: get: parameters: - description: The value of the Id property of the OutboundConnection resource in: path name: OutboundConnectionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the OutboundConnection resource in: path name: OutboundConnectionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/OutboundConnections/{OutboundConnectionId}/ClientCertificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the OutboundConnection resource in: path name: OutboundConnectionId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the OutboundConnection resource in: path name: OutboundConnectionId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the OutboundConnection resource in: path name: OutboundConnectionId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the OutboundConnection resource in: path name: OutboundConnectionId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/AccountService/OutboundConnections/{OutboundConnectionId}/ClientCertificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the OutboundConnection resource in: path name: OutboundConnectionId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/AccountService/OutboundConnections/{OutboundConnectionId}/ClientCertificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the OutboundConnection resource in: path name: OutboundConnectionId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/Roles: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RoleCollection.yaml#/components/schemas/RoleCollection_RoleCollection description: The response contains a representation of the RoleCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Role.v1_3_1.yaml#/components/schemas/Role_v1_3_1_Role required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Role.v1_3_1.yaml#/components/schemas/Role_v1_3_1_Role description: A resource of type Role has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AccountService/Roles/{RoleId}: delete: parameters: - description: The value of the Id property of the Role resource in: path name: RoleId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Role.v1_3_1.yaml#/components/schemas/Role_v1_3_1_Role description: The response contains a representation of the Role resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Role resource in: path name: RoleId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Role.v1_3_1.yaml#/components/schemas/Role_v1_3_1_Role description: The response contains a representation of the Role resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Role resource in: path name: RoleId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Role.v1_3_1.yaml#/components/schemas/Role_v1_3_1_Role required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Role.v1_3_1.yaml#/components/schemas/Role_v1_3_1_Role description: The response contains a representation of the Role resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Role resource in: path name: RoleId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Role.v1_3_1.yaml#/components/schemas/Role_v1_3_1_Role required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Role.v1_3_1.yaml#/components/schemas/Role_v1_3_1_Role description: The response contains a representation of the Role resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AggregationService: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AggregationService.v1_0_2.yaml#/components/schemas/AggregationService_v1_0_2_AggregationService description: The response contains a representation of the AggregationService resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AggregationService.v1_0_2.yaml#/components/schemas/AggregationService_v1_0_2_AggregationService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AggregationService.v1_0_2.yaml#/components/schemas/AggregationService_v1_0_2_AggregationService description: The response contains a representation of the AggregationService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AggregationService.v1_0_2.yaml#/components/schemas/AggregationService_v1_0_2_AggregationService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AggregationService.v1_0_2.yaml#/components/schemas/AggregationService_v1_0_2_AggregationService description: The response contains a representation of the AggregationService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AggregationService/Actions/AggregationService.Reset: post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AggregationService.v1_0_2.yaml#/components/schemas/AggregationService_v1_0_2_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AggregationService/Actions/AggregationService.SetDefaultBootOrder: post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AggregationService.v1_0_2.yaml#/components/schemas/AggregationService_v1_0_2_SetDefaultBootOrderRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetDefaultBootOrder action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetDefaultBootOrder action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AggregationService/Aggregates: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AggregateCollection.yaml#/components/schemas/AggregateCollection_AggregateCollection description: The response contains a representation of the AggregateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Aggregate.v1_0_2.yaml#/components/schemas/Aggregate_v1_0_2_Aggregate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Aggregate.v1_0_2.yaml#/components/schemas/Aggregate_v1_0_2_Aggregate description: A resource of type Aggregate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AggregationService/Aggregates/{AggregateId}: delete: parameters: - description: The value of the Id property of the Aggregate resource in: path name: AggregateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Aggregate.v1_0_2.yaml#/components/schemas/Aggregate_v1_0_2_Aggregate description: The response contains a representation of the Aggregate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Aggregate resource in: path name: AggregateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Aggregate.v1_0_2.yaml#/components/schemas/Aggregate_v1_0_2_Aggregate description: The response contains a representation of the Aggregate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AggregationService/Aggregates/{AggregateId}/Actions/Aggregate.AddElements: post: parameters: - description: The value of the Id property of the Aggregate resource in: path name: AggregateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Aggregate.v1_0_2.yaml#/components/schemas/Aggregate_v1_0_2_AddElementsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AddElements action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AddElements action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AggregationService/Aggregates/{AggregateId}/Actions/Aggregate.RemoveElements: post: parameters: - description: The value of the Id property of the Aggregate resource in: path name: AggregateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Aggregate.v1_0_2.yaml#/components/schemas/Aggregate_v1_0_2_RemoveElementsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveElements action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveElements action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AggregationService/Aggregates/{AggregateId}/Actions/Aggregate.Reset: post: parameters: - description: The value of the Id property of the Aggregate resource in: path name: AggregateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Aggregate.v1_0_2.yaml#/components/schemas/Aggregate_v1_0_2_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AggregationService/Aggregates/{AggregateId}/Actions/Aggregate.SetDefaultBootOrder: post: parameters: - description: The value of the Id property of the Aggregate resource in: path name: AggregateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Aggregate.v1_0_2.yaml#/components/schemas/Aggregate_v1_0_2_SetDefaultBootOrderRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetDefaultBootOrder action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetDefaultBootOrder action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AggregationService/AggregationSources: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AggregationSourceCollection.yaml#/components/schemas/AggregationSourceCollection_AggregationSourceCollection description: The response contains a representation of the AggregationSourceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AggregationSource.v1_4_0.yaml#/components/schemas/AggregationSource_v1_4_0_AggregationSource required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AggregationSource.v1_4_0.yaml#/components/schemas/AggregationSource_v1_4_0_AggregationSource description: A resource of type AggregationSource has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AggregationService/AggregationSources/{AggregationSourceId}: delete: parameters: - description: The value of the Id property of the AggregationSource resource in: path name: AggregationSourceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AggregationSource.v1_4_0.yaml#/components/schemas/AggregationSource_v1_4_0_AggregationSource description: The response contains a representation of the AggregationSource resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the AggregationSource resource in: path name: AggregationSourceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AggregationSource.v1_4_0.yaml#/components/schemas/AggregationSource_v1_4_0_AggregationSource description: The response contains a representation of the AggregationSource resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the AggregationSource resource in: path name: AggregationSourceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AggregationSource.v1_4_0.yaml#/components/schemas/AggregationSource_v1_4_0_AggregationSource required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AggregationSource.v1_4_0.yaml#/components/schemas/AggregationSource_v1_4_0_AggregationSource description: The response contains a representation of the AggregationSource resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the AggregationSource resource in: path name: AggregationSourceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AggregationSource.v1_4_0.yaml#/components/schemas/AggregationSource_v1_4_0_AggregationSource required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AggregationSource.v1_4_0.yaml#/components/schemas/AggregationSource_v1_4_0_AggregationSource description: The response contains a representation of the AggregationSource resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/AggregationService/AggregationSources/{AggregationSourceId}/Actions/AggregationSource.GenerateSSHIdentityKeyPair : post: parameters: - description: The value of the Id property of the AggregationSource resource in: path name: AggregationSourceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AggregationSource.v1_4_0.yaml#/components/schemas/AggregationSource_v1_4_0_GenerateSSHIdentityKeyPairRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the GenerateSSHIdentityKeyPair action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the GenerateSSHIdentityKeyPair action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AggregationService/AggregationSources/{AggregationSourceId}/Actions/AggregationSource.RemoveSSHIdentityKeyPair: post: parameters: - description: The value of the Id property of the AggregationSource resource in: path name: AggregationSourceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AggregationSource.v1_4_0.yaml#/components/schemas/AggregationSource_v1_4_0_RemoveSSHIdentityKeyPairRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveSSHIdentityKeyPair action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveSSHIdentityKeyPair action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AggregationService/AggregationSources/{AggregationSourceId}/PresentedPublicHostKey: delete: parameters: - description: The value of the Id property of the AggregationSource resource in: path name: AggregationSourceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the AggregationSource resource in: path name: AggregationSourceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the AggregationSource resource in: path name: AggregationSourceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the AggregationSource resource in: path name: AggregationSourceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AggregationService/AggregationSources/{AggregationSourceId}/PublicIdentityKey: delete: parameters: - description: The value of the Id property of the AggregationSource resource in: path name: AggregationSourceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the AggregationSource resource in: path name: AggregationSourceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the AggregationSource resource in: path name: AggregationSourceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the AggregationSource resource in: path name: AggregationSourceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AggregationService/AggregationSources/{AggregationSourceId}/TrustedPublicHostKeys: get: parameters: - description: The value of the Id property of the AggregationSource resource in: path name: AggregationSourceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/KeyCollection.yaml#/components/schemas/KeyCollection_KeyCollection description: The response contains a representation of the KeyCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the AggregationSource resource in: path name: AggregationSourceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: A resource of type Key has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AggregationService/AggregationSources/{AggregationSourceId}/TrustedPublicHostKeys/{KeyId}: delete: parameters: - description: The value of the Id property of the AggregationSource resource in: path name: AggregationSourceId required: true schema: type: string - description: The value of the Id property of the Key resource in: path name: KeyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the AggregationSource resource in: path name: AggregationSourceId required: true schema: type: string - description: The value of the Id property of the Key resource in: path name: KeyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the AggregationSource resource in: path name: AggregationSourceId required: true schema: type: string - description: The value of the Id property of the Key resource in: path name: KeyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the AggregationSource resource in: path name: AggregationSourceId required: true schema: type: string - description: The value of the Id property of the Key resource in: path name: KeyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AggregationService/ConnectionMethods: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ConnectionMethodCollection.yaml#/components/schemas/ConnectionMethodCollection_ConnectionMethodCollection description: The response contains a representation of the ConnectionMethodCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ConnectionMethod.v1_1_0.yaml#/components/schemas/ConnectionMethod_v1_1_0_ConnectionMethod required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ConnectionMethod.v1_1_0.yaml#/components/schemas/ConnectionMethod_v1_1_0_ConnectionMethod description: A resource of type ConnectionMethod has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/AggregationService/ConnectionMethods/{ConnectionMethodId}: get: parameters: - description: The value of the Id property of the ConnectionMethod resource in: path name: ConnectionMethodId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ConnectionMethod.v1_1_0.yaml#/components/schemas/ConnectionMethod_v1_1_0_ConnectionMethod description: The response contains a representation of the ConnectionMethod resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Cables: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CableCollection.yaml#/components/schemas/CableCollection_CableCollection description: The response contains a representation of the CableCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Cable.v1_2_2.yaml#/components/schemas/Cable_v1_2_2_Cable required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Cable.v1_2_2.yaml#/components/schemas/Cable_v1_2_2_Cable description: A resource of type Cable has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Cables/{CableId}: delete: parameters: - description: The value of the Id property of the Cable resource in: path name: CableId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Cable.v1_2_2.yaml#/components/schemas/Cable_v1_2_2_Cable description: The response contains a representation of the Cable resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Cable resource in: path name: CableId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Cable.v1_2_2.yaml#/components/schemas/Cable_v1_2_2_Cable description: The response contains a representation of the Cable resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Cable resource in: path name: CableId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Cable.v1_2_2.yaml#/components/schemas/Cable_v1_2_2_Cable required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Cable.v1_2_2.yaml#/components/schemas/Cable_v1_2_2_Cable description: The response contains a representation of the Cable resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Cable resource in: path name: CableId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Cable.v1_2_2.yaml#/components/schemas/Cable_v1_2_2_Cable required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Cable.v1_2_2.yaml#/components/schemas/Cable_v1_2_2_Cable description: The response contains a representation of the Cable resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CertificateService: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateService.v1_0_4.yaml#/components/schemas/CertificateService_v1_0_4_CertificateService description: The response contains a representation of the CertificateService resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CertificateService/Actions/CertificateService.GenerateCSR: post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateService.v1_0_4.yaml#/components/schemas/CertificateService_v1_0_4_GenerateCSRRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateService.v1_0_4.yaml#/components/schemas/CertificateService_v1_0_4_GenerateCSRResponse description: The response contains the results of the GenerateCSR action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateService.v1_0_4.yaml#/components/schemas/CertificateService_v1_0_4_GenerateCSRResponse description: The response contains the results of the GenerateCSR action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CertificateService/Actions/CertificateService.ReplaceCertificate: post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateService.v1_0_4.yaml#/components/schemas/CertificateService_v1_0_4_ReplaceCertificateRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReplaceCertificate action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReplaceCertificate action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CertificateService/CertificateLocations: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateLocations.v1_0_3.yaml#/components/schemas/CertificateLocations_v1_0_3_CertificateLocations description: The response contains a representation of the CertificateLocations resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ChassisCollection.yaml#/components/schemas/ChassisCollection_ChassisCollection description: The response contains a representation of the ChassisCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Chassis.v1_25_0.yaml#/components/schemas/Chassis_v1_25_0_Chassis required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Chassis.v1_25_0.yaml#/components/schemas/Chassis_v1_25_0_Chassis description: A resource of type Chassis has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}: delete: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Chassis.v1_25_0.yaml#/components/schemas/Chassis_v1_25_0_Chassis description: The response contains a representation of the Chassis resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Chassis.v1_25_0.yaml#/components/schemas/Chassis_v1_25_0_Chassis description: The response contains a representation of the Chassis resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Chassis.v1_25_0.yaml#/components/schemas/Chassis_v1_25_0_Chassis required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Chassis.v1_25_0.yaml#/components/schemas/Chassis_v1_25_0_Chassis description: The response contains a representation of the Chassis resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Chassis.v1_25_0.yaml#/components/schemas/Chassis_v1_25_0_Chassis required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Chassis.v1_25_0.yaml#/components/schemas/Chassis_v1_25_0_Chassis description: The response contains a representation of the Chassis resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Actions/Chassis.Reset: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Chassis.v1_25_0.yaml#/components/schemas/Chassis_v1_25_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Assembly: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Certificates: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Certificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Certificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Controls: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ControlCollection.yaml#/components/schemas/ControlCollection_ControlCollection description: The response contains a representation of the ControlCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Controls/{ControlId}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Control resource in: path name: ControlId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Control.v1_5_0.yaml#/components/schemas/Control_v1_5_0_Control description: The response contains a representation of the Control resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Control resource in: path name: ControlId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Control.v1_5_0.yaml#/components/schemas/Control_v1_5_0_Control required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Control.v1_5_0.yaml#/components/schemas/Control_v1_5_0_Control description: The response contains a representation of the Control resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Control resource in: path name: ControlId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Control.v1_5_0.yaml#/components/schemas/Control_v1_5_0_Control required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Control.v1_5_0.yaml#/components/schemas/Control_v1_5_0_Control description: The response contains a representation of the Control resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Controls/{ControlId}/Actions/Control.ResetToDefaults: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Control resource in: path name: ControlId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Control.v1_5_0.yaml#/components/schemas/Control_v1_5_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Drives: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/DriveCollection.yaml#/components/schemas/DriveCollection_DriveCollection description: The response contains a representation of the DriveCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Drives/{DriveId}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive description: The response contains a representation of the Drive resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive description: The response contains a representation of the Drive resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive description: The response contains a representation of the Drive resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Drives/{DriveId}/Actions/Drive.Reset: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Drives/{DriveId}/Actions/Drive.RevertToOriginalFactoryState: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_RevertToOriginalFactoryStateRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RevertToOriginalFactoryState action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RevertToOriginalFactoryState action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Drives/{DriveId}/Actions/Drive.SecureErase: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_SecureEraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecureErase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecureErase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Drives/{DriveId}/Assembly: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Drives/{DriveId}/Certificates: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Drives/{DriveId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Drives/{DriveId}/Certificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Drives/{DriveId}/Certificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Drives/{DriveId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Drives/{DriveId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Drives/{DriveId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Drives/{DriveId}/Metrics: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/DriveMetrics.v1_2_0.yaml#/components/schemas/DriveMetrics_v1_2_0_DriveMetrics description: The response contains a representation of the DriveMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FabricAdapterCollection.yaml#/components/schemas/FabricAdapterCollection_FabricAdapterCollection description: The response contains a representation of the FabricAdapterCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FabricAdapter.v1_5_2.yaml#/components/schemas/FabricAdapter_v1_5_2_FabricAdapter description: The response contains a representation of the FabricAdapter resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FabricAdapter.v1_5_2.yaml#/components/schemas/FabricAdapter_v1_5_2_FabricAdapter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FabricAdapter.v1_5_2.yaml#/components/schemas/FabricAdapter_v1_5_2_FabricAdapter description: The response contains a representation of the FabricAdapter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FabricAdapter.v1_5_2.yaml#/components/schemas/FabricAdapter_v1_5_2_FabricAdapter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FabricAdapter.v1_5_2.yaml#/components/schemas/FabricAdapter_v1_5_2_FabricAdapter description: The response contains a representation of the FabricAdapter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/GenZ/MSDT: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/GenZ/MSDT/{MSDTId}: delete: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/GenZ/REQ-VCAT: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntryCollection.yaml#/components/schemas/VCATEntryCollection_VCATEntryCollection description: The response contains a representation of the VCATEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: A resource of type VCATEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/GenZ/REQ-VCAT/{VCATEntryId}: delete: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/GenZ/RSP-VCAT: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntryCollection.yaml#/components/schemas/VCATEntryCollection_VCATEntryCollection description: The response contains a representation of the VCATEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: A resource of type VCATEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/GenZ/RSP-VCAT/{VCATEntryId}: delete: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/GenZ/SSDT: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/GenZ/SSDT/{SSDTId}: delete: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/MSDT: get: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/MSDT/{MSDTId}: delete: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/MSDT/{MSDTId}/RouteSet: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntryCollection.yaml#/components/schemas/RouteSetEntryCollection_RouteSetEntryCollection description: The response contains a representation of the RouteSetEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: A resource of type RouteSetEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/MSDT/{MSDTId}/RouteSet/{RouteId}: delete: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/Ports: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/Actions/Port.Reset: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/Actions/Port.ResetPPB: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/GenZ/LPRT: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/GenZ/LPRT/{LPRTId}: delete: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/GenZ/MPRT: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/GenZ/MPRT/{MPRTId}: delete: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/GenZ/VCAT: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntryCollection.yaml#/components/schemas/VCATEntryCollection_VCATEntryCollection description: The response contains a representation of the VCATEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: A resource of type VCATEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/GenZ/VCAT/{VCATEntryId}: delete: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/LPRT: get: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/LPRT/{LPRTId}: delete: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/LPRT/{LPRTId}/RouteSet: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntryCollection.yaml#/components/schemas/RouteSetEntryCollection_RouteSetEntryCollection description: The response contains a representation of the RouteSetEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: A resource of type RouteSetEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/LPRT/{LPRTId}/RouteSet/{RouteId}: delete: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/MPRT: get: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/MPRT/{MPRTId}: delete: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/MPRT/{MPRTId}/RouteSet: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntryCollection.yaml#/components/schemas/RouteSetEntryCollection_RouteSetEntryCollection description: The response contains a representation of the RouteSetEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: A resource of type RouteSetEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/MPRT/{MPRTId}/RouteSet/{RouteId}: delete: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/Metrics: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/VCAT: get: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntryCollection.yaml#/components/schemas/VCATEntryCollection_VCATEntryCollection description: The response contains a representation of the VCATEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: A resource of type VCATEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/VCAT/{VCATEntryId}: delete: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/REQ-VCAT: get: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntryCollection.yaml#/components/schemas/VCATEntryCollection_VCATEntryCollection description: The response contains a representation of the VCATEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: A resource of type VCATEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/REQ-VCAT/{VCATEntryId}: delete: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/RSP-VCAT: get: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntryCollection.yaml#/components/schemas/VCATEntryCollection_VCATEntryCollection description: The response contains a representation of the VCATEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: A resource of type VCATEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/RSP-VCAT/{VCATEntryId}: delete: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/SSDT: get: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/SSDT/{SSDTId}: delete: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/SSDT/{SSDTId}/RouteSet: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntryCollection.yaml#/components/schemas/RouteSetEntryCollection_RouteSetEntryCollection description: The response contains a representation of the RouteSetEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: A resource of type RouteSetEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/FabricAdapters/{FabricAdapterId}/SSDT/{SSDTId}/RouteSet/{RouteId}: delete: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/LogServices: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogServiceCollection.yaml#/components/schemas/LogServiceCollection_LogServiceCollection description: The response contains a representation of the LogServiceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/LogServices/{LogServiceId}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService description: The response contains a representation of the LogService resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService description: The response contains a representation of the LogService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService description: The response contains a representation of the LogService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/LogServices/{LogServiceId}/Actions/LogService.ClearLog: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_ClearLogRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearLog action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearLog action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/LogServices/{LogServiceId}/Actions/LogService.CollectDiagnosticData: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_CollectDiagnosticDataRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CollectDiagnosticData action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CollectDiagnosticData action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/LogServices/{LogServiceId}/Actions/LogService.PushDiagnosticData: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_PushDiagnosticDataRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PushDiagnosticData action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PushDiagnosticData action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/LogServices/{LogServiceId}/Entries: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntryCollection.yaml#/components/schemas/LogEntryCollection_LogEntryCollection description: The response contains a representation of the LogEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: A resource of type LogEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/LogServices/{LogServiceId}/Entries/{LogEntryId}: delete: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/MediaControllers: get: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MediaControllerCollection.yaml#/components/schemas/MediaControllerCollection_MediaControllerCollection description: The response contains a representation of the MediaControllerCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of the FabricAdapterCollection schema. x-versionDeprecated: '2022.1' /redfish/v1/Chassis/{ChassisId}/MediaControllers/{MediaControllerId}: get: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the MediaController resource in: path name: MediaControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MediaController.v1_3_1.yaml#/components/schemas/MediaController_v1_3_1_MediaController description: The response contains a representation of the MediaController resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of the FabricAdapter schema. x-versionDeprecated: v1_2_0 /redfish/v1/Chassis/{ChassisId}/MediaControllers/{MediaControllerId}/Actions/MediaController.Reset: post: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the MediaController resource in: path name: MediaControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MediaController.v1_3_1.yaml#/components/schemas/MediaController_v1_3_1_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of the FabricAdapter schema. x-versionDeprecated: v1_2_0 /redfish/v1/Chassis/{ChassisId}/MediaControllers/{MediaControllerId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the MediaController resource in: path name: MediaControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the MediaController resource in: path name: MediaControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the MediaController resource in: path name: MediaControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/MediaControllers/{MediaControllerId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the MediaController resource in: path name: MediaControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/MediaControllers/{MediaControllerId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the MediaController resource in: path name: MediaControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/MediaControllers/{MediaControllerId}/Ports: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the MediaController resource in: path name: MediaControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/MediaControllers/{MediaControllerId}/Ports/{PortId}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the MediaController resource in: path name: MediaControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the MediaController resource in: path name: MediaControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the MediaController resource in: path name: MediaControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/MediaControllers/{MediaControllerId}/Ports/{PortId}/Actions/Port.Reset: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the MediaController resource in: path name: MediaControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/MediaControllers/{MediaControllerId}/Ports/{PortId}/Actions/Port.ResetPPB: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the MediaController resource in: path name: MediaControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/MediaControllers/{MediaControllerId}/Ports/{PortId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the MediaController resource in: path name: MediaControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the MediaController resource in: path name: MediaControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the MediaController resource in: path name: MediaControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/MediaControllers/{MediaControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the MediaController resource in: path name: MediaControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/MediaControllers/{MediaControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the MediaController resource in: path name: MediaControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/MediaControllers/{MediaControllerId}/Ports/{PortId}/Metrics: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the MediaController resource in: path name: MediaControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Memory: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryCollection.yaml#/components/schemas/MemoryCollection_MemoryCollection description: The response contains a representation of the MemoryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Memory/{MemoryId}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory description: The response contains a representation of the Memory resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory description: The response contains a representation of the Memory resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory description: The response contains a representation of the Memory resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Memory/{MemoryId}/Actions/Memory.DisableMasterPassphrase: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_DisableMasterPassphraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the DisableMasterPassphrase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the DisableMasterPassphrase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Memory/{MemoryId}/Actions/Memory.DisablePassphrase: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_DisablePassphraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the DisablePassphrase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the DisablePassphrase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Memory/{MemoryId}/Actions/Memory.FreezeSecurityState: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_FreezeSecurityStateRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the FreezeSecurityState action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the FreezeSecurityState action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Memory/{MemoryId}/Actions/Memory.InjectPersistentPoison: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_InjectPersistentPoisonRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the InjectPersistentPoison action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the InjectPersistentPoison action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Memory/{MemoryId}/Actions/Memory.OverwriteUnit: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_OverwriteUnitRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the OverwriteUnit action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the OverwriteUnit action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Memory/{MemoryId}/Actions/Memory.Reset: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Memory/{MemoryId}/Actions/Memory.ResetToDefaults: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Memory/{MemoryId}/Actions/Memory.ScanMedia: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_ScanMediaRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ScanMedia action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ScanMedia action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Memory/{MemoryId}/Actions/Memory.SecureEraseUnit: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_SecureEraseUnitRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecureEraseUnit action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecureEraseUnit action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Memory/{MemoryId}/Actions/Memory.SetMasterPassphrase: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_SetMasterPassphraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetMasterPassphrase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetMasterPassphrase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Memory/{MemoryId}/Actions/Memory.SetPassphrase: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_SetPassphraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetPassphrase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetPassphrase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Memory/{MemoryId}/Actions/Memory.UnlockUnit: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_UnlockUnitRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the UnlockUnit action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the UnlockUnit action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Memory/{MemoryId}/Certificates: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Memory/{MemoryId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Memory/{MemoryId}/Certificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Memory/{MemoryId}/Certificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Memory/{MemoryId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Memory/{MemoryId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Memory/{MemoryId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Memory/{MemoryId}/MemoryMetrics: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryMetrics.v1_7_2.yaml#/components/schemas/MemoryMetrics_v1_7_2_MemoryMetrics description: The response contains a representation of the MemoryMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Memory/{MemoryId}/MemoryMetrics/Actions/MemoryMetrics.ClearCurrentPeriod: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryMetrics.v1_7_2.yaml#/components/schemas/MemoryMetrics_v1_7_2_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/MemoryDomains: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryDomainCollection.yaml#/components/schemas/MemoryDomainCollection_MemoryDomainCollection description: The response contains a representation of the MemoryDomainCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/MemoryDomains/{MemoryDomainId}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the MemoryDomain resource in: path name: MemoryDomainId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryDomain.v1_5_0.yaml#/components/schemas/MemoryDomain_v1_5_0_MemoryDomain description: The response contains a representation of the MemoryDomain resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/MemoryDomains/{MemoryDomainId}/MemoryChunks: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the MemoryDomain resource in: path name: MemoryDomainId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunksCollection.yaml#/components/schemas/MemoryChunksCollection_MemoryChunksCollection description: The response contains a representation of the MemoryChunksCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the MemoryDomain resource in: path name: MemoryDomainId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks description: A resource of type MemoryChunks has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/MemoryDomains/{MemoryDomainId}/MemoryChunks/{MemoryChunksId}: delete: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the MemoryDomain resource in: path name: MemoryDomainId required: true schema: type: string - description: The value of the Id property of the MemoryChunks resource in: path name: MemoryChunksId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks description: The response contains a representation of the MemoryChunks resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the MemoryDomain resource in: path name: MemoryDomainId required: true schema: type: string - description: The value of the Id property of the MemoryChunks resource in: path name: MemoryChunksId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks description: The response contains a representation of the MemoryChunks resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the MemoryDomain resource in: path name: MemoryDomainId required: true schema: type: string - description: The value of the Id property of the MemoryChunks resource in: path name: MemoryChunksId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks description: The response contains a representation of the MemoryChunks resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the MemoryDomain resource in: path name: MemoryDomainId required: true schema: type: string - description: The value of the Id property of the MemoryChunks resource in: path name: MemoryChunksId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks description: The response contains a representation of the MemoryChunks resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/NetworkAdapters: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkAdapterCollection.yaml#/components/schemas/NetworkAdapterCollection_NetworkAdapterCollection description: The response contains a representation of the NetworkAdapterCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkAdapter.v1_10_0.yaml#/components/schemas/NetworkAdapter_v1_10_0_NetworkAdapter description: The response contains a representation of the NetworkAdapter resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkAdapter.v1_10_0.yaml#/components/schemas/NetworkAdapter_v1_10_0_NetworkAdapter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkAdapter.v1_10_0.yaml#/components/schemas/NetworkAdapter_v1_10_0_NetworkAdapter description: The response contains a representation of the NetworkAdapter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkAdapter.v1_10_0.yaml#/components/schemas/NetworkAdapter_v1_10_0_NetworkAdapter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkAdapter.v1_10_0.yaml#/components/schemas/NetworkAdapter_v1_10_0_NetworkAdapter description: The response contains a representation of the NetworkAdapter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Actions/NetworkAdapter.ResetSettingsToDefault: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkAdapter.v1_10_0.yaml#/components/schemas/NetworkAdapter_v1_10_0_ResetSettingsToDefaultRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetSettingsToDefault action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetSettingsToDefault action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Assembly: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Certificates: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Certificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Certificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Metrics: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkAdapterMetrics.v1_0_1.yaml#/components/schemas/NetworkAdapterMetrics_v1_0_1_NetworkAdapterMetrics description: The response contains a representation of the NetworkAdapterMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/NetworkDeviceFunctions: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkDeviceFunctionCollection.yaml#/components/schemas/NetworkDeviceFunctionCollection_NetworkDeviceFunctionCollection description: The response contains a representation of the NetworkDeviceFunctionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/NetworkDeviceFunctions/{NetworkDeviceFunctionId}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkDeviceFunction.v1_9_1.yaml#/components/schemas/NetworkDeviceFunction_v1_9_1_NetworkDeviceFunction description: The response contains a representation of the NetworkDeviceFunction resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkDeviceFunction.v1_9_1.yaml#/components/schemas/NetworkDeviceFunction_v1_9_1_NetworkDeviceFunction required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkDeviceFunction.v1_9_1.yaml#/components/schemas/NetworkDeviceFunction_v1_9_1_NetworkDeviceFunction description: The response contains a representation of the NetworkDeviceFunction resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkDeviceFunction.v1_9_1.yaml#/components/schemas/NetworkDeviceFunction_v1_9_1_NetworkDeviceFunction required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkDeviceFunction.v1_9_1.yaml#/components/schemas/NetworkDeviceFunction_v1_9_1_NetworkDeviceFunction description: The response contains a representation of the NetworkDeviceFunction resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/NetworkDeviceFunctions/{NetworkDeviceFunctionId}/AllowDeny : get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDenyCollection.yaml#/components/schemas/AllowDenyCollection_AllowDenyCollection description: The response contains a representation of the AllowDenyCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: A resource of type AllowDeny has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/NetworkDeviceFunctions/{NetworkDeviceFunctionId}/AllowDeny/{AllowDenyId} : delete: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the AllowDeny resource in: path name: AllowDenyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: The response contains a representation of the AllowDeny resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the AllowDeny resource in: path name: AllowDenyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: The response contains a representation of the AllowDeny resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the AllowDeny resource in: path name: AllowDenyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: The response contains a representation of the AllowDeny resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the AllowDeny resource in: path name: AllowDenyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: The response contains a representation of the AllowDeny resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/NetworkDeviceFunctions/{NetworkDeviceFunctionId}/Ethernet/VLANs : get: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterfaceCollection.yaml#/components/schemas/VLanNetworkInterfaceCollection_VLanNetworkInterfaceCollection description: The response contains a representation of the VLanNetworkInterfaceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: A resource of type VLanNetworkInterface has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/NetworkDeviceFunctions/{NetworkDeviceFunctionId}/Ethernet/VLANs/{VLanNetworkInterfaceId} : delete: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the VLanNetworkInterface resource in: path name: VLanNetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: The response contains a representation of the VLanNetworkInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of using individual EthernetInterface resources to show VLAN information. x-versionDeprecated: v1_3_0 get: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the VLanNetworkInterface resource in: path name: VLanNetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: The response contains a representation of the VLanNetworkInterface resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of using individual EthernetInterface resources to show VLAN information. x-versionDeprecated: v1_3_0 patch: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the VLanNetworkInterface resource in: path name: VLanNetworkInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: The response contains a representation of the VLanNetworkInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of using individual EthernetInterface resources to show VLAN information. x-versionDeprecated: v1_3_0 put: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the VLanNetworkInterface resource in: path name: VLanNetworkInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: The response contains a representation of the VLanNetworkInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of using individual EthernetInterface resources to show VLAN information. x-versionDeprecated: v1_3_0 ? /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/NetworkDeviceFunctions/{NetworkDeviceFunctionId}/EthernetInterfaces : get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterfaceCollection.yaml#/components/schemas/EthernetInterfaceCollection_EthernetInterfaceCollection description: The response contains a representation of the EthernetInterfaceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: A resource of type EthernetInterface has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/NetworkDeviceFunctions/{NetworkDeviceFunctionId}/EthernetInterfaces/{EthernetInterfaceId} : delete: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/NetworkDeviceFunctions/{NetworkDeviceFunctionId}/Metrics : get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkDeviceFunctionMetrics.v1_1_2.yaml#/components/schemas/NetworkDeviceFunctionMetrics_v1_1_2_NetworkDeviceFunctionMetrics description: The response contains a representation of the NetworkDeviceFunctionMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/NetworkPorts: get: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkPortCollection.yaml#/components/schemas/NetworkPortCollection_NetworkPortCollection description: The response contains a representation of the NetworkPortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of the PortCollection schema. x-versionDeprecated: '2020.4' /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/NetworkPorts/{NetworkPortId}: get: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the NetworkPort resource in: path name: NetworkPortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkPort.v1_4_2.yaml#/components/schemas/NetworkPort_v1_4_2_NetworkPort description: The response contains a representation of the NetworkPort resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of the Port schema. x-versionDeprecated: v1_4_0 patch: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the NetworkPort resource in: path name: NetworkPortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkPort.v1_4_2.yaml#/components/schemas/NetworkPort_v1_4_2_NetworkPort required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkPort.v1_4_2.yaml#/components/schemas/NetworkPort_v1_4_2_NetworkPort description: The response contains a representation of the NetworkPort resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of the Port schema. x-versionDeprecated: v1_4_0 put: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the NetworkPort resource in: path name: NetworkPortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkPort.v1_4_2.yaml#/components/schemas/NetworkPort_v1_4_2_NetworkPort required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkPort.v1_4_2.yaml#/components/schemas/NetworkPort_v1_4_2_NetworkPort description: The response contains a representation of the NetworkPort resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of the Port schema. x-versionDeprecated: v1_4_0 /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Ports: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Ports/{PortId}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Ports/{PortId}/Actions/Port.Reset: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Ports/{PortId}/Actions/Port.ResetPPB: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Ports/{PortId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Ports/{PortId}/Metrics: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Processors: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorCollection.yaml#/components/schemas/ProcessorCollection_ProcessorCollection description: The response contains a representation of the ProcessorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Processors/{ProcessorId}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Processors/{ProcessorId}/Actions/Processor.Reset: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Processors/{ProcessorId}/Actions/Processor.ResetToDefaults : post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Processors/{ProcessorId}/Assembly: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Processors/{ProcessorId}/ProcessorMetrics: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ProcessorMetrics description: The response contains a representation of the ProcessorMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Processors/{ProcessorId}/ProcessorMetrics/Actions/ProcessorMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Processors/{ProcessorId}/SubProcessors: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorCollection.yaml#/components/schemas/ProcessorCollection_ProcessorCollection description: The response contains a representation of the ProcessorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/Actions/Processor.Reset : post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/Actions/Processor.ResetToDefaults : post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/Assembly : get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/ProcessorMetrics : get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ProcessorMetrics description: The response contains a representation of the ProcessorMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/ProcessorMetrics/Actions/ProcessorMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors : get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorCollection.yaml#/components/schemas/ProcessorCollection_ProcessorCollection description: The response contains a representation of the ProcessorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3} : get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/Actions/Processor.Reset : post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/Actions/Processor.ResetToDefaults : post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/Assembly : get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/ProcessorMetrics : get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ProcessorMetrics description: The response contains a representation of the ProcessorMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/ProcessorMetrics/Actions/ProcessorMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the NetworkAdapter resource in: path name: NetworkAdapterId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/PCIeDevices: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeDeviceCollection.yaml#/components/schemas/PCIeDeviceCollection_PCIeDeviceCollection description: The response contains a representation of the PCIeDeviceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/PCIeDevices/{PCIeDeviceId}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeDevice.v1_13_0.yaml#/components/schemas/PCIeDevice_v1_13_0_PCIeDevice description: The response contains a representation of the PCIeDevice resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeDevice.v1_13_0.yaml#/components/schemas/PCIeDevice_v1_13_0_PCIeDevice required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeDevice.v1_13_0.yaml#/components/schemas/PCIeDevice_v1_13_0_PCIeDevice description: The response contains a representation of the PCIeDevice resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeDevice.v1_13_0.yaml#/components/schemas/PCIeDevice_v1_13_0_PCIeDevice required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeDevice.v1_13_0.yaml#/components/schemas/PCIeDevice_v1_13_0_PCIeDevice description: The response contains a representation of the PCIeDevice resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/PCIeDevices/{PCIeDeviceId}/Assembly: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/PCIeDevices/{PCIeDeviceId}/CXLLogicalDevices: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CXLLogicalDeviceCollection.yaml#/components/schemas/CXLLogicalDeviceCollection_CXLLogicalDeviceCollection description: The response contains a representation of the CXLLogicalDeviceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/PCIeDevices/{PCIeDeviceId}/CXLLogicalDevices/{CXLLogicalDeviceId}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the CXLLogicalDevice resource in: path name: CXLLogicalDeviceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CXLLogicalDevice.v1_1_1.yaml#/components/schemas/CXLLogicalDevice_v1_1_1_CXLLogicalDevice description: The response contains a representation of the CXLLogicalDevice resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the CXLLogicalDevice resource in: path name: CXLLogicalDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CXLLogicalDevice.v1_1_1.yaml#/components/schemas/CXLLogicalDevice_v1_1_1_CXLLogicalDevice required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CXLLogicalDevice.v1_1_1.yaml#/components/schemas/CXLLogicalDevice_v1_1_1_CXLLogicalDevice description: The response contains a representation of the CXLLogicalDevice resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the CXLLogicalDevice resource in: path name: CXLLogicalDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CXLLogicalDevice.v1_1_1.yaml#/components/schemas/CXLLogicalDevice_v1_1_1_CXLLogicalDevice required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CXLLogicalDevice.v1_1_1.yaml#/components/schemas/CXLLogicalDevice_v1_1_1_CXLLogicalDevice description: The response contains a representation of the CXLLogicalDevice resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/PCIeDevices/{PCIeDeviceId}/CXLLogicalDevices/{CXLLogicalDeviceId}/DeviceLog: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the CXLLogicalDevice resource in: path name: CXLLogicalDeviceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService description: The response contains a representation of the LogService resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the CXLLogicalDevice resource in: path name: CXLLogicalDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService description: The response contains a representation of the LogService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the CXLLogicalDevice resource in: path name: CXLLogicalDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService description: The response contains a representation of the LogService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/PCIeDevices/{PCIeDeviceId}/CXLLogicalDevices/{CXLLogicalDeviceId}/DeviceLog/Actions/LogService.ClearLog : post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the CXLLogicalDevice resource in: path name: CXLLogicalDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_ClearLogRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearLog action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearLog action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/PCIeDevices/{PCIeDeviceId}/CXLLogicalDevices/{CXLLogicalDeviceId}/DeviceLog/Actions/LogService.CollectDiagnosticData : post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the CXLLogicalDevice resource in: path name: CXLLogicalDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_CollectDiagnosticDataRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CollectDiagnosticData action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CollectDiagnosticData action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/PCIeDevices/{PCIeDeviceId}/CXLLogicalDevices/{CXLLogicalDeviceId}/DeviceLog/Actions/LogService.PushDiagnosticData : post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the CXLLogicalDevice resource in: path name: CXLLogicalDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_PushDiagnosticDataRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PushDiagnosticData action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PushDiagnosticData action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/PCIeDevices/{PCIeDeviceId}/CXLLogicalDevices/{CXLLogicalDeviceId}/DeviceLog/Entries: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the CXLLogicalDevice resource in: path name: CXLLogicalDeviceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntryCollection.yaml#/components/schemas/LogEntryCollection_LogEntryCollection description: The response contains a representation of the LogEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the CXLLogicalDevice resource in: path name: CXLLogicalDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: A resource of type LogEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/PCIeDevices/{PCIeDeviceId}/CXLLogicalDevices/{CXLLogicalDeviceId}/DeviceLog/Entries/{LogEntryId} : delete: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the CXLLogicalDevice resource in: path name: CXLLogicalDeviceId required: true schema: type: string - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the CXLLogicalDevice resource in: path name: CXLLogicalDeviceId required: true schema: type: string - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the CXLLogicalDevice resource in: path name: CXLLogicalDeviceId required: true schema: type: string - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the CXLLogicalDevice resource in: path name: CXLLogicalDeviceId required: true schema: type: string - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/PCIeDevices/{PCIeDeviceId}/CXLLogicalDevices/{CXLLogicalDeviceId}/MemoryRegions: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the CXLLogicalDevice resource in: path name: CXLLogicalDeviceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryRegionCollection.yaml#/components/schemas/MemoryRegionCollection_MemoryRegionCollection description: The response contains a representation of the MemoryRegionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the CXLLogicalDevice resource in: path name: CXLLogicalDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryRegion.v1_0_1.yaml#/components/schemas/MemoryRegion_v1_0_1_MemoryRegion required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryRegion.v1_0_1.yaml#/components/schemas/MemoryRegion_v1_0_1_MemoryRegion description: A resource of type MemoryRegion has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/PCIeDevices/{PCIeDeviceId}/CXLLogicalDevices/{CXLLogicalDeviceId}/MemoryRegions/{MemoryRegionId} : delete: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the CXLLogicalDevice resource in: path name: CXLLogicalDeviceId required: true schema: type: string - description: The value of the Id property of the MemoryRegion resource in: path name: MemoryRegionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryRegion.v1_0_1.yaml#/components/schemas/MemoryRegion_v1_0_1_MemoryRegion description: The response contains a representation of the MemoryRegion resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the CXLLogicalDevice resource in: path name: CXLLogicalDeviceId required: true schema: type: string - description: The value of the Id property of the MemoryRegion resource in: path name: MemoryRegionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryRegion.v1_0_1.yaml#/components/schemas/MemoryRegion_v1_0_1_MemoryRegion description: The response contains a representation of the MemoryRegion resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the CXLLogicalDevice resource in: path name: CXLLogicalDeviceId required: true schema: type: string - description: The value of the Id property of the MemoryRegion resource in: path name: MemoryRegionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryRegion.v1_0_1.yaml#/components/schemas/MemoryRegion_v1_0_1_MemoryRegion required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryRegion.v1_0_1.yaml#/components/schemas/MemoryRegion_v1_0_1_MemoryRegion description: The response contains a representation of the MemoryRegion resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the CXLLogicalDevice resource in: path name: CXLLogicalDeviceId required: true schema: type: string - description: The value of the Id property of the MemoryRegion resource in: path name: MemoryRegionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryRegion.v1_0_1.yaml#/components/schemas/MemoryRegion_v1_0_1_MemoryRegion required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryRegion.v1_0_1.yaml#/components/schemas/MemoryRegion_v1_0_1_MemoryRegion description: The response contains a representation of the MemoryRegion resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/PCIeDevices/{PCIeDeviceId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/PCIeDevices/{PCIeDeviceId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/PCIeDevices/{PCIeDeviceId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/PCIeDevices/{PCIeDeviceId}/PCIeFunctions: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeFunctionCollection.yaml#/components/schemas/PCIeFunctionCollection_PCIeFunctionCollection description: The response contains a representation of the PCIeFunctionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/PCIeDevices/{PCIeDeviceId}/PCIeFunctions/{PCIeFunctionId}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the PCIeFunction resource in: path name: PCIeFunctionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeFunction.v1_5_1.yaml#/components/schemas/PCIeFunction_v1_5_1_PCIeFunction description: The response contains a representation of the PCIeFunction resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the PCIeFunction resource in: path name: PCIeFunctionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeFunction.v1_5_1.yaml#/components/schemas/PCIeFunction_v1_5_1_PCIeFunction required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeFunction.v1_5_1.yaml#/components/schemas/PCIeFunction_v1_5_1_PCIeFunction description: The response contains a representation of the PCIeFunction resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the PCIeFunction resource in: path name: PCIeFunctionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeFunction.v1_5_1.yaml#/components/schemas/PCIeFunction_v1_5_1_PCIeFunction required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeFunction.v1_5_1.yaml#/components/schemas/PCIeFunction_v1_5_1_PCIeFunction description: The response contains a representation of the PCIeFunction resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/PCIeSlots: get: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeSlots.v1_6_0.yaml#/components/schemas/PCIeSlots_v1_6_0_PCIeSlots description: The response contains a representation of the PCIeSlots resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of the PCIeDevice schema. Empty PCIe slots should be represented by PCIeDevice resources using the `Absent` value of the State property within Status. x-versionDeprecated: v1_6_0 patch: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeSlots.v1_6_0.yaml#/components/schemas/PCIeSlots_v1_6_0_PCIeSlots required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeSlots.v1_6_0.yaml#/components/schemas/PCIeSlots_v1_6_0_PCIeSlots description: The response contains a representation of the PCIeSlots resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of the PCIeDevice schema. Empty PCIe slots should be represented by PCIeDevice resources using the `Absent` value of the State property within Status. x-versionDeprecated: v1_6_0 put: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeSlots.v1_6_0.yaml#/components/schemas/PCIeSlots_v1_6_0_PCIeSlots required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeSlots.v1_6_0.yaml#/components/schemas/PCIeSlots_v1_6_0_PCIeSlots description: The response contains a representation of the PCIeSlots resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of the PCIeDevice schema. Empty PCIe slots should be represented by PCIeDevice resources using the `Absent` value of the State property within Status. x-versionDeprecated: v1_6_0 /redfish/v1/Chassis/{ChassisId}/Power: get: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Power.v1_7_2.yaml#/components/schemas/Power_v1_7_2_Power description: The response contains a representation of the Power resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of the PowerSubsystem schema. x-versionDeprecated: v1_7_0 patch: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Power.v1_7_2.yaml#/components/schemas/Power_v1_7_2_Power required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Power.v1_7_2.yaml#/components/schemas/Power_v1_7_2_Power description: The response contains a representation of the Power resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of the PowerSubsystem schema. x-versionDeprecated: v1_7_0 put: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Power.v1_7_2.yaml#/components/schemas/Power_v1_7_2_Power required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Power.v1_7_2.yaml#/components/schemas/Power_v1_7_2_Power description: The response contains a representation of the Power resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of the PowerSubsystem schema. x-versionDeprecated: v1_7_0 /redfish/v1/Chassis/{ChassisId}/Power/Actions/Power.PowerSupplyReset: post: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Power.v1_7_2.yaml#/components/schemas/Power_v1_7_2_PowerSupplyResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerSupplyReset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerSupplyReset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of the PowerSubsystem schema. x-versionDeprecated: v1_7_0 /redfish/v1/Chassis/{ChassisId}/Power/PowerSupplies/{PowerSupplyId}/Assembly: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PowerSupply resource in: path name: PowerSupplyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PowerSupply resource in: path name: PowerSupplyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PowerSupply resource in: path name: PowerSupplyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/PowerSubsystem: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerSubsystem.v1_1_1.yaml#/components/schemas/PowerSubsystem_v1_1_1_PowerSubsystem description: The response contains a representation of the PowerSubsystem resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerSubsystem.v1_1_1.yaml#/components/schemas/PowerSubsystem_v1_1_1_PowerSubsystem required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerSubsystem.v1_1_1.yaml#/components/schemas/PowerSubsystem_v1_1_1_PowerSubsystem description: The response contains a representation of the PowerSubsystem resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerSubsystem.v1_1_1.yaml#/components/schemas/PowerSubsystem_v1_1_1_PowerSubsystem required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerSubsystem.v1_1_1.yaml#/components/schemas/PowerSubsystem_v1_1_1_PowerSubsystem description: The response contains a representation of the PowerSubsystem resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/PowerSubsystem/Batteries: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BatteryCollection.yaml#/components/schemas/BatteryCollection_BatteryCollection description: The response contains a representation of the BatteryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/PowerSubsystem/Batteries/{BatteryId}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Battery resource in: path name: BatteryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Battery.v1_2_2.yaml#/components/schemas/Battery_v1_2_2_Battery description: The response contains a representation of the Battery resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Battery resource in: path name: BatteryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Battery.v1_2_2.yaml#/components/schemas/Battery_v1_2_2_Battery required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Battery.v1_2_2.yaml#/components/schemas/Battery_v1_2_2_Battery description: The response contains a representation of the Battery resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Battery resource in: path name: BatteryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Battery.v1_2_2.yaml#/components/schemas/Battery_v1_2_2_Battery required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Battery.v1_2_2.yaml#/components/schemas/Battery_v1_2_2_Battery description: The response contains a representation of the Battery resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/PowerSubsystem/Batteries/{BatteryId}/Actions/Battery.Calibrate: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Battery resource in: path name: BatteryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Battery.v1_2_2.yaml#/components/schemas/Battery_v1_2_2_CalibrateRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Calibrate action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Calibrate action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/PowerSubsystem/Batteries/{BatteryId}/Actions/Battery.Reset: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Battery resource in: path name: BatteryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Battery.v1_2_2.yaml#/components/schemas/Battery_v1_2_2_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/PowerSubsystem/Batteries/{BatteryId}/Actions/Battery.SelfTest: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Battery resource in: path name: BatteryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Battery.v1_2_2.yaml#/components/schemas/Battery_v1_2_2_SelfTestRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SelfTest action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SelfTest action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/PowerSubsystem/Batteries/{BatteryId}/Assembly: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Battery resource in: path name: BatteryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Battery resource in: path name: BatteryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Battery resource in: path name: BatteryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/PowerSubsystem/Batteries/{BatteryId}/Metrics: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Battery resource in: path name: BatteryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BatteryMetrics.v1_0_3.yaml#/components/schemas/BatteryMetrics_v1_0_3_BatteryMetrics description: The response contains a representation of the BatteryMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/PowerSubsystem/PowerSupplies: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerSupplyCollection.yaml#/components/schemas/PowerSupplyCollection_PowerSupplyCollection description: The response contains a representation of the PowerSupplyCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/PowerSubsystem/PowerSupplies/{PowerSupplyId}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PowerSupply resource in: path name: PowerSupplyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerSupply.v1_5_3.yaml#/components/schemas/PowerSupply_v1_5_3_PowerSupply description: The response contains a representation of the PowerSupply resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PowerSupply resource in: path name: PowerSupplyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerSupply.v1_5_3.yaml#/components/schemas/PowerSupply_v1_5_3_PowerSupply required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerSupply.v1_5_3.yaml#/components/schemas/PowerSupply_v1_5_3_PowerSupply description: The response contains a representation of the PowerSupply resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PowerSupply resource in: path name: PowerSupplyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerSupply.v1_5_3.yaml#/components/schemas/PowerSupply_v1_5_3_PowerSupply required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerSupply.v1_5_3.yaml#/components/schemas/PowerSupply_v1_5_3_PowerSupply description: The response contains a representation of the PowerSupply resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/PowerSubsystem/PowerSupplies/{PowerSupplyId}/Actions/PowerSupply.Reset: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PowerSupply resource in: path name: PowerSupplyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerSupply.v1_5_3.yaml#/components/schemas/PowerSupply_v1_5_3_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/PowerSubsystem/PowerSupplies/{PowerSupplyId}/Assembly: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PowerSupply resource in: path name: PowerSupplyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PowerSupply resource in: path name: PowerSupplyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PowerSupply resource in: path name: PowerSupplyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/PowerSubsystem/PowerSupplies/{PowerSupplyId}/Metrics: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PowerSupply resource in: path name: PowerSupplyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerSupplyMetrics.v1_1_1.yaml#/components/schemas/PowerSupplyMetrics_v1_1_1_PowerSupplyMetrics description: The response contains a representation of the PowerSupplyMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/PowerSubsystem/PowerSupplies/{PowerSupplyId}/Metrics/Actions/PowerSupplyMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the PowerSupply resource in: path name: PowerSupplyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerSupplyMetrics.v1_1_1.yaml#/components/schemas/PowerSupplyMetrics_v1_1_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Processors: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorCollection.yaml#/components/schemas/ProcessorCollection_ProcessorCollection description: The response contains a representation of the ProcessorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Processors/{ProcessorId}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Processors/{ProcessorId}/Actions/Processor.Reset: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Processors/{ProcessorId}/Actions/Processor.ResetToDefaults: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Processors/{ProcessorId}/SubProcessors: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorCollection.yaml#/components/schemas/ProcessorCollection_ProcessorCollection description: The response contains a representation of the ProcessorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/Actions/Processor.Reset: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/Actions/Processor.ResetToDefaults: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorCollection.yaml#/components/schemas/ProcessorCollection_ProcessorCollection description: The response contains a representation of the ProcessorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/Actions/Processor.Reset : post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/Actions/Processor.ResetToDefaults : post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Sensors: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SensorCollection.yaml#/components/schemas/SensorCollection_SensorCollection description: The response contains a representation of the SensorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Sensors/{SensorId}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor description: The response contains a representation of the Sensor resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor description: The response contains a representation of the Sensor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor description: The response contains a representation of the Sensor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Sensors/{SensorId}/Actions/Sensor.ResetMetrics: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Sensors/{SensorId}/Actions/Sensor.ResetToDefaults: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/Thermal: get: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Thermal.v1_7_2.yaml#/components/schemas/Thermal_v1_7_2_Thermal description: The response contains a representation of the Thermal resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of the ThermalSubsystem schema. x-versionDeprecated: v1_7_0 patch: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Thermal.v1_7_2.yaml#/components/schemas/Thermal_v1_7_2_Thermal required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Thermal.v1_7_2.yaml#/components/schemas/Thermal_v1_7_2_Thermal description: The response contains a representation of the Thermal resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of the ThermalSubsystem schema. x-versionDeprecated: v1_7_0 put: deprecated: true parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Thermal.v1_7_2.yaml#/components/schemas/Thermal_v1_7_2_Thermal required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Thermal.v1_7_2.yaml#/components/schemas/Thermal_v1_7_2_Thermal description: The response contains a representation of the Thermal resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of the ThermalSubsystem schema. x-versionDeprecated: v1_7_0 /redfish/v1/Chassis/{ChassisId}/Thermal/Fans/{FanId}/Assembly: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Fan resource in: path name: FanId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Fan resource in: path name: FanId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Fan resource in: path name: FanId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/ThermalSubsystem: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ThermalSubsystem.v1_3_1.yaml#/components/schemas/ThermalSubsystem_v1_3_1_ThermalSubsystem description: The response contains a representation of the ThermalSubsystem resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/ThermalSubsystem/CoolantConnectors: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnectorCollection.yaml#/components/schemas/CoolantConnectorCollection_CoolantConnectorCollection description: The response contains a representation of the CoolantConnectorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/ThermalSubsystem/CoolantConnectors/{CoolantConnectorId}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the CoolantConnector resource in: path name: CoolantConnectorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector description: The response contains a representation of the CoolantConnector resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the CoolantConnector resource in: path name: CoolantConnectorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector description: The response contains a representation of the CoolantConnector resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the CoolantConnector resource in: path name: CoolantConnectorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector description: The response contains a representation of the CoolantConnector resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/ThermalSubsystem/Fans: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FanCollection.yaml#/components/schemas/FanCollection_FanCollection description: The response contains a representation of the FanCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/ThermalSubsystem/Fans/{FanId}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Fan resource in: path name: FanId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Fan.v1_5_1.yaml#/components/schemas/Fan_v1_5_1_Fan description: The response contains a representation of the Fan resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Fan resource in: path name: FanId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Fan.v1_5_1.yaml#/components/schemas/Fan_v1_5_1_Fan required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Fan.v1_5_1.yaml#/components/schemas/Fan_v1_5_1_Fan description: The response contains a representation of the Fan resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Fan resource in: path name: FanId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Fan.v1_5_1.yaml#/components/schemas/Fan_v1_5_1_Fan required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Fan.v1_5_1.yaml#/components/schemas/Fan_v1_5_1_Fan description: The response contains a representation of the Fan resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/ThermalSubsystem/Fans/{FanId}/Assembly: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Fan resource in: path name: FanId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Fan resource in: path name: FanId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Fan resource in: path name: FanId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/ThermalSubsystem/Heaters: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/HeaterCollection.yaml#/components/schemas/HeaterCollection_HeaterCollection description: The response contains a representation of the HeaterCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/ThermalSubsystem/Heaters/{HeaderId}/Assembly: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Header resource in: path name: HeaderId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Header resource in: path name: HeaderId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Header resource in: path name: HeaderId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/ThermalSubsystem/Heaters/{HeaderId}/Metrics: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Header resource in: path name: HeaderId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/HeaterMetrics.v1_0_1.yaml#/components/schemas/HeaterMetrics_v1_0_1_HeaterMetrics description: The response contains a representation of the HeaterMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/ThermalSubsystem/Heaters/{HeaderId}/Metrics/Actions/HeaterMetrics.ResetMetrics: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Header resource in: path name: HeaderId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/HeaterMetrics.v1_0_1.yaml#/components/schemas/HeaterMetrics_v1_0_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/ThermalSubsystem/Heaters/{HeaterId}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Heater resource in: path name: HeaterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Heater.v1_0_1.yaml#/components/schemas/Heater_v1_0_1_Heater description: The response contains a representation of the Heater resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Heater resource in: path name: HeaterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Heater.v1_0_1.yaml#/components/schemas/Heater_v1_0_1_Heater required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Heater.v1_0_1.yaml#/components/schemas/Heater_v1_0_1_Heater description: The response contains a representation of the Heater resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Heater resource in: path name: HeaterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Heater.v1_0_1.yaml#/components/schemas/Heater_v1_0_1_Heater required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Heater.v1_0_1.yaml#/components/schemas/Heater_v1_0_1_Heater description: The response contains a representation of the Heater resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/ThermalSubsystem/LeakDetection: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LeakDetection.v1_0_0.yaml#/components/schemas/LeakDetection_v1_0_0_LeakDetection description: The response contains a representation of the LeakDetection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/ThermalSubsystem/LeakDetection/LeakDetectors: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LeakDetectorCollection.yaml#/components/schemas/LeakDetectorCollection_LeakDetectorCollection description: The response contains a representation of the LeakDetectorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/ThermalSubsystem/LeakDetection/LeakDetectors/{LeakDetectorId}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the LeakDetector resource in: path name: LeakDetectorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LeakDetector.v1_0_1.yaml#/components/schemas/LeakDetector_v1_0_1_LeakDetector description: The response contains a representation of the LeakDetector resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/ThermalSubsystem/Pumps: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PumpCollection.yaml#/components/schemas/PumpCollection_PumpCollection description: The response contains a representation of the PumpCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/ThermalSubsystem/Pumps/{PumpId}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Pump.v1_0_1.yaml#/components/schemas/Pump_v1_0_1_Pump description: The response contains a representation of the Pump resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Pump.v1_0_1.yaml#/components/schemas/Pump_v1_0_1_Pump required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Pump.v1_0_1.yaml#/components/schemas/Pump_v1_0_1_Pump description: The response contains a representation of the Pump resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Pump.v1_0_1.yaml#/components/schemas/Pump_v1_0_1_Pump required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Pump.v1_0_1.yaml#/components/schemas/Pump_v1_0_1_Pump description: The response contains a representation of the Pump resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/ThermalSubsystem/Pumps/{PumpId}/Filters: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FilterCollection.yaml#/components/schemas/FilterCollection_FilterCollection description: The response contains a representation of the FilterCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/ThermalSubsystem/Pumps/{PumpId}/Filters/{FilterId}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/ThermalSubsystem/ThermalMetrics: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ThermalMetrics.v1_3_1.yaml#/components/schemas/ThermalMetrics_v1_3_1_ThermalMetrics description: The response contains a representation of the ThermalMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/ThermalSubsystem/ThermalMetrics/Actions/ThermalMetrics.ResetMetrics: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ThermalMetrics.v1_3_1.yaml#/components/schemas/ThermalMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/TrustedComponents: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/TrustedComponentCollection.yaml#/components/schemas/TrustedComponentCollection_TrustedComponentCollection description: The response contains a representation of the TrustedComponentCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/TrustedComponents/{TrustedComponentId}: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the TrustedComponent resource in: path name: TrustedComponentId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/TrustedComponent.v1_3_0.yaml#/components/schemas/TrustedComponent_v1_3_0_TrustedComponent description: The response contains a representation of the TrustedComponent resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the TrustedComponent resource in: path name: TrustedComponentId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/TrustedComponent.v1_3_0.yaml#/components/schemas/TrustedComponent_v1_3_0_TrustedComponent required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/TrustedComponent.v1_3_0.yaml#/components/schemas/TrustedComponent_v1_3_0_TrustedComponent description: The response contains a representation of the TrustedComponent resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the TrustedComponent resource in: path name: TrustedComponentId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/TrustedComponent.v1_3_0.yaml#/components/schemas/TrustedComponent_v1_3_0_TrustedComponent required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/TrustedComponent.v1_3_0.yaml#/components/schemas/TrustedComponent_v1_3_0_TrustedComponent description: The response contains a representation of the TrustedComponent resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/TrustedComponents/{TrustedComponentId}/Actions/TrustedComponent.TPMGetEventLog: post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the TrustedComponent resource in: path name: TrustedComponentId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/TrustedComponent.v1_3_0.yaml#/components/schemas/TrustedComponent_v1_3_0_TPMGetEventLogRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/TrustedComponent.v1_3_0.yaml#/components/schemas/TrustedComponent_v1_3_0_TPMGetEventLogResponse description: The response contains the results of the TPMGetEventLog action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/TrustedComponent.v1_3_0.yaml#/components/schemas/TrustedComponent_v1_3_0_TPMGetEventLogResponse description: The response contains the results of the TPMGetEventLog action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/TrustedComponents/{TrustedComponentId}/Certificates: get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the TrustedComponent resource in: path name: TrustedComponentId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the TrustedComponent resource in: path name: TrustedComponentId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Chassis/{ChassisId}/TrustedComponents/{TrustedComponentId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the TrustedComponent resource in: path name: TrustedComponentId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the TrustedComponent resource in: path name: TrustedComponentId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the TrustedComponent resource in: path name: TrustedComponentId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the TrustedComponent resource in: path name: TrustedComponentId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/TrustedComponents/{TrustedComponentId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the TrustedComponent resource in: path name: TrustedComponentId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Chassis/{ChassisId}/TrustedComponents/{TrustedComponentId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the Chassis resource in: path name: ChassisId required: true schema: type: string - description: The value of the Id property of the TrustedComponent resource in: path name: TrustedComponentId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ComponentIntegrity: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComponentIntegrityCollection.yaml#/components/schemas/ComponentIntegrityCollection_ComponentIntegrityCollection description: The response contains a representation of the ComponentIntegrityCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ComponentIntegrity/{ComponentIntegrityId}: get: parameters: - description: The value of the Id property of the ComponentIntegrity resource in: path name: ComponentIntegrityId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComponentIntegrity.v1_2_2.yaml#/components/schemas/ComponentIntegrity_v1_2_2_ComponentIntegrity description: The response contains a representation of the ComponentIntegrity resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComponentIntegrity resource in: path name: ComponentIntegrityId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComponentIntegrity.v1_2_2.yaml#/components/schemas/ComponentIntegrity_v1_2_2_ComponentIntegrity required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComponentIntegrity.v1_2_2.yaml#/components/schemas/ComponentIntegrity_v1_2_2_ComponentIntegrity description: The response contains a representation of the ComponentIntegrity resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComponentIntegrity resource in: path name: ComponentIntegrityId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComponentIntegrity.v1_2_2.yaml#/components/schemas/ComponentIntegrity_v1_2_2_ComponentIntegrity required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComponentIntegrity.v1_2_2.yaml#/components/schemas/ComponentIntegrity_v1_2_2_ComponentIntegrity description: The response contains a representation of the ComponentIntegrity resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ComponentIntegrity/{ComponentIntegrityId}/Actions/ComponentIntegrity.SPDMGetSignedMeasurements: post: parameters: - description: The value of the Id property of the ComponentIntegrity resource in: path name: ComponentIntegrityId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComponentIntegrity.v1_2_2.yaml#/components/schemas/ComponentIntegrity_v1_2_2_SPDMGetSignedMeasurementsRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComponentIntegrity.v1_2_2.yaml#/components/schemas/ComponentIntegrity_v1_2_2_SPDMGetSignedMeasurementsResponse description: The response contains the results of the SPDMGetSignedMeasurements action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComponentIntegrity.v1_2_2.yaml#/components/schemas/ComponentIntegrity_v1_2_2_SPDMGetSignedMeasurementsResponse description: The response contains the results of the SPDMGetSignedMeasurements action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ComponentIntegrity/{ComponentIntegrityId}/Actions/ComponentIntegrity.TPMGetSignedMeasurements: post: parameters: - description: The value of the Id property of the ComponentIntegrity resource in: path name: ComponentIntegrityId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComponentIntegrity.v1_2_2.yaml#/components/schemas/ComponentIntegrity_v1_2_2_TPMGetSignedMeasurementsRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComponentIntegrity.v1_2_2.yaml#/components/schemas/ComponentIntegrity_v1_2_2_TPMGetSignedMeasurementsResponse description: The response contains the results of the TPMGetSignedMeasurements action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComponentIntegrity.v1_2_2.yaml#/components/schemas/ComponentIntegrity_v1_2_2_TPMGetSignedMeasurementsResponse description: The response contains the results of the TPMGetSignedMeasurements action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CompositionService.v1_2_2.yaml#/components/schemas/CompositionService_v1_2_2_CompositionService description: The response contains a representation of the CompositionService resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CompositionService.v1_2_2.yaml#/components/schemas/CompositionService_v1_2_2_CompositionService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CompositionService.v1_2_2.yaml#/components/schemas/CompositionService_v1_2_2_CompositionService description: The response contains a representation of the CompositionService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CompositionService.v1_2_2.yaml#/components/schemas/CompositionService_v1_2_2_CompositionService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CompositionService.v1_2_2.yaml#/components/schemas/CompositionService_v1_2_2_CompositionService description: The response contains a representation of the CompositionService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/Actions/CompositionService.Compose: post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CompositionService.v1_2_2.yaml#/components/schemas/CompositionService_v1_2_2_ComposeRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CompositionService.v1_2_2.yaml#/components/schemas/CompositionService_v1_2_2_ComposeResponse description: The response contains the results of the Compose action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CompositionService.v1_2_2.yaml#/components/schemas/CompositionService_v1_2_2_ComposeResponse description: The response contains the results of the Compose action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ActivePool: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ResourceBlockCollection.yaml#/components/schemas/ResourceBlockCollection_ResourceBlockCollection description: The response contains a representation of the ResourceBlockCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ResourceBlock.v1_4_2.yaml#/components/schemas/ResourceBlock_v1_4_2_ResourceBlock required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ResourceBlock.v1_4_2.yaml#/components/schemas/ResourceBlock_v1_4_2_ResourceBlock description: A resource of type ResourceBlock has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/CompositionReservations: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CompositionReservationCollection.yaml#/components/schemas/CompositionReservationCollection_CompositionReservationCollection description: The response contains a representation of the CompositionReservationCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/CompositionReservations/{CompositionReservationId}: delete: parameters: - description: The value of the Id property of the CompositionReservation resource in: path name: CompositionReservationId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CompositionReservation.v1_0_1.yaml#/components/schemas/CompositionReservation_v1_0_1_CompositionReservation description: The response contains a representation of the CompositionReservation resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the CompositionReservation resource in: path name: CompositionReservationId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CompositionReservation.v1_0_1.yaml#/components/schemas/CompositionReservation_v1_0_1_CompositionReservation description: The response contains a representation of the CompositionReservation resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/FreePool: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ResourceBlockCollection.yaml#/components/schemas/ResourceBlockCollection_ResourceBlockCollection description: The response contains a representation of the ResourceBlockCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ResourceBlock.v1_4_2.yaml#/components/schemas/ResourceBlock_v1_4_2_ResourceBlock required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ResourceBlock.v1_4_2.yaml#/components/schemas/ResourceBlock_v1_4_2_ResourceBlock description: A resource of type ResourceBlock has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ResourceBlockCollection.yaml#/components/schemas/ResourceBlockCollection_ResourceBlockCollection description: The response contains a representation of the ResourceBlockCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ResourceBlock.v1_4_2.yaml#/components/schemas/ResourceBlock_v1_4_2_ResourceBlock required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ResourceBlock.v1_4_2.yaml#/components/schemas/ResourceBlock_v1_4_2_ResourceBlock description: A resource of type ResourceBlock has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}: delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ResourceBlock.v1_4_2.yaml#/components/schemas/ResourceBlock_v1_4_2_ResourceBlock description: The response contains a representation of the ResourceBlock resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ResourceBlock.v1_4_2.yaml#/components/schemas/ResourceBlock_v1_4_2_ResourceBlock description: The response contains a representation of the ResourceBlock resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ResourceBlock.v1_4_2.yaml#/components/schemas/ResourceBlock_v1_4_2_ResourceBlock required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ResourceBlock.v1_4_2.yaml#/components/schemas/ResourceBlock_v1_4_2_ResourceBlock description: The response contains a representation of the ResourceBlock resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ResourceBlock.v1_4_2.yaml#/components/schemas/ResourceBlock_v1_4_2_ResourceBlock required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ResourceBlock.v1_4_2.yaml#/components/schemas/ResourceBlock_v1_4_2_ResourceBlock description: The response contains a representation of the ResourceBlock resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive description: The response contains a representation of the Drive resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive description: The response contains a representation of the Drive resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive description: The response contains a representation of the Drive resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}/Actions/Drive.Reset: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}/Actions/Drive.RevertToOriginalFactoryState : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_RevertToOriginalFactoryStateRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RevertToOriginalFactoryState action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RevertToOriginalFactoryState action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}/Actions/Drive.SecureErase: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_SecureEraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecureErase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecureErase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}/Assembly: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}/Certificates: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}/Metrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/DriveMetrics.v1_2_0.yaml#/components/schemas/DriveMetrics_v1_2_0_DriveMetrics description: The response contains a representation of the DriveMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/EthernetInterfaces/{EthernetInterfaceId}: delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/EthernetInterfaces/{EthernetInterfaceId}/VLANs: get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterfaceCollection.yaml#/components/schemas/VLanNetworkInterfaceCollection_VLanNetworkInterfaceCollection description: The response contains a representation of the VLanNetworkInterfaceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: A resource of type VLanNetworkInterface has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/EthernetInterfaces/{EthernetInterfaceId}/VLANs/{VLanNetworkInterfaceId} : delete: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string - description: The value of the Id property of the VLanNetworkInterface resource in: path name: VLanNetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: The response contains a representation of the VLanNetworkInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of using individual EthernetInterface resources to show VLAN information. x-versionDeprecated: v1_3_0 get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string - description: The value of the Id property of the VLanNetworkInterface resource in: path name: VLanNetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: The response contains a representation of the VLanNetworkInterface resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of using individual EthernetInterface resources to show VLAN information. x-versionDeprecated: v1_3_0 patch: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string - description: The value of the Id property of the VLanNetworkInterface resource in: path name: VLanNetworkInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: The response contains a representation of the VLanNetworkInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of using individual EthernetInterface resources to show VLAN information. x-versionDeprecated: v1_3_0 put: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string - description: The value of the Id property of the VLanNetworkInterface resource in: path name: VLanNetworkInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: The response contains a representation of the VLanNetworkInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of using individual EthernetInterface resources to show VLAN information. x-versionDeprecated: v1_3_0 /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory description: The response contains a representation of the Memory resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory description: The response contains a representation of the Memory resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory description: The response contains a representation of the Memory resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Actions/Memory.DisableMasterPassphrase: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_DisableMasterPassphraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the DisableMasterPassphrase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the DisableMasterPassphrase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Actions/Memory.DisablePassphrase: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_DisablePassphraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the DisablePassphrase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the DisablePassphrase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Actions/Memory.FreezeSecurityState: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_FreezeSecurityStateRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the FreezeSecurityState action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the FreezeSecurityState action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Actions/Memory.InjectPersistentPoison: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_InjectPersistentPoisonRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the InjectPersistentPoison action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the InjectPersistentPoison action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Actions/Memory.OverwriteUnit: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_OverwriteUnitRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the OverwriteUnit action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the OverwriteUnit action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Actions/Memory.Reset: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Actions/Memory.ResetToDefaults: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Actions/Memory.ScanMedia: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_ScanMediaRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ScanMedia action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ScanMedia action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Actions/Memory.SecureEraseUnit: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_SecureEraseUnitRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecureEraseUnit action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecureEraseUnit action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Actions/Memory.SetMasterPassphrase: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_SetMasterPassphraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetMasterPassphrase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetMasterPassphrase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Actions/Memory.SetPassphrase: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_SetPassphraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetPassphrase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetPassphrase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Actions/Memory.UnlockUnit: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_UnlockUnitRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the UnlockUnit action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the UnlockUnit action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Assembly: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Certificates: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/MemoryMetrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryMetrics.v1_7_2.yaml#/components/schemas/MemoryMetrics_v1_7_2_MemoryMetrics description: The response contains a representation of the MemoryMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/MemoryMetrics/Actions/MemoryMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryMetrics.v1_7_2.yaml#/components/schemas/MemoryMetrics_v1_7_2_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/NetworkInterfaces/{NetworkInterfaceId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkInterface.v1_2_1.yaml#/components/schemas/NetworkInterface_v1_2_1_NetworkInterface description: The response contains a representation of the NetworkInterface resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/NetworkInterfaces/{NetworkInterfaceId}/NetworkDeviceFunctions : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkDeviceFunctionCollection.yaml#/components/schemas/NetworkDeviceFunctionCollection_NetworkDeviceFunctionCollection description: The response contains a representation of the NetworkDeviceFunctionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/NetworkInterfaces/{NetworkInterfaceId}/NetworkDeviceFunctions/{NetworkDeviceFunctionId}/AllowDeny : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDenyCollection.yaml#/components/schemas/AllowDenyCollection_AllowDenyCollection description: The response contains a representation of the AllowDenyCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: A resource of type AllowDeny has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/NetworkInterfaces/{NetworkInterfaceId}/NetworkDeviceFunctions/{NetworkDeviceFunctionId}/AllowDeny/{AllowDenyId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the AllowDeny resource in: path name: AllowDenyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: The response contains a representation of the AllowDeny resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the AllowDeny resource in: path name: AllowDenyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: The response contains a representation of the AllowDeny resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the AllowDeny resource in: path name: AllowDenyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: The response contains a representation of the AllowDeny resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the AllowDeny resource in: path name: AllowDenyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: The response contains a representation of the AllowDeny resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/NetworkInterfaces/{NetworkInterfaceId}/NetworkPorts: get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkPortCollection.yaml#/components/schemas/NetworkPortCollection_NetworkPortCollection description: The response contains a representation of the NetworkPortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of the PortCollection schema. x-versionDeprecated: '2020.4' /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/NetworkInterfaces/{NetworkInterfaceId}/Ports: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/AccelerationFunctions: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AccelerationFunctionCollection.yaml#/components/schemas/AccelerationFunctionCollection_AccelerationFunctionCollection description: The response contains a representation of the AccelerationFunctionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/AccelerationFunctions/{AccelerationFunctionId} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the AccelerationFunction resource in: path name: AccelerationFunctionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AccelerationFunction.v1_0_4.yaml#/components/schemas/AccelerationFunction_v1_0_4_AccelerationFunction description: The response contains a representation of the AccelerationFunction resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Actions/Processor.Reset: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Actions/Processor.ResetToDefaults: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Assembly: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Certificates: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/MemorySummary/MemoryMetrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryMetrics.v1_7_2.yaml#/components/schemas/MemoryMetrics_v1_7_2_MemoryMetrics description: The response contains a representation of the MemoryMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/MemorySummary/MemoryMetrics/Actions/MemoryMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryMetrics.v1_7_2.yaml#/components/schemas/MemoryMetrics_v1_7_2_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Ports: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Ports/{PortId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Ports/{PortId}/Actions/Port.Reset: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Ports/{PortId}/Actions/Port.ResetPPB : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Ports/{PortId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Ports/{PortId}/Metrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/ProcessorMetrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ProcessorMetrics description: The response contains a representation of the ProcessorMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/ProcessorMetrics/Actions/ProcessorMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/SubProcessors: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorCollection.yaml#/components/schemas/ProcessorCollection_ProcessorCollection description: The response contains a representation of the ProcessorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/Actions/Processor.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/Actions/Processor.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/Assembly : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/ProcessorMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ProcessorMetrics description: The response contains a representation of the ProcessorMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/ProcessorMetrics/Actions/ProcessorMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorCollection.yaml#/components/schemas/ProcessorCollection_ProcessorCollection description: The response contains a representation of the ProcessorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/Actions/Processor.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/Actions/Processor.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/Assembly : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/ProcessorMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ProcessorMetrics description: The response contains a representation of the ProcessorMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/ProcessorMetrics/Actions/ProcessorMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/SimpleStorage/{SimpleStorageId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the SimpleStorage resource in: path name: SimpleStorageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SimpleStorage.v1_3_1.yaml#/components/schemas/SimpleStorage_v1_3_1_SimpleStorage description: The response contains a representation of the SimpleStorage resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageCollection.yaml#/components/schemas/StorageCollection_StorageCollection description: The response contains a representation of the StorageCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage description: The response contains a representation of the Storage resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage description: The response contains a representation of the Storage resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage description: The response contains a representation of the Storage resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Actions/Storage.ResetToDefaults: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Actions/Storage.SetEncryptionKey: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_SetEncryptionKeyRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetEncryptionKey action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetEncryptionKey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageControllerCollection.yaml#/components/schemas/StorageControllerCollection_StorageControllerCollection description: The response contains a representation of the StorageControllerCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{ControllerId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController description: The response contains a representation of the StorageController resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController description: The response contains a representation of the StorageController resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController description: The response contains a representation of the StorageController resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{ControllerId}/Actions/StorageController.AttachNamespaces : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachNamespacesRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachDetachNamespacesResponse description: The response contains the results of the AttachNamespaces action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachDetachNamespacesResponse description: The response contains the results of the AttachNamespaces action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{ControllerId}/Actions/StorageController.DetachNamespaces : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_DetachNamespacesRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachDetachNamespacesResponse description: The response contains the results of the DetachNamespaces action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachDetachNamespacesResponse description: The response contains the results of the DetachNamespaces action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{ControllerId}/Actions/StorageController.SecurityReceive : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_SecurityReceiveRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_SecurityReceiveResponse description: The response contains the results of the SecurityReceive action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_SecurityReceiveResponse description: The response contains the results of the SecurityReceive action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{ControllerId}/Actions/StorageController.SecuritySend : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_SecuritySendRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecuritySend action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecuritySend action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{ControllerId}/EnvironmentMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{ControllerId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{ControllerId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{ControllerId}/Metrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageControllerMetrics.v1_0_2.yaml#/components/schemas/StorageControllerMetrics_v1_0_2_StorageControllerMetrics description: The response contains a representation of the StorageControllerMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Assembly : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates/{CertificateId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/Actions/Port.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/Actions/Port.ResetPPB : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/Metrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive description: The response contains a representation of the Drive resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive description: The response contains a representation of the Drive resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive description: The response contains a representation of the Drive resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}/Actions/Drive.Reset: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}/Actions/Drive.RevertToOriginalFactoryState : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_RevertToOriginalFactoryStateRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RevertToOriginalFactoryState action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RevertToOriginalFactoryState action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}/Actions/Drive.SecureErase : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_SecureEraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecureErase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecureErase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}/Assembly: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}/Certificates: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}/Certificates/{CertificateId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}/Metrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/DriveMetrics.v1_2_0.yaml#/components/schemas/DriveMetrics_v1_2_0_DriveMetrics description: The response contains a representation of the DriveMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Assembly : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates/{CertificateId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/Actions/Port.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/Actions/Port.ResetPPB : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/Metrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Volumes: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/VolumeCollection.yaml#/components/schemas/VolumeCollection_VolumeCollection description: The response contains a representation of the VolumeCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: A resource of type Volume has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Volumes/{VolumeId}: delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.AssignReplicaTarget : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_AssignReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.ChangeRAIDLayout : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ChangeRAIDLayoutRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.CheckConsistency : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CheckConsistencyRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.CreateReplicaTarget : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CreateReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.ForceEnable : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ForceEnableRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.Initialize : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_InitializeRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.RemoveReplicaRelationship : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_RemoveReplicaRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.ResumeReplication : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ResumeReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.ReverseReplicationRelationship : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ReverseReplicationRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.SplitReplication : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SplitReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.SuspendReplication : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SuspendReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}: delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_ComputerSystem description: The response contains a representation of the ComputerSystem resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_ComputerSystem description: The response contains a representation of the ComputerSystem resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_ComputerSystem required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_ComputerSystem description: The response contains a representation of the ComputerSystem resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_ComputerSystem required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_ComputerSystem description: The response contains a representation of the ComputerSystem resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Actions/ComputerSystem.AddResourceBlock : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_AddResourceBlockRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AddResourceBlock action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AddResourceBlock action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Actions/ComputerSystem.Decommission : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_DecommissionRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Decommission action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Decommission action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Actions/ComputerSystem.RemoveResourceBlock : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_RemoveResourceBlockRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveResourceBlock action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveResourceBlock action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Actions/ComputerSystem.Reset: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Actions/ComputerSystem.SetDefaultBootOrder : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_SetDefaultBootOrderRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetDefaultBootOrder action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetDefaultBootOrder action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Bios: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Bios.v1_2_2.yaml#/components/schemas/Bios_v1_2_2_Bios description: The response contains a representation of the Bios resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Bios.v1_2_2.yaml#/components/schemas/Bios_v1_2_2_Bios required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Bios.v1_2_2.yaml#/components/schemas/Bios_v1_2_2_Bios description: The response contains a representation of the Bios resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Bios.v1_2_2.yaml#/components/schemas/Bios_v1_2_2_Bios required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Bios.v1_2_2.yaml#/components/schemas/Bios_v1_2_2_Bios description: The response contains a representation of the Bios resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Bios/Actions/Bios.ChangePassword : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Bios.v1_2_2.yaml#/components/schemas/Bios_v1_2_2_ChangePasswordRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangePassword action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangePassword action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Bios/Actions/Bios.ResetBios: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Bios.v1_2_2.yaml#/components/schemas/Bios_v1_2_2_ResetBiosRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetBios action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetBios action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Boot/Certificates: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Boot/Certificates/{CertificateId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Boot/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Boot/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/BootOptions: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BootOptionCollection.yaml#/components/schemas/BootOptionCollection_BootOptionCollection description: The response contains a representation of the BootOptionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BootOption.v1_0_5.yaml#/components/schemas/BootOption_v1_0_5_BootOption required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BootOption.v1_0_5.yaml#/components/schemas/BootOption_v1_0_5_BootOption description: A resource of type BootOption has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/BootOptions/{BootOptionId}: delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the BootOption resource in: path name: BootOptionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BootOption.v1_0_5.yaml#/components/schemas/BootOption_v1_0_5_BootOption description: The response contains a representation of the BootOption resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the BootOption resource in: path name: BootOptionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BootOption.v1_0_5.yaml#/components/schemas/BootOption_v1_0_5_BootOption description: The response contains a representation of the BootOption resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the BootOption resource in: path name: BootOptionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BootOption.v1_0_5.yaml#/components/schemas/BootOption_v1_0_5_BootOption required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BootOption.v1_0_5.yaml#/components/schemas/BootOption_v1_0_5_BootOption description: The response contains a representation of the BootOption resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the BootOption resource in: path name: BootOptionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BootOption.v1_0_5.yaml#/components/schemas/BootOption_v1_0_5_BootOption required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BootOption.v1_0_5.yaml#/components/schemas/BootOption_v1_0_5_BootOption description: The response contains a representation of the BootOption resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Certificates: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/EthernetInterfaces: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterfaceCollection.yaml#/components/schemas/EthernetInterfaceCollection_EthernetInterfaceCollection description: The response contains a representation of the EthernetInterfaceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: A resource of type EthernetInterface has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/EthernetInterfaces/{EthernetInterfaceId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/EthernetInterfaces/{EthernetInterfaceId}/VLANs : get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterfaceCollection.yaml#/components/schemas/VLanNetworkInterfaceCollection_VLanNetworkInterfaceCollection description: The response contains a representation of the VLanNetworkInterfaceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: A resource of type VLanNetworkInterface has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/EthernetInterfaces/{EthernetInterfaceId}/VLANs/{VLanNetworkInterfaceId} : delete: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string - description: The value of the Id property of the VLanNetworkInterface resource in: path name: VLanNetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: The response contains a representation of the VLanNetworkInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of using individual EthernetInterface resources to show VLAN information. x-versionDeprecated: v1_3_0 get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string - description: The value of the Id property of the VLanNetworkInterface resource in: path name: VLanNetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: The response contains a representation of the VLanNetworkInterface resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of using individual EthernetInterface resources to show VLAN information. x-versionDeprecated: v1_3_0 patch: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string - description: The value of the Id property of the VLanNetworkInterface resource in: path name: VLanNetworkInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: The response contains a representation of the VLanNetworkInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of using individual EthernetInterface resources to show VLAN information. x-versionDeprecated: v1_3_0 put: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string - description: The value of the Id property of the VLanNetworkInterface resource in: path name: VLanNetworkInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: The response contains a representation of the VLanNetworkInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of using individual EthernetInterface resources to show VLAN information. x-versionDeprecated: v1_3_0 /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FabricAdapterCollection.yaml#/components/schemas/FabricAdapterCollection_FabricAdapterCollection description: The response contains a representation of the FabricAdapterCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FabricAdapter.v1_5_2.yaml#/components/schemas/FabricAdapter_v1_5_2_FabricAdapter description: The response contains a representation of the FabricAdapter resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FabricAdapter.v1_5_2.yaml#/components/schemas/FabricAdapter_v1_5_2_FabricAdapter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FabricAdapter.v1_5_2.yaml#/components/schemas/FabricAdapter_v1_5_2_FabricAdapter description: The response contains a representation of the FabricAdapter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FabricAdapter.v1_5_2.yaml#/components/schemas/FabricAdapter_v1_5_2_FabricAdapter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FabricAdapter.v1_5_2.yaml#/components/schemas/FabricAdapter_v1_5_2_FabricAdapter description: The response contains a representation of the FabricAdapter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/GenZ/MSDT : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/GenZ/MSDT/{MSDTId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/GenZ/SSDT : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/GenZ/SSDT/{SSDTId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/MSDT : get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/MSDT/{MSDTId} : delete: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/Actions/Port.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/Actions/Port.ResetPPB : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/EnvironmentMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/GenZ/LPRT : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/GenZ/LPRT/{LPRTId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/GenZ/MPRT : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/GenZ/MPRT/{MPRTId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/LPRT : get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/LPRT/{LPRTId} : delete: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/MPRT : get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/MPRT/{MPRTId} : delete: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/Metrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/SSDT : get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/SSDT/{SSDTId} : delete: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/GraphicsControllers/{ControllerId}/Ports : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/GraphicsControllers/{ControllerId}/Ports/{PortId} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/GraphicsControllers/{ControllerId}/Ports/{PortId}/Actions/Port.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/GraphicsControllers/{ControllerId}/Ports/{PortId}/Actions/Port.ResetPPB : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/GraphicsControllers/{ControllerId}/Ports/{PortId}/EnvironmentMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/GraphicsControllers/{ControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/GraphicsControllers/{ControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/GraphicsControllers/{ControllerId}/Ports/{PortId}/Metrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/KeyManagement/KMIPCertificates: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/KeyManagement/KMIPCertificates/{CertificateId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/KeyManagement/KMIPCertificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/KeyManagement/KMIPCertificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/LogServices: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogServiceCollection.yaml#/components/schemas/LogServiceCollection_LogServiceCollection description: The response contains a representation of the LogServiceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/LogServices/{LogServiceId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService description: The response contains a representation of the LogService resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService description: The response contains a representation of the LogService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService description: The response contains a representation of the LogService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/LogServices/{LogServiceId}/Actions/LogService.ClearLog : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_ClearLogRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearLog action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearLog action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/LogServices/{LogServiceId}/Actions/LogService.CollectDiagnosticData : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_CollectDiagnosticDataRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CollectDiagnosticData action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CollectDiagnosticData action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/LogServices/{LogServiceId}/Actions/LogService.PushDiagnosticData : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_PushDiagnosticDataRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PushDiagnosticData action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PushDiagnosticData action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/LogServices/{LogServiceId}/Entries : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntryCollection.yaml#/components/schemas/LogEntryCollection_LogEntryCollection description: The response contains a representation of the LogEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: A resource of type LogEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/LogServices/{LogServiceId}/Entries/{LogEntryId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryCollection.yaml#/components/schemas/MemoryCollection_MemoryCollection description: The response contains a representation of the MemoryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory description: The response contains a representation of the Memory resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory description: The response contains a representation of the Memory resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory description: The response contains a representation of the Memory resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.DisableMasterPassphrase : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_DisableMasterPassphraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the DisableMasterPassphrase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the DisableMasterPassphrase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.DisablePassphrase : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_DisablePassphraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the DisablePassphrase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the DisablePassphrase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.FreezeSecurityState : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_FreezeSecurityStateRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the FreezeSecurityState action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the FreezeSecurityState action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.InjectPersistentPoison : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_InjectPersistentPoisonRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the InjectPersistentPoison action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the InjectPersistentPoison action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.OverwriteUnit : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_OverwriteUnitRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the OverwriteUnit action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the OverwriteUnit action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.ScanMedia : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_ScanMediaRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ScanMedia action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ScanMedia action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.SecureEraseUnit : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_SecureEraseUnitRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecureEraseUnit action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecureEraseUnit action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.SetMasterPassphrase : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_SetMasterPassphraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetMasterPassphrase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetMasterPassphrase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.SetPassphrase : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_SetPassphraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetPassphrase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetPassphrase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.UnlockUnit : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_UnlockUnitRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the UnlockUnit action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the UnlockUnit action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Assembly: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Certificates: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Certificates/{CertificateId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/EnvironmentMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/MemoryMetrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryMetrics.v1_7_2.yaml#/components/schemas/MemoryMetrics_v1_7_2_MemoryMetrics description: The response contains a representation of the MemoryMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/MemoryMetrics/Actions/MemoryMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryMetrics.v1_7_2.yaml#/components/schemas/MemoryMetrics_v1_7_2_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/MemoryDomains: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryDomainCollection.yaml#/components/schemas/MemoryDomainCollection_MemoryDomainCollection description: The response contains a representation of the MemoryDomainCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/MemoryDomains/{MemoryDomainId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the MemoryDomain resource in: path name: MemoryDomainId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryDomain.v1_5_0.yaml#/components/schemas/MemoryDomain_v1_5_0_MemoryDomain description: The response contains a representation of the MemoryDomain resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/MemoryDomains/{MemoryDomainId}/MemoryChunks : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the MemoryDomain resource in: path name: MemoryDomainId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunksCollection.yaml#/components/schemas/MemoryChunksCollection_MemoryChunksCollection description: The response contains a representation of the MemoryChunksCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the MemoryDomain resource in: path name: MemoryDomainId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks description: A resource of type MemoryChunks has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/MemoryDomains/{MemoryDomainId}/MemoryChunks/{MemoryChunksId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the MemoryDomain resource in: path name: MemoryDomainId required: true schema: type: string - description: The value of the Id property of the MemoryChunks resource in: path name: MemoryChunksId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks description: The response contains a representation of the MemoryChunks resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the MemoryDomain resource in: path name: MemoryDomainId required: true schema: type: string - description: The value of the Id property of the MemoryChunks resource in: path name: MemoryChunksId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks description: The response contains a representation of the MemoryChunks resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the MemoryDomain resource in: path name: MemoryDomainId required: true schema: type: string - description: The value of the Id property of the MemoryChunks resource in: path name: MemoryChunksId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks description: The response contains a representation of the MemoryChunks resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the MemoryDomain resource in: path name: MemoryDomainId required: true schema: type: string - description: The value of the Id property of the MemoryChunks resource in: path name: MemoryChunksId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks description: The response contains a representation of the MemoryChunks resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/MemorySummary/MemoryMetrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryMetrics.v1_7_2.yaml#/components/schemas/MemoryMetrics_v1_7_2_MemoryMetrics description: The response contains a representation of the MemoryMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/MemorySummary/MemoryMetrics/Actions/MemoryMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryMetrics.v1_7_2.yaml#/components/schemas/MemoryMetrics_v1_7_2_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/NetworkInterfaces: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkInterfaceCollection.yaml#/components/schemas/NetworkInterfaceCollection_NetworkInterfaceCollection description: The response contains a representation of the NetworkInterfaceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/NetworkInterfaces/{NetworkInterfaceId} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkInterface.v1_2_1.yaml#/components/schemas/NetworkInterface_v1_2_1_NetworkInterface description: The response contains a representation of the NetworkInterface resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/NetworkInterfaces/{NetworkInterfaceId}/NetworkDeviceFunctions : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkDeviceFunctionCollection.yaml#/components/schemas/NetworkDeviceFunctionCollection_NetworkDeviceFunctionCollection description: The response contains a representation of the NetworkDeviceFunctionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/NetworkInterfaces/{NetworkInterfaceId}/NetworkDeviceFunctions/{NetworkDeviceFunctionId}/AllowDeny : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDenyCollection.yaml#/components/schemas/AllowDenyCollection_AllowDenyCollection description: The response contains a representation of the AllowDenyCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: A resource of type AllowDeny has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/NetworkInterfaces/{NetworkInterfaceId}/NetworkDeviceFunctions/{NetworkDeviceFunctionId}/AllowDeny/{AllowDenyId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the AllowDeny resource in: path name: AllowDenyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: The response contains a representation of the AllowDeny resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the AllowDeny resource in: path name: AllowDenyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: The response contains a representation of the AllowDeny resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the AllowDeny resource in: path name: AllowDenyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: The response contains a representation of the AllowDeny resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the AllowDeny resource in: path name: AllowDenyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: The response contains a representation of the AllowDeny resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/NetworkInterfaces/{NetworkInterfaceId}/NetworkPorts : get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkPortCollection.yaml#/components/schemas/NetworkPortCollection_NetworkPortCollection description: The response contains a representation of the NetworkPortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of the PortCollection schema. x-versionDeprecated: '2020.4' ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/NetworkInterfaces/{NetworkInterfaceId}/Ports : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/OperatingSystem: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OperatingSystem.v1_0_1.yaml#/components/schemas/OperatingSystem_v1_0_1_OperatingSystem description: The response contains a representation of the OperatingSystem resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/OperatingSystem/Applications: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ApplicationCollection.yaml#/components/schemas/ApplicationCollection_ApplicationCollection description: The response contains a representation of the ApplicationCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/OperatingSystem/Applications/{ApplicationId} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Application resource in: path name: ApplicationId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Application.v1_0_0.yaml#/components/schemas/Application_v1_0_0_Application description: The response contains a representation of the Application resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/OperatingSystem/Applications/{ApplicationId}/Actions/Application.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Application resource in: path name: ApplicationId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Application.v1_0_0.yaml#/components/schemas/Application_v1_0_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/OperatingSystem/ContainerImages: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ContainerImageCollection.yaml#/components/schemas/ContainerImageCollection_ContainerImageCollection description: The response contains a representation of the ContainerImageCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/OperatingSystem/ContainerImages/{ContainerImageId} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the ContainerImage resource in: path name: ContainerImageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ContainerImage.v1_0_0.yaml#/components/schemas/ContainerImage_v1_0_0_ContainerImage description: The response contains a representation of the ContainerImage resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/OperatingSystem/Containers: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ContainerCollection.yaml#/components/schemas/ContainerCollection_ContainerCollection description: The response contains a representation of the ContainerCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/OperatingSystem/Containers/EthernetInterfaces : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterfaceCollection.yaml#/components/schemas/EthernetInterfaceCollection_EthernetInterfaceCollection description: The response contains a representation of the EthernetInterfaceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: A resource of type EthernetInterface has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/OperatingSystem/Containers/EthernetInterfaces/{EthernetInterfaceId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/OperatingSystem/Containers/{ContainerId} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Container resource in: path name: ContainerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Container.v1_0_0.yaml#/components/schemas/Container_v1_0_0_Container description: The response contains a representation of the Container resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/OperatingSystem/Containers/{ContainerId}/Actions/Container.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Container resource in: path name: ContainerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Container.v1_0_0.yaml#/components/schemas/Container_v1_0_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/PCIeDevices: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeDeviceCollection.yaml#/components/schemas/PCIeDeviceCollection_PCIeDeviceCollection description: The response contains a representation of the PCIeDeviceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/PCIeDevices/{PCIeDeviceId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeDevice.v1_13_0.yaml#/components/schemas/PCIeDevice_v1_13_0_PCIeDevice description: The response contains a representation of the PCIeDevice resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeDevice.v1_13_0.yaml#/components/schemas/PCIeDevice_v1_13_0_PCIeDevice required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeDevice.v1_13_0.yaml#/components/schemas/PCIeDevice_v1_13_0_PCIeDevice description: The response contains a representation of the PCIeDevice resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeDevice.v1_13_0.yaml#/components/schemas/PCIeDevice_v1_13_0_PCIeDevice required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeDevice.v1_13_0.yaml#/components/schemas/PCIeDevice_v1_13_0_PCIeDevice description: The response contains a representation of the PCIeDevice resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/PCIeDevices/{PCIeDeviceId}/EnvironmentMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/PCIeDevices/{PCIeDeviceId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/PCIeDevices/{PCIeDeviceId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/PCIeDevices/{PCIeDeviceId}/PCIeFunctions : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeFunctionCollection.yaml#/components/schemas/PCIeFunctionCollection_PCIeFunctionCollection description: The response contains a representation of the PCIeFunctionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/PCIeDevices/{PCIeDeviceId}/PCIeFunctions/{PCIeFunctionId} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the PCIeFunction resource in: path name: PCIeFunctionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeFunction.v1_5_1.yaml#/components/schemas/PCIeFunction_v1_5_1_PCIeFunction description: The response contains a representation of the PCIeFunction resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the PCIeFunction resource in: path name: PCIeFunctionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeFunction.v1_5_1.yaml#/components/schemas/PCIeFunction_v1_5_1_PCIeFunction required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeFunction.v1_5_1.yaml#/components/schemas/PCIeFunction_v1_5_1_PCIeFunction description: The response contains a representation of the PCIeFunction resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the PCIeFunction resource in: path name: PCIeFunctionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeFunction.v1_5_1.yaml#/components/schemas/PCIeFunction_v1_5_1_PCIeFunction required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeFunction.v1_5_1.yaml#/components/schemas/PCIeFunction_v1_5_1_PCIeFunction description: The response contains a representation of the PCIeFunction resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/ProcessorSummary/ProcessorMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ProcessorMetrics description: The response contains a representation of the ProcessorMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/ProcessorSummary/ProcessorMetrics/Actions/ProcessorMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorCollection.yaml#/components/schemas/ProcessorCollection_ProcessorCollection description: The response contains a representation of the ProcessorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/AccelerationFunctions : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AccelerationFunctionCollection.yaml#/components/schemas/AccelerationFunctionCollection_AccelerationFunctionCollection description: The response contains a representation of the AccelerationFunctionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/AccelerationFunctions/{AccelerationFunctionId} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the AccelerationFunction resource in: path name: AccelerationFunctionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AccelerationFunction.v1_0_4.yaml#/components/schemas/AccelerationFunction_v1_0_4_AccelerationFunction description: The response contains a representation of the AccelerationFunction resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Actions/Processor.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Actions/Processor.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Assembly : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Certificates : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Certificates/{CertificateId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/EnvironmentMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/MemorySummary/MemoryMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryMetrics.v1_7_2.yaml#/components/schemas/MemoryMetrics_v1_7_2_MemoryMetrics description: The response contains a representation of the MemoryMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/MemorySummary/MemoryMetrics/Actions/MemoryMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryMetrics.v1_7_2.yaml#/components/schemas/MemoryMetrics_v1_7_2_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Ports: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Ports/{PortId} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Ports/{PortId}/Actions/Port.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Ports/{PortId}/Actions/Port.ResetPPB : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Ports/{PortId}/EnvironmentMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Ports/{PortId}/Metrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/ProcessorMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ProcessorMetrics description: The response contains a representation of the ProcessorMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/ProcessorMetrics/Actions/ProcessorMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorCollection.yaml#/components/schemas/ProcessorCollection_ProcessorCollection description: The response contains a representation of the ProcessorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/Actions/Processor.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/Actions/Processor.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/Assembly : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/ProcessorMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ProcessorMetrics description: The response contains a representation of the ProcessorMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/ProcessorMetrics/Actions/ProcessorMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorCollection.yaml#/components/schemas/ProcessorCollection_ProcessorCollection description: The response contains a representation of the ProcessorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/Actions/Processor.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/Actions/Processor.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/Assembly : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/ProcessorMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ProcessorMetrics description: The response contains a representation of the ProcessorMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/ProcessorMetrics/Actions/ProcessorMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SecureBoot: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecureBoot.v1_1_1.yaml#/components/schemas/SecureBoot_v1_1_1_SecureBoot description: The response contains a representation of the SecureBoot resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecureBoot.v1_1_1.yaml#/components/schemas/SecureBoot_v1_1_1_SecureBoot required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecureBoot.v1_1_1.yaml#/components/schemas/SecureBoot_v1_1_1_SecureBoot description: The response contains a representation of the SecureBoot resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecureBoot.v1_1_1.yaml#/components/schemas/SecureBoot_v1_1_1_SecureBoot required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecureBoot.v1_1_1.yaml#/components/schemas/SecureBoot_v1_1_1_SecureBoot description: The response contains a representation of the SecureBoot resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SecureBoot/Actions/SecureBoot.ResetKeys : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecureBoot.v1_1_1.yaml#/components/schemas/SecureBoot_v1_1_1_ResetKeysRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetKeys action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetKeys action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecureBootDatabaseCollection.yaml#/components/schemas/SecureBootDatabaseCollection_SecureBootDatabaseCollection description: The response contains a representation of the SecureBootDatabaseCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases/{DatabaseId} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecureBootDatabase.v1_0_2.yaml#/components/schemas/SecureBootDatabase_v1_0_2_SecureBootDatabase description: The response contains a representation of the SecureBootDatabase resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases/{DatabaseId}/Actions/SecureBootDatabase.ResetKeys : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecureBootDatabase.v1_0_2.yaml#/components/schemas/SecureBootDatabase_v1_0_2_ResetKeysRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetKeys action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetKeys action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases/{DatabaseId}/Certificates : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases/{DatabaseId}/Certificates/{CertificateId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases/{DatabaseId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases/{DatabaseId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases/{DatabaseId}/Signatures : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SignatureCollection.yaml#/components/schemas/SignatureCollection_SignatureCollection description: The response contains a representation of the SignatureCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Signature.v1_0_2.yaml#/components/schemas/Signature_v1_0_2_Signature required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Signature.v1_0_2.yaml#/components/schemas/Signature_v1_0_2_Signature description: A resource of type Signature has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases/{DatabaseId}/Signatures/{SignatureId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string - description: The value of the Id property of the Signature resource in: path name: SignatureId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Signature.v1_0_2.yaml#/components/schemas/Signature_v1_0_2_Signature description: The response contains a representation of the Signature resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string - description: The value of the Id property of the Signature resource in: path name: SignatureId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Signature.v1_0_2.yaml#/components/schemas/Signature_v1_0_2_Signature description: The response contains a representation of the Signature resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SimpleStorage: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SimpleStorageCollection.yaml#/components/schemas/SimpleStorageCollection_SimpleStorageCollection description: The response contains a representation of the SimpleStorageCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SimpleStorage/{SimpleStorageId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the SimpleStorage resource in: path name: SimpleStorageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SimpleStorage.v1_3_1.yaml#/components/schemas/SimpleStorage_v1_3_1_SimpleStorage description: The response contains a representation of the SimpleStorage resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageCollection.yaml#/components/schemas/StorageCollection_StorageCollection description: The response contains a representation of the StorageCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage description: The response contains a representation of the Storage resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage description: The response contains a representation of the Storage resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage description: The response contains a representation of the Storage resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Actions/Storage.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Actions/Storage.SetEncryptionKey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_SetEncryptionKeyRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetEncryptionKey action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetEncryptionKey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageControllerCollection.yaml#/components/schemas/StorageControllerCollection_StorageControllerCollection description: The response contains a representation of the StorageControllerCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{ControllerId} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController description: The response contains a representation of the StorageController resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController description: The response contains a representation of the StorageController resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController description: The response contains a representation of the StorageController resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{ControllerId}/Actions/StorageController.AttachNamespaces : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachNamespacesRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachDetachNamespacesResponse description: The response contains the results of the AttachNamespaces action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachDetachNamespacesResponse description: The response contains the results of the AttachNamespaces action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{ControllerId}/Actions/StorageController.DetachNamespaces : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_DetachNamespacesRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachDetachNamespacesResponse description: The response contains the results of the DetachNamespaces action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachDetachNamespacesResponse description: The response contains the results of the DetachNamespaces action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{ControllerId}/Actions/StorageController.SecurityReceive : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_SecurityReceiveRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_SecurityReceiveResponse description: The response contains the results of the SecurityReceive action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_SecurityReceiveResponse description: The response contains the results of the SecurityReceive action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{ControllerId}/Actions/StorageController.SecuritySend : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_SecuritySendRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecuritySend action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecuritySend action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{ControllerId}/EnvironmentMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{ControllerId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{ControllerId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{ControllerId}/Metrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageControllerMetrics.v1_0_2.yaml#/components/schemas/StorageControllerMetrics_v1_0_2_StorageControllerMetrics description: The response contains a representation of the StorageControllerMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Assembly : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates/{CertificateId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/Actions/Port.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/Actions/Port.ResetPPB : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/Metrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive description: The response contains a representation of the Drive resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive description: The response contains a representation of the Drive resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive description: The response contains a representation of the Drive resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Actions/Drive.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Actions/Drive.RevertToOriginalFactoryState : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_RevertToOriginalFactoryStateRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RevertToOriginalFactoryState action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RevertToOriginalFactoryState action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Actions/Drive.SecureErase : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_SecureEraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecureErase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecureErase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Assembly : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Certificates : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Certificates/{CertificateId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/EnvironmentMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Metrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/DriveMetrics.v1_2_0.yaml#/components/schemas/DriveMetrics_v1_2_0_DriveMetrics description: The response contains a representation of the DriveMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Assembly : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates/{CertificateId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/Actions/Port.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/Actions/Port.ResetPPB : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/Metrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/VolumeCollection.yaml#/components/schemas/VolumeCollection_VolumeCollection description: The response contains a representation of the VolumeCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: A resource of type Volume has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.AssignReplicaTarget : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_AssignReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.ChangeRAIDLayout : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ChangeRAIDLayoutRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.CheckConsistency : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CheckConsistencyRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.CreateReplicaTarget : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CreateReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.ForceEnable : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ForceEnableRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.Initialize : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_InitializeRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.RemoveReplicaRelationship : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_RemoveReplicaRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.ResumeReplication : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ResumeReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.ReverseReplicationRelationship : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ReverseReplicationRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.SplitReplication : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SplitReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.SuspendReplication : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SuspendReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/USBControllers/{ControllerId}/Ports : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/USBControllers/{ControllerId}/Ports/{PortId} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/USBControllers/{ControllerId}/Ports/{PortId}/Actions/Port.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/USBControllers/{ControllerId}/Ports/{PortId}/Actions/Port.ResetPPB : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/USBControllers/{ControllerId}/Ports/{PortId}/EnvironmentMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/USBControllers/{ControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/USBControllers/{ControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/USBControllers/{ControllerId}/Ports/{PortId}/Metrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMediaCollection.yaml#/components/schemas/VirtualMediaCollection_VirtualMediaCollection description: The response contains a representation of the VirtualMediaCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMedia.v1_6_3.yaml#/components/schemas/VirtualMedia_v1_6_3_VirtualMedia description: The response contains a representation of the VirtualMedia resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMedia.v1_6_3.yaml#/components/schemas/VirtualMedia_v1_6_3_VirtualMedia required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMedia.v1_6_3.yaml#/components/schemas/VirtualMedia_v1_6_3_VirtualMedia description: The response contains a representation of the VirtualMedia resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMedia.v1_6_3.yaml#/components/schemas/VirtualMedia_v1_6_3_VirtualMedia required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMedia.v1_6_3.yaml#/components/schemas/VirtualMedia_v1_6_3_VirtualMedia description: The response contains a representation of the VirtualMedia resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/Actions/VirtualMedia.EjectMedia : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMedia.v1_6_3.yaml#/components/schemas/VirtualMedia_v1_6_3_EjectMediaRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the EjectMedia action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the EjectMedia action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/Actions/VirtualMedia.InsertMedia : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMedia.v1_6_3.yaml#/components/schemas/VirtualMedia_v1_6_3_InsertMediaRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the InsertMedia action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the InsertMedia action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/Certificates : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/Certificates/{CertificateId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/ClientCertificates : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/ClientCertificates/{CertificateId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/ClientCertificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/ClientCertificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/GenZ/REQ-VCAT : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntryCollection.yaml#/components/schemas/VCATEntryCollection_VCATEntryCollection description: The response contains a representation of the VCATEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: A resource of type VCATEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/GenZ/REQ-VCAT/{VCATEntryId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/GenZ/RSP-VCAT : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntryCollection.yaml#/components/schemas/VCATEntryCollection_VCATEntryCollection description: The response contains a representation of the VCATEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: A resource of type VCATEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/GenZ/RSP-VCAT/{VCATEntryId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/GenZ/VCAT : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntryCollection.yaml#/components/schemas/VCATEntryCollection_VCATEntryCollection description: The response contains a representation of the VCATEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: A resource of type VCATEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/GenZ/VCAT/{VCATEntryId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/VCAT : get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntryCollection.yaml#/components/schemas/VCATEntryCollection_VCATEntryCollection description: The response contains a representation of the VCATEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: A resource of type VCATEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/VCAT/{VCATEntryId} : delete: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/REQ-VCAT : get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntryCollection.yaml#/components/schemas/VCATEntryCollection_VCATEntryCollection description: The response contains a representation of the VCATEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: A resource of type VCATEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/REQ-VCAT/{VCATEntryId} : delete: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/RSP-VCAT : get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntryCollection.yaml#/components/schemas/VCATEntryCollection_VCATEntryCollection description: The response contains a representation of the VCATEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: A resource of type VCATEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/RSP-VCAT/{VCATEntryId} : delete: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceZones: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ZoneCollection.yaml#/components/schemas/ZoneCollection_ZoneCollection description: The response contains a representation of the ZoneCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Zone.v1_6_2.yaml#/components/schemas/Zone_v1_6_2_Zone required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Zone.v1_6_2.yaml#/components/schemas/Zone_v1_6_2_Zone description: A resource of type Zone has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceZones/{ZoneId}: delete: parameters: - description: The value of the Id property of the Zone resource in: path name: ZoneId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Zone.v1_6_2.yaml#/components/schemas/Zone_v1_6_2_Zone description: The response contains a representation of the Zone resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Zone resource in: path name: ZoneId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Zone.v1_6_2.yaml#/components/schemas/Zone_v1_6_2_Zone description: The response contains a representation of the Zone resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Zone resource in: path name: ZoneId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Zone.v1_6_2.yaml#/components/schemas/Zone_v1_6_2_Zone required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Zone.v1_6_2.yaml#/components/schemas/Zone_v1_6_2_Zone description: The response contains a representation of the Zone resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Zone resource in: path name: ZoneId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Zone.v1_6_2.yaml#/components/schemas/Zone_v1_6_2_Zone required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Zone.v1_6_2.yaml#/components/schemas/Zone_v1_6_2_Zone description: The response contains a representation of the Zone resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceZones/{ZoneId}/Actions/Zone.AddEndpoint: post: parameters: - description: The value of the Id property of the Zone resource in: path name: ZoneId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Zone.v1_6_2.yaml#/components/schemas/Zone_v1_6_2_AddEndpointRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AddEndpoint action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AddEndpoint action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/CompositionService/ResourceZones/{ZoneId}/Actions/Zone.RemoveEndpoint: post: parameters: - description: The value of the Id property of the Zone resource in: path name: ZoneId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Zone.v1_6_2.yaml#/components/schemas/Zone_v1_6_2_RemoveEndpointRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveEndpoint action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveEndpoint action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/EventService: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EventService.v1_10_1.yaml#/components/schemas/EventService_v1_10_1_EventService description: The response contains a representation of the EventService resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EventService.v1_10_1.yaml#/components/schemas/EventService_v1_10_1_EventService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EventService.v1_10_1.yaml#/components/schemas/EventService_v1_10_1_EventService description: The response contains a representation of the EventService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EventService.v1_10_1.yaml#/components/schemas/EventService_v1_10_1_EventService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EventService.v1_10_1.yaml#/components/schemas/EventService_v1_10_1_EventService description: The response contains a representation of the EventService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/EventService/Actions/EventService.SubmitTestEvent: post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EventService.v1_10_1.yaml#/components/schemas/EventService_v1_10_1_SubmitTestEventRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SubmitTestEvent action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SubmitTestEvent action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/EventService/Actions/EventService.TestEventSubscription: post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EventService.v1_10_1.yaml#/components/schemas/EventService_v1_10_1_TestEventSubscriptionRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the TestEventSubscription action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the TestEventSubscription action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/EventService/Subscriptions: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EventDestinationCollection.yaml#/components/schemas/EventDestinationCollection_EventDestinationCollection description: The response contains a representation of the EventDestinationCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EventDestination.v1_14_0.yaml#/components/schemas/EventDestination_v1_14_0_EventDestination required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EventDestination.v1_14_0.yaml#/components/schemas/EventDestination_v1_14_0_EventDestination description: A resource of type EventDestination has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/EventService/Subscriptions/{EventDestinationId}: delete: parameters: - description: The value of the Id property of the EventDestination resource in: path name: EventDestinationId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EventDestination.v1_14_0.yaml#/components/schemas/EventDestination_v1_14_0_EventDestination description: The response contains a representation of the EventDestination resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the EventDestination resource in: path name: EventDestinationId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EventDestination.v1_14_0.yaml#/components/schemas/EventDestination_v1_14_0_EventDestination description: The response contains a representation of the EventDestination resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the EventDestination resource in: path name: EventDestinationId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EventDestination.v1_14_0.yaml#/components/schemas/EventDestination_v1_14_0_EventDestination required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EventDestination.v1_14_0.yaml#/components/schemas/EventDestination_v1_14_0_EventDestination description: The response contains a representation of the EventDestination resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the EventDestination resource in: path name: EventDestinationId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EventDestination.v1_14_0.yaml#/components/schemas/EventDestination_v1_14_0_EventDestination required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EventDestination.v1_14_0.yaml#/components/schemas/EventDestination_v1_14_0_EventDestination description: The response contains a representation of the EventDestination resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/EventService/Subscriptions/{EventDestinationId}/Actions/EventDestination.ResumeSubscription: post: parameters: - description: The value of the Id property of the EventDestination resource in: path name: EventDestinationId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EventDestination.v1_14_0.yaml#/components/schemas/EventDestination_v1_14_0_ResumeSubscriptionRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeSubscription action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeSubscription action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/EventService/Subscriptions/{EventDestinationId}/Actions/EventDestination.SuspendSubscription: post: parameters: - description: The value of the Id property of the EventDestination resource in: path name: EventDestinationId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EventDestination.v1_14_0.yaml#/components/schemas/EventDestination_v1_14_0_SuspendSubscriptionRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendSubscription action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendSubscription action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/EventService/Subscriptions/{EventDestinationId}/Certificates: get: parameters: - description: The value of the Id property of the EventDestination resource in: path name: EventDestinationId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the EventDestination resource in: path name: EventDestinationId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/EventService/Subscriptions/{EventDestinationId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the EventDestination resource in: path name: EventDestinationId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the EventDestination resource in: path name: EventDestinationId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the EventDestination resource in: path name: EventDestinationId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the EventDestination resource in: path name: EventDestinationId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/EventService/Subscriptions/{EventDestinationId}/Certificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the EventDestination resource in: path name: EventDestinationId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/EventService/Subscriptions/{EventDestinationId}/Certificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the EventDestination resource in: path name: EventDestinationId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/EventService/Subscriptions/{EventDestinationId}/ClientCertificates: get: parameters: - description: The value of the Id property of the EventDestination resource in: path name: EventDestinationId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the EventDestination resource in: path name: EventDestinationId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/EventService/Subscriptions/{EventDestinationId}/ClientCertificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the EventDestination resource in: path name: EventDestinationId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the EventDestination resource in: path name: EventDestinationId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the EventDestination resource in: path name: EventDestinationId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the EventDestination resource in: path name: EventDestinationId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/EventService/Subscriptions/{EventDestinationId}/ClientCertificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the EventDestination resource in: path name: EventDestinationId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/EventService/Subscriptions/{EventDestinationId}/ClientCertificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the EventDestination resource in: path name: EventDestinationId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FabricCollection.yaml#/components/schemas/FabricCollection_FabricCollection description: The response contains a representation of the FabricCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}: get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Fabric.v1_3_1.yaml#/components/schemas/Fabric_v1_3_1_Fabric description: The response contains a representation of the Fabric resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Fabric.v1_3_1.yaml#/components/schemas/Fabric_v1_3_1_Fabric required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Fabric.v1_3_1.yaml#/components/schemas/Fabric_v1_3_1_Fabric description: The response contains a representation of the Fabric resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Fabric.v1_3_1.yaml#/components/schemas/Fabric_v1_3_1_Fabric required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Fabric.v1_3_1.yaml#/components/schemas/Fabric_v1_3_1_Fabric description: The response contains a representation of the Fabric resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/AddressPools: get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AddressPoolCollection.yaml#/components/schemas/AddressPoolCollection_AddressPoolCollection description: The response contains a representation of the AddressPoolCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AddressPool.v1_2_4.yaml#/components/schemas/AddressPool_v1_2_4_AddressPool required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AddressPool.v1_2_4.yaml#/components/schemas/AddressPool_v1_2_4_AddressPool description: A resource of type AddressPool has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/AddressPools/{AddressPoolId}: delete: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the AddressPool resource in: path name: AddressPoolId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AddressPool.v1_2_4.yaml#/components/schemas/AddressPool_v1_2_4_AddressPool description: The response contains a representation of the AddressPool resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the AddressPool resource in: path name: AddressPoolId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AddressPool.v1_2_4.yaml#/components/schemas/AddressPool_v1_2_4_AddressPool description: The response contains a representation of the AddressPool resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the AddressPool resource in: path name: AddressPoolId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AddressPool.v1_2_4.yaml#/components/schemas/AddressPool_v1_2_4_AddressPool required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AddressPool.v1_2_4.yaml#/components/schemas/AddressPool_v1_2_4_AddressPool description: The response contains a representation of the AddressPool resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the AddressPool resource in: path name: AddressPoolId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AddressPool.v1_2_4.yaml#/components/schemas/AddressPool_v1_2_4_AddressPool required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AddressPool.v1_2_4.yaml#/components/schemas/AddressPool_v1_2_4_AddressPool description: The response contains a representation of the AddressPool resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Connections: get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ConnectionCollection.yaml#/components/schemas/ConnectionCollection_ConnectionCollection description: The response contains a representation of the ConnectionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Connection.v1_3_1.yaml#/components/schemas/Connection_v1_3_1_Connection required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Connection.v1_3_1.yaml#/components/schemas/Connection_v1_3_1_Connection description: A resource of type Connection has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Connections/{ConnectionId}: delete: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Connection resource in: path name: ConnectionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Connection.v1_3_1.yaml#/components/schemas/Connection_v1_3_1_Connection description: The response contains a representation of the Connection resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Connection resource in: path name: ConnectionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Connection.v1_3_1.yaml#/components/schemas/Connection_v1_3_1_Connection description: The response contains a representation of the Connection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Connection resource in: path name: ConnectionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Connection.v1_3_1.yaml#/components/schemas/Connection_v1_3_1_Connection required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Connection.v1_3_1.yaml#/components/schemas/Connection_v1_3_1_Connection description: The response contains a representation of the Connection resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Connection resource in: path name: ConnectionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Connection.v1_3_1.yaml#/components/schemas/Connection_v1_3_1_Connection required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Connection.v1_3_1.yaml#/components/schemas/Connection_v1_3_1_Connection description: The response contains a representation of the Connection resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/EndpointGroups: get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroupCollection.yaml#/components/schemas/EndpointGroupCollection_EndpointGroupCollection description: The response contains a representation of the EndpointGroupCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup description: A resource of type EndpointGroup has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/EndpointGroups/{EndpointGroupId}: delete: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the EndpointGroup resource in: path name: EndpointGroupId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup description: The response contains a representation of the EndpointGroup resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the EndpointGroup resource in: path name: EndpointGroupId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup description: The response contains a representation of the EndpointGroup resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the EndpointGroup resource in: path name: EndpointGroupId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup description: The response contains a representation of the EndpointGroup resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the EndpointGroup resource in: path name: EndpointGroupId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup description: The response contains a representation of the EndpointGroup resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Endpoints: get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointCollection.yaml#/components/schemas/EndpointCollection_EndpointCollection description: The response contains a representation of the EndpointCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Endpoint.v1_8_1.yaml#/components/schemas/Endpoint_v1_8_1_Endpoint required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Endpoint.v1_8_1.yaml#/components/schemas/Endpoint_v1_8_1_Endpoint description: A resource of type Endpoint has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Endpoints/{EndpointId}: delete: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Endpoint resource in: path name: EndpointId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Endpoint.v1_8_1.yaml#/components/schemas/Endpoint_v1_8_1_Endpoint description: The response contains a representation of the Endpoint resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Endpoint resource in: path name: EndpointId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Endpoint.v1_8_1.yaml#/components/schemas/Endpoint_v1_8_1_Endpoint description: The response contains a representation of the Endpoint resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Endpoint resource in: path name: EndpointId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Endpoint.v1_8_1.yaml#/components/schemas/Endpoint_v1_8_1_Endpoint required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Endpoint.v1_8_1.yaml#/components/schemas/Endpoint_v1_8_1_Endpoint description: The response contains a representation of the Endpoint resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Endpoint resource in: path name: EndpointId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Endpoint.v1_8_1.yaml#/components/schemas/Endpoint_v1_8_1_Endpoint required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Endpoint.v1_8_1.yaml#/components/schemas/Endpoint_v1_8_1_Endpoint description: The response contains a representation of the Endpoint resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches: get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SwitchCollection.yaml#/components/schemas/SwitchCollection_SwitchCollection description: The response contains a representation of the SwitchCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}: get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Switch.v1_9_2.yaml#/components/schemas/Switch_v1_9_2_Switch description: The response contains a representation of the Switch resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Switch.v1_9_2.yaml#/components/schemas/Switch_v1_9_2_Switch required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Switch.v1_9_2.yaml#/components/schemas/Switch_v1_9_2_Switch description: The response contains a representation of the Switch resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Switch.v1_9_2.yaml#/components/schemas/Switch_v1_9_2_Switch required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Switch.v1_9_2.yaml#/components/schemas/Switch_v1_9_2_Switch description: The response contains a representation of the Switch resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Actions/Switch.Reset: post: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Switch.v1_9_2.yaml#/components/schemas/Switch_v1_9_2_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Certificates: get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Certificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Certificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics: post: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults: post: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Ports: get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Ports/{PortId}: get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Ports/{PortId}/Actions/Port.Reset: post: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Ports/{PortId}/Actions/Port.ResetPPB: post: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Ports/{PortId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Ports/{PortId}/GenZ/LPRT: get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Ports/{PortId}/GenZ/LPRT/{LPRTId}: delete: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Ports/{PortId}/GenZ/MPRT: get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Ports/{PortId}/GenZ/MPRT/{MPRTId}: delete: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Ports/{PortId}/GenZ/VCAT: get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntryCollection.yaml#/components/schemas/VCATEntryCollection_VCATEntryCollection description: The response contains a representation of the VCATEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: A resource of type VCATEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Ports/{PortId}/GenZ/VCAT/{VCATEntryId}: delete: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Ports/{PortId}/LPRT: get: deprecated: true parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Ports/{PortId}/LPRT/{LPRTId}: delete: deprecated: true parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Ports/{PortId}/LPRT/{LPRTId}/RouteSet: get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntryCollection.yaml#/components/schemas/RouteSetEntryCollection_RouteSetEntryCollection description: The response contains a representation of the RouteSetEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: A resource of type RouteSetEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Ports/{PortId}/LPRT/{LPRTId}/RouteSet/{RouteId}: delete: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Ports/{PortId}/MPRT: get: deprecated: true parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Ports/{PortId}/MPRT/{MPRTId}: delete: deprecated: true parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Ports/{PortId}/MPRT/{MPRTId}/RouteSet: get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntryCollection.yaml#/components/schemas/RouteSetEntryCollection_RouteSetEntryCollection description: The response contains a representation of the RouteSetEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: A resource of type RouteSetEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Ports/{PortId}/MPRT/{MPRTId}/RouteSet/{RouteId}: delete: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Ports/{PortId}/Metrics: get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Ports/{PortId}/VCAT: get: deprecated: true parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntryCollection.yaml#/components/schemas/VCATEntryCollection_VCATEntryCollection description: The response contains a representation of the VCATEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: A resource of type VCATEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/Ports/{PortId}/VCAT/{VCATEntryId}: delete: deprecated: true parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/SwitchMetrics: get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SwitchMetrics.v1_0_1.yaml#/components/schemas/SwitchMetrics_v1_0_1_SwitchMetrics description: The response contains a representation of the SwitchMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}/SwitchMetrics/Actions/SwitchMetrics.ClearCurrentPeriod: post: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Switch resource in: path name: SwitchId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SwitchMetrics.v1_0_1.yaml#/components/schemas/SwitchMetrics_v1_0_1_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Zones: get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ZoneCollection.yaml#/components/schemas/ZoneCollection_ZoneCollection description: The response contains a representation of the ZoneCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Zone.v1_6_2.yaml#/components/schemas/Zone_v1_6_2_Zone required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Zone.v1_6_2.yaml#/components/schemas/Zone_v1_6_2_Zone description: A resource of type Zone has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Zones/{ZoneId}: delete: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Zone resource in: path name: ZoneId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Zone.v1_6_2.yaml#/components/schemas/Zone_v1_6_2_Zone description: The response contains a representation of the Zone resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Zone resource in: path name: ZoneId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Zone.v1_6_2.yaml#/components/schemas/Zone_v1_6_2_Zone description: The response contains a representation of the Zone resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Zone resource in: path name: ZoneId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Zone.v1_6_2.yaml#/components/schemas/Zone_v1_6_2_Zone required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Zone.v1_6_2.yaml#/components/schemas/Zone_v1_6_2_Zone description: The response contains a representation of the Zone resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Zone resource in: path name: ZoneId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Zone.v1_6_2.yaml#/components/schemas/Zone_v1_6_2_Zone required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Zone.v1_6_2.yaml#/components/schemas/Zone_v1_6_2_Zone description: The response contains a representation of the Zone resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Zones/{ZoneId}/Actions/Zone.AddEndpoint: post: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Zone resource in: path name: ZoneId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Zone.v1_6_2.yaml#/components/schemas/Zone_v1_6_2_AddEndpointRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AddEndpoint action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AddEndpoint action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Fabrics/{FabricId}/Zones/{ZoneId}/Actions/Zone.RemoveEndpoint: post: parameters: - description: The value of the Id property of the Fabric resource in: path name: FabricId required: true schema: type: string - description: The value of the Id property of the Zone resource in: path name: ZoneId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Zone.v1_6_2.yaml#/components/schemas/Zone_v1_6_2_RemoveEndpointRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveEndpoint action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveEndpoint action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Facilities: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FacilityCollection.yaml#/components/schemas/FacilityCollection_FacilityCollection description: The response contains a representation of the FacilityCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Facility.v1_4_1.yaml#/components/schemas/Facility_v1_4_1_Facility required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Facility.v1_4_1.yaml#/components/schemas/Facility_v1_4_1_Facility description: A resource of type Facility has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Facilities/{FacilityId}: delete: parameters: - description: The value of the Id property of the Facility resource in: path name: FacilityId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Facility.v1_4_1.yaml#/components/schemas/Facility_v1_4_1_Facility description: The response contains a representation of the Facility resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Facility resource in: path name: FacilityId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Facility.v1_4_1.yaml#/components/schemas/Facility_v1_4_1_Facility description: The response contains a representation of the Facility resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Facility resource in: path name: FacilityId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Facility.v1_4_1.yaml#/components/schemas/Facility_v1_4_1_Facility required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Facility.v1_4_1.yaml#/components/schemas/Facility_v1_4_1_Facility description: The response contains a representation of the Facility resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Facility resource in: path name: FacilityId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Facility.v1_4_1.yaml#/components/schemas/Facility_v1_4_1_Facility required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Facility.v1_4_1.yaml#/components/schemas/Facility_v1_4_1_Facility description: The response contains a representation of the Facility resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Facilities/{FacilityId}/AmbientMetrics: get: parameters: - description: The value of the Id property of the Facility resource in: path name: FacilityId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Facility resource in: path name: FacilityId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Facility resource in: path name: FacilityId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Facilities/{FacilityId}/AmbientMetrics/Actions/EnvironmentMetrics.ResetMetrics: post: parameters: - description: The value of the Id property of the Facility resource in: path name: FacilityId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Facilities/{FacilityId}/AmbientMetrics/Actions/EnvironmentMetrics.ResetToDefaults: post: parameters: - description: The value of the Id property of the Facility resource in: path name: FacilityId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Facilities/{FacilityId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the Facility resource in: path name: FacilityId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Facility resource in: path name: FacilityId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Facility resource in: path name: FacilityId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Facilities/{FacilityId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics: post: parameters: - description: The value of the Id property of the Facility resource in: path name: FacilityId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Facilities/{FacilityId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults: post: parameters: - description: The value of the Id property of the Facility resource in: path name: FacilityId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Facilities/{FacilityId}/PowerDomains: get: parameters: - description: The value of the Id property of the Facility resource in: path name: FacilityId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDomainCollection.yaml#/components/schemas/PowerDomainCollection_PowerDomainCollection description: The response contains a representation of the PowerDomainCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Facility resource in: path name: FacilityId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDomain.v1_2_1.yaml#/components/schemas/PowerDomain_v1_2_1_PowerDomain required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDomain.v1_2_1.yaml#/components/schemas/PowerDomain_v1_2_1_PowerDomain description: A resource of type PowerDomain has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Facilities/{FacilityId}/PowerDomains/{PowerDomainId}: delete: parameters: - description: The value of the Id property of the Facility resource in: path name: FacilityId required: true schema: type: string - description: The value of the Id property of the PowerDomain resource in: path name: PowerDomainId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDomain.v1_2_1.yaml#/components/schemas/PowerDomain_v1_2_1_PowerDomain description: The response contains a representation of the PowerDomain resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Facility resource in: path name: FacilityId required: true schema: type: string - description: The value of the Id property of the PowerDomain resource in: path name: PowerDomainId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDomain.v1_2_1.yaml#/components/schemas/PowerDomain_v1_2_1_PowerDomain description: The response contains a representation of the PowerDomain resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Facility resource in: path name: FacilityId required: true schema: type: string - description: The value of the Id property of the PowerDomain resource in: path name: PowerDomainId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDomain.v1_2_1.yaml#/components/schemas/PowerDomain_v1_2_1_PowerDomain required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDomain.v1_2_1.yaml#/components/schemas/PowerDomain_v1_2_1_PowerDomain description: The response contains a representation of the PowerDomain resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Facility resource in: path name: FacilityId required: true schema: type: string - description: The value of the Id property of the PowerDomain resource in: path name: PowerDomainId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDomain.v1_2_1.yaml#/components/schemas/PowerDomain_v1_2_1_PowerDomain required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDomain.v1_2_1.yaml#/components/schemas/PowerDomain_v1_2_1_PowerDomain description: The response contains a representation of the PowerDomain resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/JobService: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/JobService.v1_0_5.yaml#/components/schemas/JobService_v1_0_5_JobService description: The response contains a representation of the JobService resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/JobService.v1_0_5.yaml#/components/schemas/JobService_v1_0_5_JobService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/JobService.v1_0_5.yaml#/components/schemas/JobService_v1_0_5_JobService description: The response contains a representation of the JobService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/JobService.v1_0_5.yaml#/components/schemas/JobService_v1_0_5_JobService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/JobService.v1_0_5.yaml#/components/schemas/JobService_v1_0_5_JobService description: The response contains a representation of the JobService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/JobService/Jobs: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/JobCollection.yaml#/components/schemas/JobCollection_JobCollection description: The response contains a representation of the JobCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Job.v1_2_3.yaml#/components/schemas/Job_v1_2_3_Job required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Job.v1_2_3.yaml#/components/schemas/Job_v1_2_3_Job description: A resource of type Job has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/JobService/Jobs/{JobId}: delete: parameters: - description: The value of the Id property of the Job resource in: path name: JobId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Job.v1_2_3.yaml#/components/schemas/Job_v1_2_3_Job description: The response contains a representation of the Job resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Job resource in: path name: JobId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Job.v1_2_3.yaml#/components/schemas/Job_v1_2_3_Job description: The response contains a representation of the Job resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Job resource in: path name: JobId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Job.v1_2_3.yaml#/components/schemas/Job_v1_2_3_Job required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Job.v1_2_3.yaml#/components/schemas/Job_v1_2_3_Job description: The response contains a representation of the Job resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Job resource in: path name: JobId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Job.v1_2_3.yaml#/components/schemas/Job_v1_2_3_Job required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Job.v1_2_3.yaml#/components/schemas/Job_v1_2_3_Job description: The response contains a representation of the Job resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/JobService/Jobs/{JobId}/Steps: get: parameters: - description: The value of the Id property of the Job resource in: path name: JobId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/JobCollection.yaml#/components/schemas/JobCollection_JobCollection description: The response contains a representation of the JobCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Job resource in: path name: JobId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Job.v1_2_3.yaml#/components/schemas/Job_v1_2_3_Job required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Job.v1_2_3.yaml#/components/schemas/Job_v1_2_3_Job description: A resource of type Job has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/JobService/Jobs/{JobId}/Steps/{JobId2}: delete: parameters: - description: The value of the Id property of the Job resource in: path name: JobId required: true schema: type: string - description: The value of the Id property of the Job resource in: path name: JobId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Job.v1_2_3.yaml#/components/schemas/Job_v1_2_3_Job description: The response contains a representation of the Job resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Job resource in: path name: JobId required: true schema: type: string - description: The value of the Id property of the Job resource in: path name: JobId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Job.v1_2_3.yaml#/components/schemas/Job_v1_2_3_Job description: The response contains a representation of the Job resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Job resource in: path name: JobId required: true schema: type: string - description: The value of the Id property of the Job resource in: path name: JobId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Job.v1_2_3.yaml#/components/schemas/Job_v1_2_3_Job required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Job.v1_2_3.yaml#/components/schemas/Job_v1_2_3_Job description: The response contains a representation of the Job resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Job resource in: path name: JobId required: true schema: type: string - description: The value of the Id property of the Job resource in: path name: JobId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Job.v1_2_3.yaml#/components/schemas/Job_v1_2_3_Job required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Job.v1_2_3.yaml#/components/schemas/Job_v1_2_3_Job description: The response contains a representation of the Job resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/JobService/Log: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService description: The response contains a representation of the LogService resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService description: The response contains a representation of the LogService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService description: The response contains a representation of the LogService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/JobService/Log/Actions/LogService.ClearLog: post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_ClearLogRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearLog action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearLog action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/JobService/Log/Actions/LogService.CollectDiagnosticData: post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_CollectDiagnosticDataRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CollectDiagnosticData action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CollectDiagnosticData action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/JobService/Log/Actions/LogService.PushDiagnosticData: post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_PushDiagnosticDataRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PushDiagnosticData action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PushDiagnosticData action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/JobService/Log/Entries: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntryCollection.yaml#/components/schemas/LogEntryCollection_LogEntryCollection description: The response contains a representation of the LogEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: A resource of type LogEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/JobService/Log/Entries/{LogEntryId}: delete: parameters: - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/JsonSchemas: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/JsonSchemaFileCollection.yaml#/components/schemas/JsonSchemaFileCollection_JsonSchemaFileCollection description: The response contains a representation of the JsonSchemaFileCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/JsonSchemas/{JsonSchemaFileId}: get: parameters: - description: The value of the Id property of the JsonSchemaFile resource in: path name: JsonSchemaFileId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/JsonSchemaFile.v1_1_4.yaml#/components/schemas/JsonSchemaFile_v1_1_4_JsonSchemaFile description: The response contains a representation of the JsonSchemaFile resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/KeyService: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/KeyService.v1_0_0.yaml#/components/schemas/KeyService_v1_0_0_KeyService description: The response contains a representation of the KeyService resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/KeyService/NVMeoFKeyPolicies: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/KeyPolicyCollection.yaml#/components/schemas/KeyPolicyCollection_KeyPolicyCollection description: The response contains a representation of the KeyPolicyCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/KeyPolicy.v1_0_0.yaml#/components/schemas/KeyPolicy_v1_0_0_KeyPolicy required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/KeyPolicy.v1_0_0.yaml#/components/schemas/KeyPolicy_v1_0_0_KeyPolicy description: A resource of type KeyPolicy has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/KeyService/NVMeoFKeyPolicies/{KeyPolicyId}: delete: parameters: - description: The value of the Id property of the KeyPolicy resource in: path name: KeyPolicyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/KeyPolicy.v1_0_0.yaml#/components/schemas/KeyPolicy_v1_0_0_KeyPolicy description: The response contains a representation of the KeyPolicy resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the KeyPolicy resource in: path name: KeyPolicyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/KeyPolicy.v1_0_0.yaml#/components/schemas/KeyPolicy_v1_0_0_KeyPolicy description: The response contains a representation of the KeyPolicy resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the KeyPolicy resource in: path name: KeyPolicyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/KeyPolicy.v1_0_0.yaml#/components/schemas/KeyPolicy_v1_0_0_KeyPolicy required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/KeyPolicy.v1_0_0.yaml#/components/schemas/KeyPolicy_v1_0_0_KeyPolicy description: The response contains a representation of the KeyPolicy resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the KeyPolicy resource in: path name: KeyPolicyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/KeyPolicy.v1_0_0.yaml#/components/schemas/KeyPolicy_v1_0_0_KeyPolicy required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/KeyPolicy.v1_0_0.yaml#/components/schemas/KeyPolicy_v1_0_0_KeyPolicy description: The response contains a representation of the KeyPolicy resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/KeyService/NVMeoFSecrets: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/KeyCollection.yaml#/components/schemas/KeyCollection_KeyCollection description: The response contains a representation of the KeyCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: A resource of type Key has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/KeyService/NVMeoFSecrets/{KeyId}: delete: parameters: - description: The value of the Id property of the Key resource in: path name: KeyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Key resource in: path name: KeyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Key resource in: path name: KeyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Key resource in: path name: KeyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/LicenseService: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LicenseService.v1_1_1.yaml#/components/schemas/LicenseService_v1_1_1_LicenseService description: The response contains a representation of the LicenseService resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LicenseService.v1_1_1.yaml#/components/schemas/LicenseService_v1_1_1_LicenseService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LicenseService.v1_1_1.yaml#/components/schemas/LicenseService_v1_1_1_LicenseService description: The response contains a representation of the LicenseService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LicenseService.v1_1_1.yaml#/components/schemas/LicenseService_v1_1_1_LicenseService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LicenseService.v1_1_1.yaml#/components/schemas/LicenseService_v1_1_1_LicenseService description: The response contains a representation of the LicenseService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/LicenseService/Actions/LicenseService.Install: post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LicenseService.v1_1_1.yaml#/components/schemas/LicenseService_v1_1_1_InstallRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Install action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Install action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/LicenseService/Licenses: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LicenseCollection.yaml#/components/schemas/LicenseCollection_LicenseCollection description: The response contains a representation of the LicenseCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/License.v1_1_2.yaml#/components/schemas/License_v1_1_2_License required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/License.v1_1_2.yaml#/components/schemas/License_v1_1_2_License description: A resource of type License has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/LicenseService/Licenses/{LicenseId}: delete: parameters: - description: The value of the Id property of the License resource in: path name: LicenseId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/License.v1_1_2.yaml#/components/schemas/License_v1_1_2_License description: The response contains a representation of the License resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the License resource in: path name: LicenseId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/License.v1_1_2.yaml#/components/schemas/License_v1_1_2_License description: The response contains a representation of the License resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ManagerCollection.yaml#/components/schemas/ManagerCollection_ManagerCollection description: The response contains a representation of the ManagerCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Manager.v1_19_0.yaml#/components/schemas/Manager_v1_19_0_Manager description: The response contains a representation of the Manager resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Manager.v1_19_0.yaml#/components/schemas/Manager_v1_19_0_Manager required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Manager.v1_19_0.yaml#/components/schemas/Manager_v1_19_0_Manager description: The response contains a representation of the Manager resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Manager.v1_19_0.yaml#/components/schemas/Manager_v1_19_0_Manager required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Manager.v1_19_0.yaml#/components/schemas/Manager_v1_19_0_Manager description: The response contains a representation of the Manager resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/Actions/Manager.ForceFailover: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Manager.v1_19_0.yaml#/components/schemas/Manager_v1_19_0_ForceFailoverRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceFailover action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceFailover action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/Actions/Manager.ModifyRedundancySet: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Manager.v1_19_0.yaml#/components/schemas/Manager_v1_19_0_ModifyRedundancySetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ModifyRedundancySet action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ModifyRedundancySet action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/Actions/Manager.Reset: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Manager.v1_19_0.yaml#/components/schemas/Manager_v1_19_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/Actions/Manager.ResetToDefaults: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Manager.v1_19_0.yaml#/components/schemas/Manager_v1_19_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/Certificates: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/Certificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/Certificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/DedicatedNetworkPorts: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/DedicatedNetworkPorts/{PortId}: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/DedicatedNetworkPorts/{PortId}/Actions/Port.Reset: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/DedicatedNetworkPorts/{PortId}/Actions/Port.ResetPPB: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/DedicatedNetworkPorts/{PortId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/DedicatedNetworkPorts/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Managers/{ManagerId}/DedicatedNetworkPorts/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/DedicatedNetworkPorts/{PortId}/Metrics: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/EthernetInterfaces: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterfaceCollection.yaml#/components/schemas/EthernetInterfaceCollection_EthernetInterfaceCollection description: The response contains a representation of the EthernetInterfaceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: A resource of type EthernetInterface has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/EthernetInterfaces/{EthernetInterfaceId}: delete: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/EthernetInterfaces/{EthernetInterfaceId}/VLANs: get: deprecated: true parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterfaceCollection.yaml#/components/schemas/VLanNetworkInterfaceCollection_VLanNetworkInterfaceCollection description: The response contains a representation of the VLanNetworkInterfaceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: A resource of type VLanNetworkInterface has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/EthernetInterfaces/{EthernetInterfaceId}/VLANs/{VLanNetworkInterfaceId}: delete: deprecated: true parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string - description: The value of the Id property of the VLanNetworkInterface resource in: path name: VLanNetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: The response contains a representation of the VLanNetworkInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of using individual EthernetInterface resources to show VLAN information. x-versionDeprecated: v1_3_0 get: deprecated: true parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string - description: The value of the Id property of the VLanNetworkInterface resource in: path name: VLanNetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: The response contains a representation of the VLanNetworkInterface resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of using individual EthernetInterface resources to show VLAN information. x-versionDeprecated: v1_3_0 patch: deprecated: true parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string - description: The value of the Id property of the VLanNetworkInterface resource in: path name: VLanNetworkInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: The response contains a representation of the VLanNetworkInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of using individual EthernetInterface resources to show VLAN information. x-versionDeprecated: v1_3_0 put: deprecated: true parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string - description: The value of the Id property of the VLanNetworkInterface resource in: path name: VLanNetworkInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: The response contains a representation of the VLanNetworkInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of using individual EthernetInterface resources to show VLAN information. x-versionDeprecated: v1_3_0 /redfish/v1/Managers/{ManagerId}/HostInterfaces: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/HostInterfaceCollection.yaml#/components/schemas/HostInterfaceCollection_HostInterfaceCollection description: The response contains a representation of the HostInterfaceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/HostInterfaces/{HostInterfaceId}: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the HostInterface resource in: path name: HostInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/HostInterface.v1_3_1.yaml#/components/schemas/HostInterface_v1_3_1_HostInterface description: The response contains a representation of the HostInterface resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the HostInterface resource in: path name: HostInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/HostInterface.v1_3_1.yaml#/components/schemas/HostInterface_v1_3_1_HostInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/HostInterface.v1_3_1.yaml#/components/schemas/HostInterface_v1_3_1_HostInterface description: The response contains a representation of the HostInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the HostInterface resource in: path name: HostInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/HostInterface.v1_3_1.yaml#/components/schemas/HostInterface_v1_3_1_HostInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/HostInterface.v1_3_1.yaml#/components/schemas/HostInterface_v1_3_1_HostInterface description: The response contains a representation of the HostInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/HostInterfaces/{HostInterfaceId}/HostEthernetInterfaces: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the HostInterface resource in: path name: HostInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterfaceCollection.yaml#/components/schemas/EthernetInterfaceCollection_EthernetInterfaceCollection description: The response contains a representation of the EthernetInterfaceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the HostInterface resource in: path name: HostInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: A resource of type EthernetInterface has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/LogServices: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogServiceCollection.yaml#/components/schemas/LogServiceCollection_LogServiceCollection description: The response contains a representation of the LogServiceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/LogServices/{LogServiceId}: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService description: The response contains a representation of the LogService resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService description: The response contains a representation of the LogService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService description: The response contains a representation of the LogService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/LogServices/{LogServiceId}/Actions/LogService.ClearLog: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_ClearLogRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearLog action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearLog action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/LogServices/{LogServiceId}/Actions/LogService.CollectDiagnosticData: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_CollectDiagnosticDataRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CollectDiagnosticData action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CollectDiagnosticData action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/LogServices/{LogServiceId}/Actions/LogService.PushDiagnosticData: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_PushDiagnosticDataRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PushDiagnosticData action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PushDiagnosticData action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/LogServices/{LogServiceId}/Entries: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntryCollection.yaml#/components/schemas/LogEntryCollection_LogEntryCollection description: The response contains a representation of the LogEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: A resource of type LogEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/LogServices/{LogServiceId}/Entries/{LogEntryId}: delete: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/ManagerDiagnosticData: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ManagerDiagnosticData.v1_2_2.yaml#/components/schemas/ManagerDiagnosticData_v1_2_2_ManagerDiagnosticData description: The response contains a representation of the ManagerDiagnosticData resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/ManagerDiagnosticData/Actions/ManagerDiagnosticData.ResetMetrics: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ManagerDiagnosticData.v1_2_2.yaml#/components/schemas/ManagerDiagnosticData_v1_2_2_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/NetworkProtocol: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ManagerNetworkProtocol.v1_10_0.yaml#/components/schemas/ManagerNetworkProtocol_v1_10_0_ManagerNetworkProtocol description: The response contains a representation of the ManagerNetworkProtocol resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ManagerNetworkProtocol.v1_10_0.yaml#/components/schemas/ManagerNetworkProtocol_v1_10_0_ManagerNetworkProtocol required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ManagerNetworkProtocol.v1_10_0.yaml#/components/schemas/ManagerNetworkProtocol_v1_10_0_ManagerNetworkProtocol description: The response contains a representation of the ManagerNetworkProtocol resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ManagerNetworkProtocol.v1_10_0.yaml#/components/schemas/ManagerNetworkProtocol_v1_10_0_ManagerNetworkProtocol required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ManagerNetworkProtocol.v1_10_0.yaml#/components/schemas/ManagerNetworkProtocol_v1_10_0_ManagerNetworkProtocol description: The response contains a representation of the ManagerNetworkProtocol resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/NetworkProtocol/HTTPS/Certificates: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/NetworkProtocol/HTTPS/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/NetworkProtocol/HTTPS/Certificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/NetworkProtocol/HTTPS/Certificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/RemoteAccountService: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AccountService.v1_15_0.yaml#/components/schemas/AccountService_v1_15_0_AccountService description: The response contains a representation of the AccountService resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AccountService.v1_15_0.yaml#/components/schemas/AccountService_v1_15_0_AccountService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AccountService.v1_15_0.yaml#/components/schemas/AccountService_v1_15_0_AccountService description: The response contains a representation of the AccountService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AccountService.v1_15_0.yaml#/components/schemas/AccountService_v1_15_0_AccountService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AccountService.v1_15_0.yaml#/components/schemas/AccountService_v1_15_0_AccountService description: The response contains a representation of the AccountService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/RemoteAccountService/Accounts: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ManagerAccountCollection.yaml#/components/schemas/ManagerAccountCollection_ManagerAccountCollection description: The response contains a representation of the ManagerAccountCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ManagerAccount.v1_12_0.yaml#/components/schemas/ManagerAccount_v1_12_0_ManagerAccount required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ManagerAccount.v1_12_0.yaml#/components/schemas/ManagerAccount_v1_12_0_ManagerAccount description: A resource of type ManagerAccount has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/RemoteAccountService/Accounts/{ManagerAccountId}: delete: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ManagerAccount.v1_12_0.yaml#/components/schemas/ManagerAccount_v1_12_0_ManagerAccount description: The response contains a representation of the ManagerAccount resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ManagerAccount.v1_12_0.yaml#/components/schemas/ManagerAccount_v1_12_0_ManagerAccount description: The response contains a representation of the ManagerAccount resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ManagerAccount.v1_12_0.yaml#/components/schemas/ManagerAccount_v1_12_0_ManagerAccount required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ManagerAccount.v1_12_0.yaml#/components/schemas/ManagerAccount_v1_12_0_ManagerAccount description: The response contains a representation of the ManagerAccount resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ManagerAccount.v1_12_0.yaml#/components/schemas/ManagerAccount_v1_12_0_ManagerAccount required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ManagerAccount.v1_12_0.yaml#/components/schemas/ManagerAccount_v1_12_0_ManagerAccount description: The response contains a representation of the ManagerAccount resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/RemoteAccountService/Accounts/{ManagerAccountId}/Actions/ManagerAccount.ChangePassword: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ManagerAccount.v1_12_0.yaml#/components/schemas/ManagerAccount_v1_12_0_ChangePasswordRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangePassword action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangePassword action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/RemoteAccountService/Accounts/{ManagerAccountId}/Certificates: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/RemoteAccountService/Accounts/{ManagerAccountId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Managers/{ManagerId}/RemoteAccountService/Accounts/{ManagerAccountId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Managers/{ManagerId}/RemoteAccountService/Accounts/{ManagerAccountId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/RemoteAccountService/Accounts/{ManagerAccountId}/Keys: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/KeyCollection.yaml#/components/schemas/KeyCollection_KeyCollection description: The response contains a representation of the KeyCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: A resource of type Key has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/RemoteAccountService/Accounts/{ManagerAccountId}/Keys/{KeyId}: delete: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string - description: The value of the Id property of the Key resource in: path name: KeyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string - description: The value of the Id property of the Key resource in: path name: KeyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string - description: The value of the Id property of the Key resource in: path name: KeyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ManagerAccount resource in: path name: ManagerAccountId required: true schema: type: string - description: The value of the Id property of the Key resource in: path name: KeyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/RemoteAccountService/ActiveDirectory/Certificates: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/RemoteAccountService/ActiveDirectory/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Managers/{ManagerId}/RemoteAccountService/ActiveDirectory/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Managers/{ManagerId}/RemoteAccountService/ActiveDirectory/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/RemoteAccountService/ExternalAccountProviders: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ExternalAccountProviderCollection.yaml#/components/schemas/ExternalAccountProviderCollection_ExternalAccountProviderCollection description: The response contains a representation of the ExternalAccountProviderCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ExternalAccountProvider.v1_7_1.yaml#/components/schemas/ExternalAccountProvider_v1_7_1_ExternalAccountProvider required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ExternalAccountProvider.v1_7_1.yaml#/components/schemas/ExternalAccountProvider_v1_7_1_ExternalAccountProvider description: A resource of type ExternalAccountProvider has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/RemoteAccountService/ExternalAccountProviders/{ExternalAccountProviderId}: delete: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ExternalAccountProvider resource in: path name: ExternalAccountProviderId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ExternalAccountProvider.v1_7_1.yaml#/components/schemas/ExternalAccountProvider_v1_7_1_ExternalAccountProvider description: The response contains a representation of the ExternalAccountProvider resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ExternalAccountProvider resource in: path name: ExternalAccountProviderId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ExternalAccountProvider.v1_7_1.yaml#/components/schemas/ExternalAccountProvider_v1_7_1_ExternalAccountProvider description: The response contains a representation of the ExternalAccountProvider resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ExternalAccountProvider resource in: path name: ExternalAccountProviderId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ExternalAccountProvider.v1_7_1.yaml#/components/schemas/ExternalAccountProvider_v1_7_1_ExternalAccountProvider required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ExternalAccountProvider.v1_7_1.yaml#/components/schemas/ExternalAccountProvider_v1_7_1_ExternalAccountProvider description: The response contains a representation of the ExternalAccountProvider resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ExternalAccountProvider resource in: path name: ExternalAccountProviderId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ExternalAccountProvider.v1_7_1.yaml#/components/schemas/ExternalAccountProvider_v1_7_1_ExternalAccountProvider required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ExternalAccountProvider.v1_7_1.yaml#/components/schemas/ExternalAccountProvider_v1_7_1_ExternalAccountProvider description: The response contains a representation of the ExternalAccountProvider resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/RemoteAccountService/ExternalAccountProviders/{ExternalAccountProviderId}/Certificates: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ExternalAccountProvider resource in: path name: ExternalAccountProviderId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ExternalAccountProvider resource in: path name: ExternalAccountProviderId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Managers/{ManagerId}/RemoteAccountService/ExternalAccountProviders/{ExternalAccountProviderId}/Certificates/{CertificateId} : delete: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ExternalAccountProvider resource in: path name: ExternalAccountProviderId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ExternalAccountProvider resource in: path name: ExternalAccountProviderId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ExternalAccountProvider resource in: path name: ExternalAccountProviderId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ExternalAccountProvider resource in: path name: ExternalAccountProviderId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Managers/{ManagerId}/RemoteAccountService/ExternalAccountProviders/{ExternalAccountProviderId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ExternalAccountProvider resource in: path name: ExternalAccountProviderId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Managers/{ManagerId}/RemoteAccountService/ExternalAccountProviders/{ExternalAccountProviderId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the ExternalAccountProvider resource in: path name: ExternalAccountProviderId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/RemoteAccountService/LDAP/Certificates: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/RemoteAccountService/LDAP/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/RemoteAccountService/LDAP/Certificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/RemoteAccountService/LDAP/Certificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/RemoteAccountService/MultiFactorAuth/ClientCertificate/Certificates: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/RemoteAccountService/MultiFactorAuth/ClientCertificate/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Managers/{ManagerId}/RemoteAccountService/MultiFactorAuth/ClientCertificate/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Managers/{ManagerId}/RemoteAccountService/MultiFactorAuth/ClientCertificate/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/RemoteAccountService/MultiFactorAuth/SecurID/Certificates: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/RemoteAccountService/MultiFactorAuth/SecurID/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Managers/{ManagerId}/RemoteAccountService/MultiFactorAuth/SecurID/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Managers/{ManagerId}/RemoteAccountService/MultiFactorAuth/SecurID/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/RemoteAccountService/Roles: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RoleCollection.yaml#/components/schemas/RoleCollection_RoleCollection description: The response contains a representation of the RoleCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Role.v1_3_1.yaml#/components/schemas/Role_v1_3_1_Role required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Role.v1_3_1.yaml#/components/schemas/Role_v1_3_1_Role description: A resource of type Role has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/RemoteAccountService/Roles/{RoleId}: delete: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Role resource in: path name: RoleId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Role.v1_3_1.yaml#/components/schemas/Role_v1_3_1_Role description: The response contains a representation of the Role resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Role resource in: path name: RoleId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Role.v1_3_1.yaml#/components/schemas/Role_v1_3_1_Role description: The response contains a representation of the Role resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Role resource in: path name: RoleId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Role.v1_3_1.yaml#/components/schemas/Role_v1_3_1_Role required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Role.v1_3_1.yaml#/components/schemas/Role_v1_3_1_Role description: The response contains a representation of the Role resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Role resource in: path name: RoleId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Role.v1_3_1.yaml#/components/schemas/Role_v1_3_1_Role required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Role.v1_3_1.yaml#/components/schemas/Role_v1_3_1_Role description: The response contains a representation of the Role resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/SecurityPolicy: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecurityPolicy.v1_0_1.yaml#/components/schemas/SecurityPolicy_v1_0_1_SecurityPolicy description: The response contains a representation of the SecurityPolicy resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecurityPolicy.v1_0_1.yaml#/components/schemas/SecurityPolicy_v1_0_1_SecurityPolicy required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecurityPolicy.v1_0_1.yaml#/components/schemas/SecurityPolicy_v1_0_1_SecurityPolicy description: The response contains a representation of the SecurityPolicy resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecurityPolicy.v1_0_1.yaml#/components/schemas/SecurityPolicy_v1_0_1_SecurityPolicy required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecurityPolicy.v1_0_1.yaml#/components/schemas/SecurityPolicy_v1_0_1_SecurityPolicy description: The response contains a representation of the SecurityPolicy resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/SecurityPolicy/SPDM/RevokedCertificates: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/SecurityPolicy/SPDM/RevokedCertificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/SecurityPolicy/SPDM/RevokedCertificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/SecurityPolicy/SPDM/RevokedCertificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/SecurityPolicy/SPDM/TrustedCertificates: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/SecurityPolicy/SPDM/TrustedCertificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/SecurityPolicy/SPDM/TrustedCertificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/SecurityPolicy/SPDM/TrustedCertificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/SecurityPolicy/TLS/Client/RevokedCertificates: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/SecurityPolicy/TLS/Client/RevokedCertificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/SecurityPolicy/TLS/Client/RevokedCertificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/SecurityPolicy/TLS/Client/RevokedCertificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/SecurityPolicy/TLS/Client/TrustedCertificates: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/SecurityPolicy/TLS/Client/TrustedCertificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/SecurityPolicy/TLS/Client/TrustedCertificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/SecurityPolicy/TLS/Client/TrustedCertificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/SecurityPolicy/TLS/Server/RevokedCertificates: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/SecurityPolicy/TLS/Server/RevokedCertificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/SecurityPolicy/TLS/Server/RevokedCertificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/SecurityPolicy/TLS/Server/RevokedCertificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/SecurityPolicy/TLS/Server/TrustedCertificates: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/SecurityPolicy/TLS/Server/TrustedCertificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/SecurityPolicy/TLS/Server/TrustedCertificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/SecurityPolicy/TLS/Server/TrustedCertificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/SerialInterfaces: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SerialInterfaceCollection.yaml#/components/schemas/SerialInterfaceCollection_SerialInterfaceCollection description: The response contains a representation of the SerialInterfaceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/SerialInterfaces/{SerialInterfaceId}: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the SerialInterface resource in: path name: SerialInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SerialInterface.v1_2_0.yaml#/components/schemas/SerialInterface_v1_2_0_SerialInterface description: The response contains a representation of the SerialInterface resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the SerialInterface resource in: path name: SerialInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SerialInterface.v1_2_0.yaml#/components/schemas/SerialInterface_v1_2_0_SerialInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SerialInterface.v1_2_0.yaml#/components/schemas/SerialInterface_v1_2_0_SerialInterface description: The response contains a representation of the SerialInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the SerialInterface resource in: path name: SerialInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SerialInterface.v1_2_0.yaml#/components/schemas/SerialInterface_v1_2_0_SerialInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SerialInterface.v1_2_0.yaml#/components/schemas/SerialInterface_v1_2_0_SerialInterface description: The response contains a representation of the SerialInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/SharedNetworkPorts: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/USBPorts: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/USBPorts/{PortId}: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/USBPorts/{PortId}/Actions/Port.Reset: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/USBPorts/{PortId}/Actions/Port.ResetPPB: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/USBPorts/{PortId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/USBPorts/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/USBPorts/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults: post: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/USBPorts/{PortId}/Metrics: get: parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/VirtualMedia: get: deprecated: true parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMediaCollection.yaml#/components/schemas/VirtualMediaCollection_VirtualMediaCollection description: The response contains a representation of the VirtualMediaCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/VirtualMedia/{VirtualMediaId}: get: deprecated: true parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMedia.v1_6_3.yaml#/components/schemas/VirtualMedia_v1_6_3_VirtualMedia description: The response contains a representation of the VirtualMedia resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMedia.v1_6_3.yaml#/components/schemas/VirtualMedia_v1_6_3_VirtualMedia required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMedia.v1_6_3.yaml#/components/schemas/VirtualMedia_v1_6_3_VirtualMedia description: The response contains a representation of the VirtualMedia resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMedia.v1_6_3.yaml#/components/schemas/VirtualMedia_v1_6_3_VirtualMedia required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMedia.v1_6_3.yaml#/components/schemas/VirtualMedia_v1_6_3_VirtualMedia description: The response contains a representation of the VirtualMedia resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/VirtualMedia/{VirtualMediaId}/Actions/VirtualMedia.EjectMedia: post: deprecated: true parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMedia.v1_6_3.yaml#/components/schemas/VirtualMedia_v1_6_3_EjectMediaRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the EjectMedia action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the EjectMedia action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Managers/{ManagerId}/VirtualMedia/{VirtualMediaId}/Actions/VirtualMedia.InsertMedia: post: deprecated: true parameters: - description: The value of the Id property of the Manager resource in: path name: ManagerId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMedia.v1_6_3.yaml#/components/schemas/VirtualMedia_v1_6_3_InsertMediaRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the InsertMedia action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the InsertMedia action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerEquipment.v1_2_1.yaml#/components/schemas/PowerEquipment_v1_2_1_PowerEquipment description: The response contains a representation of the PowerEquipment resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/ElectricalBuses: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistributionCollection.yaml#/components/schemas/PowerDistributionCollection_PowerDistributionCollection description: The response contains a representation of the PowerDistributionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/ElectricalBuses/{PowerDistributionId}: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution description: The response contains a representation of the PowerDistribution resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution description: The response contains a representation of the PowerDistribution resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution description: The response contains a representation of the PowerDistribution resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/ElectricalBuses/{PowerDistributionId}/Actions/PowerDistribution.TransferControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_TransferControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the TransferControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the TransferControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/ElectricalBuses/{PowerDistributionId}/Branches: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CircuitCollection.yaml#/components/schemas/CircuitCollection_CircuitCollection description: The response contains a representation of the CircuitCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/ElectricalBuses/{PowerDistributionId}/Branches/{CircuitId}: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/ElectricalBuses/{PowerDistributionId}/Branches/{CircuitId}/Actions/Circuit.BreakerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_BreakerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/ElectricalBuses/{PowerDistributionId}/Branches/{CircuitId}/Actions/Circuit.PowerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_PowerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/ElectricalBuses/{PowerDistributionId}/Branches/{CircuitId}/Actions/Circuit.ResetMetrics: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/ElectricalBuses/{PowerDistributionId}/Mains: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CircuitCollection.yaml#/components/schemas/CircuitCollection_CircuitCollection description: The response contains a representation of the CircuitCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/ElectricalBuses/{PowerDistributionId}/Mains/{CircuitId}: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/ElectricalBuses/{PowerDistributionId}/Mains/{CircuitId}/Actions/Circuit.BreakerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_BreakerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/ElectricalBuses/{PowerDistributionId}/Mains/{CircuitId}/Actions/Circuit.PowerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_PowerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/ElectricalBuses/{PowerDistributionId}/Mains/{CircuitId}/Actions/Circuit.ResetMetrics: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/ElectricalBuses/{PowerDistributionId}/Metrics: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistributionMetrics.v1_3_1.yaml#/components/schemas/PowerDistributionMetrics_v1_3_1_PowerDistributionMetrics description: The response contains a representation of the PowerDistributionMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/ElectricalBuses/{PowerDistributionId}/Metrics/Actions/PowerDistributionMetrics.ResetMetrics: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistributionMetrics.v1_3_1.yaml#/components/schemas/PowerDistributionMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/ElectricalBuses/{PowerDistributionId}/OutletGroups: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroupCollection.yaml#/components/schemas/OutletGroupCollection_OutletGroupCollection description: The response contains a representation of the OutletGroupCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup description: A resource of type OutletGroup has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/ElectricalBuses/{PowerDistributionId}/OutletGroups/{OutletGroupId}: delete: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the OutletGroup resource in: path name: OutletGroupId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup description: The response contains a representation of the OutletGroup resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the OutletGroup resource in: path name: OutletGroupId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup description: The response contains a representation of the OutletGroup resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the OutletGroup resource in: path name: OutletGroupId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup description: The response contains a representation of the OutletGroup resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the OutletGroup resource in: path name: OutletGroupId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup description: The response contains a representation of the OutletGroup resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/PowerEquipment/ElectricalBuses/{PowerDistributionId}/OutletGroups/{OutletGroupId}/Actions/OutletGroup.PowerControl : post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the OutletGroup resource in: path name: OutletGroupId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_PowerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/PowerEquipment/ElectricalBuses/{PowerDistributionId}/OutletGroups/{OutletGroupId}/Actions/OutletGroup.ResetMetrics : post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the OutletGroup resource in: path name: OutletGroupId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/ElectricalBuses/{PowerDistributionId}/Outlets: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletCollection.yaml#/components/schemas/OutletCollection_OutletCollection description: The response contains a representation of the OutletCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/ElectricalBuses/{PowerDistributionId}/Outlets/{OutletId}: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Outlet resource in: path name: OutletId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_Outlet description: The response contains a representation of the Outlet resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Outlet resource in: path name: OutletId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_Outlet required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_Outlet description: The response contains a representation of the Outlet resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Outlet resource in: path name: OutletId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_Outlet required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_Outlet description: The response contains a representation of the Outlet resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/ElectricalBuses/{PowerDistributionId}/Outlets/{OutletId}/Actions/Outlet.PowerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Outlet resource in: path name: OutletId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_PowerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/ElectricalBuses/{PowerDistributionId}/Outlets/{OutletId}/Actions/Outlet.ResetMetrics: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Outlet resource in: path name: OutletId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/FloorPDUs: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistributionCollection.yaml#/components/schemas/PowerDistributionCollection_PowerDistributionCollection description: The response contains a representation of the PowerDistributionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution description: The response contains a representation of the PowerDistribution resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution description: The response contains a representation of the PowerDistribution resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution description: The response contains a representation of the PowerDistribution resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Actions/PowerDistribution.TransferControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_TransferControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the TransferControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the TransferControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Branches: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CircuitCollection.yaml#/components/schemas/CircuitCollection_CircuitCollection description: The response contains a representation of the CircuitCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Branches/{CircuitId}: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Branches/{CircuitId}/Actions/Circuit.BreakerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_BreakerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Branches/{CircuitId}/Actions/Circuit.PowerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_PowerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Branches/{CircuitId}/Actions/Circuit.ResetMetrics: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Mains: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CircuitCollection.yaml#/components/schemas/CircuitCollection_CircuitCollection description: The response contains a representation of the CircuitCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Mains/{CircuitId}: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Mains/{CircuitId}/Actions/Circuit.BreakerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_BreakerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Mains/{CircuitId}/Actions/Circuit.PowerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_PowerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Mains/{CircuitId}/Actions/Circuit.ResetMetrics: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Metrics: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistributionMetrics.v1_3_1.yaml#/components/schemas/PowerDistributionMetrics_v1_3_1_PowerDistributionMetrics description: The response contains a representation of the PowerDistributionMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Metrics/Actions/PowerDistributionMetrics.ResetMetrics: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistributionMetrics.v1_3_1.yaml#/components/schemas/PowerDistributionMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Outlets/{OutletId}: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Outlet resource in: path name: OutletId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_Outlet description: The response contains a representation of the Outlet resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Outlet resource in: path name: OutletId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_Outlet required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_Outlet description: The response contains a representation of the Outlet resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Outlet resource in: path name: OutletId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_Outlet required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_Outlet description: The response contains a representation of the Outlet resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Outlets/{OutletId}/Actions/Outlet.PowerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Outlet resource in: path name: OutletId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_PowerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Outlets/{OutletId}/Actions/Outlet.ResetMetrics: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Outlet resource in: path name: OutletId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Sensors: get: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SensorCollection.yaml#/components/schemas/SensorCollection_SensorCollection description: The response contains a representation of the SensorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Sensors/{SensorId}: get: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor description: The response contains a representation of the Sensor resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor description: The response contains a representation of the Sensor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor description: The response contains a representation of the Sensor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Sensors/{SensorId}/Actions/Sensor.ResetMetrics: post: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Sensors/{SensorId}/Actions/Sensor.ResetToDefaults: post: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Subfeeds: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CircuitCollection.yaml#/components/schemas/CircuitCollection_CircuitCollection description: The response contains a representation of the CircuitCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Subfeeds/{CircuitId}: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Subfeeds/{CircuitId}/Actions/Circuit.BreakerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_BreakerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Subfeeds/{CircuitId}/Actions/Circuit.PowerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_PowerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Subfeeds/{CircuitId}/Actions/Circuit.ResetMetrics: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistributionCollection.yaml#/components/schemas/PowerDistributionCollection_PowerDistributionCollection description: The response contains a representation of the PowerDistributionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution description: The response contains a representation of the PowerDistribution resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution description: The response contains a representation of the PowerDistribution resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution description: The response contains a representation of the PowerDistribution resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/Actions/PowerDistribution.TransferControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_TransferControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the TransferControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the TransferControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/Branches: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CircuitCollection.yaml#/components/schemas/CircuitCollection_CircuitCollection description: The response contains a representation of the CircuitCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/Branches/{CircuitId}: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/Branches/{CircuitId}/Actions/Circuit.BreakerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_BreakerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/Branches/{CircuitId}/Actions/Circuit.PowerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_PowerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/Branches/{CircuitId}/Actions/Circuit.ResetMetrics: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/Mains: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CircuitCollection.yaml#/components/schemas/CircuitCollection_CircuitCollection description: The response contains a representation of the CircuitCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/Mains/{CircuitId}: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/Mains/{CircuitId}/Actions/Circuit.BreakerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_BreakerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/Mains/{CircuitId}/Actions/Circuit.PowerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_PowerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/Mains/{CircuitId}/Actions/Circuit.ResetMetrics: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/Metrics: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistributionMetrics.v1_3_1.yaml#/components/schemas/PowerDistributionMetrics_v1_3_1_PowerDistributionMetrics description: The response contains a representation of the PowerDistributionMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/Metrics/Actions/PowerDistributionMetrics.ResetMetrics: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistributionMetrics.v1_3_1.yaml#/components/schemas/PowerDistributionMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/OutletGroups: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroupCollection.yaml#/components/schemas/OutletGroupCollection_OutletGroupCollection description: The response contains a representation of the OutletGroupCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup description: A resource of type OutletGroup has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/OutletGroups/{OutletGroupId}: delete: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the OutletGroup resource in: path name: OutletGroupId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup description: The response contains a representation of the OutletGroup resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the OutletGroup resource in: path name: OutletGroupId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup description: The response contains a representation of the OutletGroup resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the OutletGroup resource in: path name: OutletGroupId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup description: The response contains a representation of the OutletGroup resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the OutletGroup resource in: path name: OutletGroupId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup description: The response contains a representation of the OutletGroup resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/OutletGroups/{OutletGroupId}/Actions/OutletGroup.PowerControl : post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the OutletGroup resource in: path name: OutletGroupId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_PowerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/OutletGroups/{OutletGroupId}/Actions/OutletGroup.ResetMetrics : post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the OutletGroup resource in: path name: OutletGroupId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/Outlets: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletCollection.yaml#/components/schemas/OutletCollection_OutletCollection description: The response contains a representation of the OutletCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/Outlets/{OutletId}: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Outlet resource in: path name: OutletId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_Outlet description: The response contains a representation of the Outlet resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Outlet resource in: path name: OutletId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_Outlet required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_Outlet description: The response contains a representation of the Outlet resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Outlet resource in: path name: OutletId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_Outlet required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_Outlet description: The response contains a representation of the Outlet resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/Outlets/{OutletId}/Actions/Outlet.PowerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Outlet resource in: path name: OutletId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_PowerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/Outlets/{OutletId}/Actions/Outlet.ResetMetrics: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Outlet resource in: path name: OutletId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/PowerSupplies: get: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerSupplyCollection.yaml#/components/schemas/PowerSupplyCollection_PowerSupplyCollection description: The response contains a representation of the PowerSupplyCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/PowerSupplies/{PowerSupplyId}: get: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the PowerSupply resource in: path name: PowerSupplyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerSupply.v1_5_3.yaml#/components/schemas/PowerSupply_v1_5_3_PowerSupply description: The response contains a representation of the PowerSupply resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the PowerSupply resource in: path name: PowerSupplyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerSupply.v1_5_3.yaml#/components/schemas/PowerSupply_v1_5_3_PowerSupply required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerSupply.v1_5_3.yaml#/components/schemas/PowerSupply_v1_5_3_PowerSupply description: The response contains a representation of the PowerSupply resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the PowerSupply resource in: path name: PowerSupplyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerSupply.v1_5_3.yaml#/components/schemas/PowerSupply_v1_5_3_PowerSupply required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerSupply.v1_5_3.yaml#/components/schemas/PowerSupply_v1_5_3_PowerSupply description: The response contains a representation of the PowerSupply resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/PowerSupplies/{PowerSupplyId}/Actions/PowerSupply.Reset: post: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the PowerSupply resource in: path name: PowerSupplyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerSupply.v1_5_3.yaml#/components/schemas/PowerSupply_v1_5_3_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/PowerSupplies/{PowerSupplyId}/Assembly: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the PowerSupply resource in: path name: PowerSupplyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the PowerSupply resource in: path name: PowerSupplyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the PowerSupply resource in: path name: PowerSupplyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/PowerSupplies/{PowerSupplyId}/Metrics: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the PowerSupply resource in: path name: PowerSupplyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerSupplyMetrics.v1_1_1.yaml#/components/schemas/PowerSupplyMetrics_v1_1_1_PowerSupplyMetrics description: The response contains a representation of the PowerSupplyMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/PowerSupplies/{PowerSupplyId}/Metrics/Actions/PowerSupplyMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the PowerSupply resource in: path name: PowerSupplyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerSupplyMetrics.v1_1_1.yaml#/components/schemas/PowerSupplyMetrics_v1_1_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/Sensors: get: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SensorCollection.yaml#/components/schemas/SensorCollection_SensorCollection description: The response contains a representation of the SensorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/Sensors/{SensorId}: get: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor description: The response contains a representation of the Sensor resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor description: The response contains a representation of the Sensor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor description: The response contains a representation of the Sensor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/Sensors/{SensorId}/Actions/Sensor.ResetMetrics: post: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/Sensors/{SensorId}/Actions/Sensor.ResetToDefaults: post: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/RackPDUs: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistributionCollection.yaml#/components/schemas/PowerDistributionCollection_PowerDistributionCollection description: The response contains a representation of the PowerDistributionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution description: The response contains a representation of the PowerDistribution resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution description: The response contains a representation of the PowerDistribution resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution description: The response contains a representation of the PowerDistribution resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/Actions/PowerDistribution.TransferControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_TransferControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the TransferControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the TransferControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/Branches: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CircuitCollection.yaml#/components/schemas/CircuitCollection_CircuitCollection description: The response contains a representation of the CircuitCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/Branches/{CircuitId}: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/Branches/{CircuitId}/Actions/Circuit.BreakerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_BreakerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/Branches/{CircuitId}/Actions/Circuit.PowerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_PowerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/Branches/{CircuitId}/Actions/Circuit.ResetMetrics: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/Mains: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CircuitCollection.yaml#/components/schemas/CircuitCollection_CircuitCollection description: The response contains a representation of the CircuitCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/Mains/{CircuitId}: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/Mains/{CircuitId}/Actions/Circuit.BreakerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_BreakerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/Mains/{CircuitId}/Actions/Circuit.PowerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_PowerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/Mains/{CircuitId}/Actions/Circuit.ResetMetrics: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/Metrics: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistributionMetrics.v1_3_1.yaml#/components/schemas/PowerDistributionMetrics_v1_3_1_PowerDistributionMetrics description: The response contains a representation of the PowerDistributionMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/Metrics/Actions/PowerDistributionMetrics.ResetMetrics: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistributionMetrics.v1_3_1.yaml#/components/schemas/PowerDistributionMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/OutletGroups: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroupCollection.yaml#/components/schemas/OutletGroupCollection_OutletGroupCollection description: The response contains a representation of the OutletGroupCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup description: A resource of type OutletGroup has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/OutletGroups/{OutletGroupId}: delete: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the OutletGroup resource in: path name: OutletGroupId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup description: The response contains a representation of the OutletGroup resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the OutletGroup resource in: path name: OutletGroupId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup description: The response contains a representation of the OutletGroup resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the OutletGroup resource in: path name: OutletGroupId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup description: The response contains a representation of the OutletGroup resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the OutletGroup resource in: path name: OutletGroupId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup description: The response contains a representation of the OutletGroup resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/OutletGroups/{OutletGroupId}/Actions/OutletGroup.PowerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the OutletGroup resource in: path name: OutletGroupId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_PowerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/OutletGroups/{OutletGroupId}/Actions/OutletGroup.ResetMetrics: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the OutletGroup resource in: path name: OutletGroupId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/Outlets: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletCollection.yaml#/components/schemas/OutletCollection_OutletCollection description: The response contains a representation of the OutletCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/Outlets/{OutletId}: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Outlet resource in: path name: OutletId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_Outlet description: The response contains a representation of the Outlet resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Outlet resource in: path name: OutletId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_Outlet required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_Outlet description: The response contains a representation of the Outlet resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Outlet resource in: path name: OutletId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_Outlet required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_Outlet description: The response contains a representation of the Outlet resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/Outlets/{OutletId}/Actions/Outlet.PowerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Outlet resource in: path name: OutletId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_PowerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/Outlets/{OutletId}/Actions/Outlet.ResetMetrics: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Outlet resource in: path name: OutletId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/Sensors: get: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SensorCollection.yaml#/components/schemas/SensorCollection_SensorCollection description: The response contains a representation of the SensorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/Sensors/{SensorId}: get: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor description: The response contains a representation of the Sensor resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor description: The response contains a representation of the Sensor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor description: The response contains a representation of the Sensor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/Sensors/{SensorId}/Actions/Sensor.ResetMetrics: post: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/Sensors/{SensorId}/Actions/Sensor.ResetToDefaults: post: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistributionCollection.yaml#/components/schemas/PowerDistributionCollection_PowerDistributionCollection description: The response contains a representation of the PowerDistributionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution description: The response contains a representation of the PowerDistribution resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution description: The response contains a representation of the PowerDistribution resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution description: The response contains a representation of the PowerDistribution resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Actions/PowerDistribution.TransferControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_TransferControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the TransferControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the TransferControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Branches: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CircuitCollection.yaml#/components/schemas/CircuitCollection_CircuitCollection description: The response contains a representation of the CircuitCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Branches/{CircuitId}: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Branches/{CircuitId}/Actions/Circuit.BreakerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_BreakerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Branches/{CircuitId}/Actions/Circuit.PowerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_PowerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Branches/{CircuitId}/Actions/Circuit.ResetMetrics: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Feeders: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CircuitCollection.yaml#/components/schemas/CircuitCollection_CircuitCollection description: The response contains a representation of the CircuitCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Feeders/{CircuitId}: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Feeders/{CircuitId}/Actions/Circuit.BreakerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_BreakerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Feeders/{CircuitId}/Actions/Circuit.PowerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_PowerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Feeders/{CircuitId}/Actions/Circuit.ResetMetrics: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Mains: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CircuitCollection.yaml#/components/schemas/CircuitCollection_CircuitCollection description: The response contains a representation of the CircuitCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Mains/{CircuitId}: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Mains/{CircuitId}/Actions/Circuit.BreakerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_BreakerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Mains/{CircuitId}/Actions/Circuit.PowerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_PowerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Mains/{CircuitId}/Actions/Circuit.ResetMetrics: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Metrics: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistributionMetrics.v1_3_1.yaml#/components/schemas/PowerDistributionMetrics_v1_3_1_PowerDistributionMetrics description: The response contains a representation of the PowerDistributionMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Metrics/Actions/PowerDistributionMetrics.ResetMetrics: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistributionMetrics.v1_3_1.yaml#/components/schemas/PowerDistributionMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Sensors: get: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SensorCollection.yaml#/components/schemas/SensorCollection_SensorCollection description: The response contains a representation of the SensorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Sensors/{SensorId}: get: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor description: The response contains a representation of the Sensor resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor description: The response contains a representation of the Sensor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor description: The response contains a representation of the Sensor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Sensors/{SensorId}/Actions/Sensor.ResetMetrics: post: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Sensors/{SensorId}/Actions/Sensor.ResetToDefaults: post: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Subfeeds: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CircuitCollection.yaml#/components/schemas/CircuitCollection_CircuitCollection description: The response contains a representation of the CircuitCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Subfeeds/{CircuitId}: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Subfeeds/{CircuitId}/Actions/Circuit.BreakerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_BreakerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Subfeeds/{CircuitId}/Actions/Circuit.PowerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_PowerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Subfeeds/{CircuitId}/Actions/Circuit.ResetMetrics: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistributionCollection.yaml#/components/schemas/PowerDistributionCollection_PowerDistributionCollection description: The response contains a representation of the PowerDistributionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution description: The response contains a representation of the PowerDistribution resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution description: The response contains a representation of the PowerDistribution resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_PowerDistribution description: The response contains a representation of the PowerDistribution resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Actions/PowerDistribution.TransferControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistribution.v1_3_3.yaml#/components/schemas/PowerDistribution_v1_3_3_TransferControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the TransferControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the TransferControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Branches: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CircuitCollection.yaml#/components/schemas/CircuitCollection_CircuitCollection description: The response contains a representation of the CircuitCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Branches/{CircuitId}: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Branches/{CircuitId}/Actions/Circuit.BreakerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_BreakerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Branches/{CircuitId}/Actions/Circuit.PowerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_PowerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Branches/{CircuitId}/Actions/Circuit.ResetMetrics: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Feeders: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CircuitCollection.yaml#/components/schemas/CircuitCollection_CircuitCollection description: The response contains a representation of the CircuitCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Feeders/{CircuitId}: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Feeders/{CircuitId}/Actions/Circuit.BreakerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_BreakerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Feeders/{CircuitId}/Actions/Circuit.PowerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_PowerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Feeders/{CircuitId}/Actions/Circuit.ResetMetrics: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Mains: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CircuitCollection.yaml#/components/schemas/CircuitCollection_CircuitCollection description: The response contains a representation of the CircuitCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Mains/{CircuitId}: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_Circuit description: The response contains a representation of the Circuit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Mains/{CircuitId}/Actions/Circuit.BreakerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_BreakerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the BreakerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Mains/{CircuitId}/Actions/Circuit.PowerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_PowerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Mains/{CircuitId}/Actions/Circuit.ResetMetrics: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Circuit resource in: path name: CircuitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Circuit.v1_7_1.yaml#/components/schemas/Circuit_v1_7_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Metrics: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistributionMetrics.v1_3_1.yaml#/components/schemas/PowerDistributionMetrics_v1_3_1_PowerDistributionMetrics description: The response contains a representation of the PowerDistributionMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Metrics/Actions/PowerDistributionMetrics.ResetMetrics: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PowerDistributionMetrics.v1_3_1.yaml#/components/schemas/PowerDistributionMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/OutletGroups: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroupCollection.yaml#/components/schemas/OutletGroupCollection_OutletGroupCollection description: The response contains a representation of the OutletGroupCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup description: A resource of type OutletGroup has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/OutletGroups/{OutletGroupId}: delete: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the OutletGroup resource in: path name: OutletGroupId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup description: The response contains a representation of the OutletGroup resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the OutletGroup resource in: path name: OutletGroupId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup description: The response contains a representation of the OutletGroup resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the OutletGroup resource in: path name: OutletGroupId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup description: The response contains a representation of the OutletGroup resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the OutletGroup resource in: path name: OutletGroupId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_OutletGroup description: The response contains a representation of the OutletGroup resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/OutletGroups/{OutletGroupId}/Actions/OutletGroup.PowerControl : post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the OutletGroup resource in: path name: OutletGroupId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_PowerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/OutletGroups/{OutletGroupId}/Actions/OutletGroup.ResetMetrics : post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the OutletGroup resource in: path name: OutletGroupId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletGroup.v1_1_2.yaml#/components/schemas/OutletGroup_v1_1_2_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Outlets: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OutletCollection.yaml#/components/schemas/OutletCollection_OutletCollection description: The response contains a representation of the OutletCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Outlets/{OutletId}: get: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Outlet resource in: path name: OutletId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_Outlet description: The response contains a representation of the Outlet resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Outlet resource in: path name: OutletId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_Outlet required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_Outlet description: The response contains a representation of the Outlet resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Outlet resource in: path name: OutletId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_Outlet required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_Outlet description: The response contains a representation of the Outlet resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Outlets/{OutletId}/Actions/Outlet.PowerControl: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Outlet resource in: path name: OutletId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_PowerControlRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PowerControl action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Outlets/{OutletId}/Actions/Outlet.ResetMetrics: post: parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Outlet resource in: path name: OutletId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Outlet.v1_4_2.yaml#/components/schemas/Outlet_v1_4_2_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Sensors: get: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SensorCollection.yaml#/components/schemas/SensorCollection_SensorCollection description: The response contains a representation of the SensorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Sensors/{SensorId}: get: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor description: The response contains a representation of the Sensor resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor description: The response contains a representation of the Sensor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_Sensor description: The response contains a representation of the Sensor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Sensors/{SensorId}/Actions/Sensor.ResetMetrics: post: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Sensors/{SensorId}/Actions/Sensor.ResetToDefaults: post: deprecated: true parameters: - description: The value of the Id property of the PowerDistribution resource in: path name: PowerDistributionId required: true schema: type: string - description: The value of the Id property of the Sensor resource in: path name: SensorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Sensor.v1_8_1.yaml#/components/schemas/Sensor_v1_8_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/RegisteredClients: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RegisteredClientCollection.yaml#/components/schemas/RegisteredClientCollection_RegisteredClientCollection description: The response contains a representation of the RegisteredClientCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RegisteredClient.v1_1_1.yaml#/components/schemas/RegisteredClient_v1_1_1_RegisteredClient required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RegisteredClient.v1_1_1.yaml#/components/schemas/RegisteredClient_v1_1_1_RegisteredClient description: A resource of type RegisteredClient has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/RegisteredClients/{RegisteredClientId}: delete: parameters: - description: The value of the Id property of the RegisteredClient resource in: path name: RegisteredClientId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RegisteredClient.v1_1_1.yaml#/components/schemas/RegisteredClient_v1_1_1_RegisteredClient description: The response contains a representation of the RegisteredClient resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the RegisteredClient resource in: path name: RegisteredClientId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RegisteredClient.v1_1_1.yaml#/components/schemas/RegisteredClient_v1_1_1_RegisteredClient description: The response contains a representation of the RegisteredClient resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the RegisteredClient resource in: path name: RegisteredClientId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RegisteredClient.v1_1_1.yaml#/components/schemas/RegisteredClient_v1_1_1_RegisteredClient required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RegisteredClient.v1_1_1.yaml#/components/schemas/RegisteredClient_v1_1_1_RegisteredClient description: The response contains a representation of the RegisteredClient resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the RegisteredClient resource in: path name: RegisteredClientId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RegisteredClient.v1_1_1.yaml#/components/schemas/RegisteredClient_v1_1_1_RegisteredClient required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RegisteredClient.v1_1_1.yaml#/components/schemas/RegisteredClient_v1_1_1_RegisteredClient description: The response contains a representation of the RegisteredClient resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Registries: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MessageRegistryFileCollection.yaml#/components/schemas/MessageRegistryFileCollection_MessageRegistryFileCollection description: The response contains a representation of the MessageRegistryFileCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Registries/{MessageRegistryFileId}: get: parameters: - description: The value of the Id property of the MessageRegistryFile resource in: path name: MessageRegistryFileId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MessageRegistryFile.v1_1_4.yaml#/components/schemas/MessageRegistryFile_v1_1_4_MessageRegistryFile description: The response contains a representation of the MessageRegistryFile resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ResourceBlockCollection.yaml#/components/schemas/ResourceBlockCollection_ResourceBlockCollection description: The response contains a representation of the ResourceBlockCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ResourceBlock.v1_4_2.yaml#/components/schemas/ResourceBlock_v1_4_2_ResourceBlock required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ResourceBlock.v1_4_2.yaml#/components/schemas/ResourceBlock_v1_4_2_ResourceBlock description: A resource of type ResourceBlock has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}: delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ResourceBlock.v1_4_2.yaml#/components/schemas/ResourceBlock_v1_4_2_ResourceBlock description: The response contains a representation of the ResourceBlock resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ResourceBlock.v1_4_2.yaml#/components/schemas/ResourceBlock_v1_4_2_ResourceBlock description: The response contains a representation of the ResourceBlock resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ResourceBlock.v1_4_2.yaml#/components/schemas/ResourceBlock_v1_4_2_ResourceBlock required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ResourceBlock.v1_4_2.yaml#/components/schemas/ResourceBlock_v1_4_2_ResourceBlock description: The response contains a representation of the ResourceBlock resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ResourceBlock.v1_4_2.yaml#/components/schemas/ResourceBlock_v1_4_2_ResourceBlock required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ResourceBlock.v1_4_2.yaml#/components/schemas/ResourceBlock_v1_4_2_ResourceBlock description: The response contains a representation of the ResourceBlock resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive description: The response contains a representation of the Drive resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive description: The response contains a representation of the Drive resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive description: The response contains a representation of the Drive resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}/Actions/Drive.Reset: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}/Actions/Drive.RevertToOriginalFactoryState: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_RevertToOriginalFactoryStateRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RevertToOriginalFactoryState action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RevertToOriginalFactoryState action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}/Actions/Drive.SecureErase: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_SecureEraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecureErase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecureErase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}/Assembly: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}/Certificates: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}/Certificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}/Certificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Drives/{DriveId}/Metrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/DriveMetrics.v1_2_0.yaml#/components/schemas/DriveMetrics_v1_2_0_DriveMetrics description: The response contains a representation of the DriveMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/EthernetInterfaces/{EthernetInterfaceId}: delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/EthernetInterfaces/{EthernetInterfaceId}/VLANs: get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterfaceCollection.yaml#/components/schemas/VLanNetworkInterfaceCollection_VLanNetworkInterfaceCollection description: The response contains a representation of the VLanNetworkInterfaceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: A resource of type VLanNetworkInterface has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/EthernetInterfaces/{EthernetInterfaceId}/VLANs/{VLanNetworkInterfaceId}: delete: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string - description: The value of the Id property of the VLanNetworkInterface resource in: path name: VLanNetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: The response contains a representation of the VLanNetworkInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of using individual EthernetInterface resources to show VLAN information. x-versionDeprecated: v1_3_0 get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string - description: The value of the Id property of the VLanNetworkInterface resource in: path name: VLanNetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: The response contains a representation of the VLanNetworkInterface resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of using individual EthernetInterface resources to show VLAN information. x-versionDeprecated: v1_3_0 patch: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string - description: The value of the Id property of the VLanNetworkInterface resource in: path name: VLanNetworkInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: The response contains a representation of the VLanNetworkInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of using individual EthernetInterface resources to show VLAN information. x-versionDeprecated: v1_3_0 put: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string - description: The value of the Id property of the VLanNetworkInterface resource in: path name: VLanNetworkInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: The response contains a representation of the VLanNetworkInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of using individual EthernetInterface resources to show VLAN information. x-versionDeprecated: v1_3_0 /redfish/v1/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory description: The response contains a representation of the Memory resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory description: The response contains a representation of the Memory resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory description: The response contains a representation of the Memory resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Actions/Memory.DisableMasterPassphrase: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_DisableMasterPassphraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the DisableMasterPassphrase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the DisableMasterPassphrase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Actions/Memory.DisablePassphrase: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_DisablePassphraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the DisablePassphrase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the DisablePassphrase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Actions/Memory.FreezeSecurityState: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_FreezeSecurityStateRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the FreezeSecurityState action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the FreezeSecurityState action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Actions/Memory.InjectPersistentPoison: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_InjectPersistentPoisonRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the InjectPersistentPoison action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the InjectPersistentPoison action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Actions/Memory.OverwriteUnit: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_OverwriteUnitRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the OverwriteUnit action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the OverwriteUnit action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Actions/Memory.Reset: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Actions/Memory.ResetToDefaults: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Actions/Memory.ScanMedia: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_ScanMediaRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ScanMedia action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ScanMedia action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Actions/Memory.SecureEraseUnit: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_SecureEraseUnitRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecureEraseUnit action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecureEraseUnit action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Actions/Memory.SetMasterPassphrase: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_SetMasterPassphraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetMasterPassphrase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetMasterPassphrase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Actions/Memory.SetPassphrase: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_SetPassphraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetPassphrase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetPassphrase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Actions/Memory.UnlockUnit: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_UnlockUnitRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the UnlockUnit action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the UnlockUnit action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Assembly: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Certificates: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Certificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/Certificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/MemoryMetrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryMetrics.v1_7_2.yaml#/components/schemas/MemoryMetrics_v1_7_2_MemoryMetrics description: The response contains a representation of the MemoryMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Memory/{MemoryId}/MemoryMetrics/Actions/MemoryMetrics.ClearCurrentPeriod: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryMetrics.v1_7_2.yaml#/components/schemas/MemoryMetrics_v1_7_2_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/NetworkInterfaces/{NetworkInterfaceId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkInterface.v1_2_1.yaml#/components/schemas/NetworkInterface_v1_2_1_NetworkInterface description: The response contains a representation of the NetworkInterface resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/NetworkInterfaces/{NetworkInterfaceId}/NetworkDeviceFunctions: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkDeviceFunctionCollection.yaml#/components/schemas/NetworkDeviceFunctionCollection_NetworkDeviceFunctionCollection description: The response contains a representation of the NetworkDeviceFunctionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/NetworkInterfaces/{NetworkInterfaceId}/NetworkDeviceFunctions/{NetworkDeviceFunctionId}/AllowDeny : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDenyCollection.yaml#/components/schemas/AllowDenyCollection_AllowDenyCollection description: The response contains a representation of the AllowDenyCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: A resource of type AllowDeny has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/NetworkInterfaces/{NetworkInterfaceId}/NetworkDeviceFunctions/{NetworkDeviceFunctionId}/AllowDeny/{AllowDenyId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the AllowDeny resource in: path name: AllowDenyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: The response contains a representation of the AllowDeny resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the AllowDeny resource in: path name: AllowDenyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: The response contains a representation of the AllowDeny resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the AllowDeny resource in: path name: AllowDenyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: The response contains a representation of the AllowDeny resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the AllowDeny resource in: path name: AllowDenyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: The response contains a representation of the AllowDeny resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/NetworkInterfaces/{NetworkInterfaceId}/NetworkPorts: get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkPortCollection.yaml#/components/schemas/NetworkPortCollection_NetworkPortCollection description: The response contains a representation of the NetworkPortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of the PortCollection schema. x-versionDeprecated: '2020.4' /redfish/v1/ResourceBlocks/{ResourceBlockId}/NetworkInterfaces/{NetworkInterfaceId}/Ports: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/AccelerationFunctions: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AccelerationFunctionCollection.yaml#/components/schemas/AccelerationFunctionCollection_AccelerationFunctionCollection description: The response contains a representation of the AccelerationFunctionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/AccelerationFunctions/{AccelerationFunctionId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the AccelerationFunction resource in: path name: AccelerationFunctionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AccelerationFunction.v1_0_4.yaml#/components/schemas/AccelerationFunction_v1_0_4_AccelerationFunction description: The response contains a representation of the AccelerationFunction resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Actions/Processor.Reset: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Actions/Processor.ResetToDefaults: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Assembly: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Certificates: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/MemorySummary/MemoryMetrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryMetrics.v1_7_2.yaml#/components/schemas/MemoryMetrics_v1_7_2_MemoryMetrics description: The response contains a representation of the MemoryMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/MemorySummary/MemoryMetrics/Actions/MemoryMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryMetrics.v1_7_2.yaml#/components/schemas/MemoryMetrics_v1_7_2_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Ports: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Ports/{PortId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Ports/{PortId}/Actions/Port.Reset: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Ports/{PortId}/Actions/Port.ResetPPB: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Ports/{PortId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/Ports/{PortId}/Metrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/ProcessorMetrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ProcessorMetrics description: The response contains a representation of the ProcessorMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/ProcessorMetrics/Actions/ProcessorMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/SubProcessors: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorCollection.yaml#/components/schemas/ProcessorCollection_ProcessorCollection description: The response contains a representation of the ProcessorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/Actions/Processor.Reset: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/Actions/Processor.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/Assembly: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/ProcessorMetrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ProcessorMetrics description: The response contains a representation of the ProcessorMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/ProcessorMetrics/Actions/ProcessorMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorCollection.yaml#/components/schemas/ProcessorCollection_ProcessorCollection description: The response contains a representation of the ProcessorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/Actions/Processor.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/Actions/Processor.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/Assembly : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/ProcessorMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ProcessorMetrics description: The response contains a representation of the ProcessorMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/ProcessorMetrics/Actions/ProcessorMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/SimpleStorage/{SimpleStorageId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the SimpleStorage resource in: path name: SimpleStorageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SimpleStorage.v1_3_1.yaml#/components/schemas/SimpleStorage_v1_3_1_SimpleStorage description: The response contains a representation of the SimpleStorage resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageCollection.yaml#/components/schemas/StorageCollection_StorageCollection description: The response contains a representation of the StorageCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage description: The response contains a representation of the Storage resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage description: The response contains a representation of the Storage resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage description: The response contains a representation of the Storage resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Actions/Storage.ResetToDefaults: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Actions/Storage.SetEncryptionKey: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_SetEncryptionKeyRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetEncryptionKey action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetEncryptionKey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageControllerCollection.yaml#/components/schemas/StorageControllerCollection_StorageControllerCollection description: The response contains a representation of the StorageControllerCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{ControllerId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController description: The response contains a representation of the StorageController resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController description: The response contains a representation of the StorageController resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController description: The response contains a representation of the StorageController resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{ControllerId}/Actions/StorageController.AttachNamespaces : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachNamespacesRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachDetachNamespacesResponse description: The response contains the results of the AttachNamespaces action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachDetachNamespacesResponse description: The response contains the results of the AttachNamespaces action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{ControllerId}/Actions/StorageController.DetachNamespaces : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_DetachNamespacesRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachDetachNamespacesResponse description: The response contains the results of the DetachNamespaces action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachDetachNamespacesResponse description: The response contains the results of the DetachNamespaces action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{ControllerId}/Actions/StorageController.SecurityReceive : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_SecurityReceiveRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_SecurityReceiveResponse description: The response contains the results of the SecurityReceive action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_SecurityReceiveResponse description: The response contains the results of the SecurityReceive action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{ControllerId}/Actions/StorageController.SecuritySend : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_SecuritySendRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecuritySend action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecuritySend action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{ControllerId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{ControllerId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{ControllerId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{ControllerId}/Metrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageControllerMetrics.v1_0_2.yaml#/components/schemas/StorageControllerMetrics_v1_0_2_StorageControllerMetrics description: The response contains a representation of the StorageControllerMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Assembly: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates/{CertificateId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/Actions/Port.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/Actions/Port.ResetPPB : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/Metrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive description: The response contains a representation of the Drive resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive description: The response contains a representation of the Drive resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive description: The response contains a representation of the Drive resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}/Actions/Drive.Reset: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}/Actions/Drive.RevertToOriginalFactoryState : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_RevertToOriginalFactoryStateRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RevertToOriginalFactoryState action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RevertToOriginalFactoryState action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}/Actions/Drive.SecureErase: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_SecureEraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecureErase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecureErase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}/Assembly: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}/Certificates: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Drives/{DriveId}/Metrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/DriveMetrics.v1_2_0.yaml#/components/schemas/DriveMetrics_v1_2_0_DriveMetrics description: The response contains a representation of the DriveMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Assembly: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates/{CertificateId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/Actions/Port.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/Actions/Port.ResetPPB : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/Metrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Volumes: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/VolumeCollection.yaml#/components/schemas/VolumeCollection_VolumeCollection description: The response contains a representation of the VolumeCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: A resource of type Volume has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Volumes/{VolumeId}: delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.AssignReplicaTarget: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_AssignReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.ChangeRAIDLayout: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ChangeRAIDLayoutRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.CheckConsistency: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CheckConsistencyRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.CreateReplicaTarget: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CreateReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.ForceEnable: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ForceEnableRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.Initialize: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_InitializeRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.RemoveReplicaRelationship : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_RemoveReplicaRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.ResumeReplication: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ResumeReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.ReverseReplicationRelationship : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ReverseReplicationRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.SplitReplication: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SplitReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.SuspendReplication: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SuspendReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}: delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_ComputerSystem description: The response contains a representation of the ComputerSystem resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_ComputerSystem description: The response contains a representation of the ComputerSystem resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_ComputerSystem required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_ComputerSystem description: The response contains a representation of the ComputerSystem resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_ComputerSystem required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_ComputerSystem description: The response contains a representation of the ComputerSystem resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Actions/ComputerSystem.AddResourceBlock: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_AddResourceBlockRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AddResourceBlock action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AddResourceBlock action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Actions/ComputerSystem.Decommission: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_DecommissionRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Decommission action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Decommission action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Actions/ComputerSystem.RemoveResourceBlock: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_RemoveResourceBlockRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveResourceBlock action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveResourceBlock action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Actions/ComputerSystem.Reset: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Actions/ComputerSystem.SetDefaultBootOrder: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_SetDefaultBootOrderRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetDefaultBootOrder action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetDefaultBootOrder action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Bios: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Bios.v1_2_2.yaml#/components/schemas/Bios_v1_2_2_Bios description: The response contains a representation of the Bios resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Bios.v1_2_2.yaml#/components/schemas/Bios_v1_2_2_Bios required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Bios.v1_2_2.yaml#/components/schemas/Bios_v1_2_2_Bios description: The response contains a representation of the Bios resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Bios.v1_2_2.yaml#/components/schemas/Bios_v1_2_2_Bios required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Bios.v1_2_2.yaml#/components/schemas/Bios_v1_2_2_Bios description: The response contains a representation of the Bios resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Bios/Actions/Bios.ChangePassword: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Bios.v1_2_2.yaml#/components/schemas/Bios_v1_2_2_ChangePasswordRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangePassword action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangePassword action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Bios/Actions/Bios.ResetBios: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Bios.v1_2_2.yaml#/components/schemas/Bios_v1_2_2_ResetBiosRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetBios action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetBios action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Boot/Certificates: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Boot/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Boot/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Boot/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/BootOptions: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BootOptionCollection.yaml#/components/schemas/BootOptionCollection_BootOptionCollection description: The response contains a representation of the BootOptionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BootOption.v1_0_5.yaml#/components/schemas/BootOption_v1_0_5_BootOption required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BootOption.v1_0_5.yaml#/components/schemas/BootOption_v1_0_5_BootOption description: A resource of type BootOption has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/BootOptions/{BootOptionId}: delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the BootOption resource in: path name: BootOptionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BootOption.v1_0_5.yaml#/components/schemas/BootOption_v1_0_5_BootOption description: The response contains a representation of the BootOption resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the BootOption resource in: path name: BootOptionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BootOption.v1_0_5.yaml#/components/schemas/BootOption_v1_0_5_BootOption description: The response contains a representation of the BootOption resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the BootOption resource in: path name: BootOptionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BootOption.v1_0_5.yaml#/components/schemas/BootOption_v1_0_5_BootOption required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BootOption.v1_0_5.yaml#/components/schemas/BootOption_v1_0_5_BootOption description: The response contains a representation of the BootOption resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the BootOption resource in: path name: BootOptionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BootOption.v1_0_5.yaml#/components/schemas/BootOption_v1_0_5_BootOption required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BootOption.v1_0_5.yaml#/components/schemas/BootOption_v1_0_5_BootOption description: The response contains a representation of the BootOption resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Certificates: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/EthernetInterfaces: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterfaceCollection.yaml#/components/schemas/EthernetInterfaceCollection_EthernetInterfaceCollection description: The response contains a representation of the EthernetInterfaceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: A resource of type EthernetInterface has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/EthernetInterfaces/{EthernetInterfaceId}: delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/EthernetInterfaces/{EthernetInterfaceId}/VLANs: get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterfaceCollection.yaml#/components/schemas/VLanNetworkInterfaceCollection_VLanNetworkInterfaceCollection description: The response contains a representation of the VLanNetworkInterfaceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: A resource of type VLanNetworkInterface has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/EthernetInterfaces/{EthernetInterfaceId}/VLANs/{VLanNetworkInterfaceId} : delete: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string - description: The value of the Id property of the VLanNetworkInterface resource in: path name: VLanNetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: The response contains a representation of the VLanNetworkInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of using individual EthernetInterface resources to show VLAN information. x-versionDeprecated: v1_3_0 get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string - description: The value of the Id property of the VLanNetworkInterface resource in: path name: VLanNetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: The response contains a representation of the VLanNetworkInterface resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of using individual EthernetInterface resources to show VLAN information. x-versionDeprecated: v1_3_0 patch: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string - description: The value of the Id property of the VLanNetworkInterface resource in: path name: VLanNetworkInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: The response contains a representation of the VLanNetworkInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of using individual EthernetInterface resources to show VLAN information. x-versionDeprecated: v1_3_0 put: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string - description: The value of the Id property of the VLanNetworkInterface resource in: path name: VLanNetworkInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: The response contains a representation of the VLanNetworkInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of using individual EthernetInterface resources to show VLAN information. x-versionDeprecated: v1_3_0 /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FabricAdapterCollection.yaml#/components/schemas/FabricAdapterCollection_FabricAdapterCollection description: The response contains a representation of the FabricAdapterCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FabricAdapter.v1_5_2.yaml#/components/schemas/FabricAdapter_v1_5_2_FabricAdapter description: The response contains a representation of the FabricAdapter resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FabricAdapter.v1_5_2.yaml#/components/schemas/FabricAdapter_v1_5_2_FabricAdapter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FabricAdapter.v1_5_2.yaml#/components/schemas/FabricAdapter_v1_5_2_FabricAdapter description: The response contains a representation of the FabricAdapter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FabricAdapter.v1_5_2.yaml#/components/schemas/FabricAdapter_v1_5_2_FabricAdapter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FabricAdapter.v1_5_2.yaml#/components/schemas/FabricAdapter_v1_5_2_FabricAdapter description: The response contains a representation of the FabricAdapter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/GenZ/MSDT: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/GenZ/MSDT/{MSDTId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/GenZ/SSDT: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/GenZ/SSDT/{SSDTId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/MSDT: get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/MSDT/{MSDTId}: delete: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/Actions/Port.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/Actions/Port.ResetPPB : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/EnvironmentMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/GenZ/LPRT : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/GenZ/LPRT/{LPRTId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/GenZ/MPRT : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/GenZ/MPRT/{MPRTId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/LPRT : get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/LPRT/{LPRTId} : delete: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/MPRT : get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/MPRT/{MPRTId} : delete: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/Metrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/SSDT: get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/SSDT/{SSDTId}: delete: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/GraphicsControllers/{ControllerId}/Ports: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/GraphicsControllers/{ControllerId}/Ports/{PortId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/GraphicsControllers/{ControllerId}/Ports/{PortId}/Actions/Port.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/GraphicsControllers/{ControllerId}/Ports/{PortId}/Actions/Port.ResetPPB : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/GraphicsControllers/{ControllerId}/Ports/{PortId}/EnvironmentMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/GraphicsControllers/{ControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/GraphicsControllers/{ControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/GraphicsControllers/{ControllerId}/Ports/{PortId}/Metrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/KeyManagement/KMIPCertificates: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/KeyManagement/KMIPCertificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/KeyManagement/KMIPCertificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/KeyManagement/KMIPCertificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/LogServices: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogServiceCollection.yaml#/components/schemas/LogServiceCollection_LogServiceCollection description: The response contains a representation of the LogServiceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/LogServices/{LogServiceId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService description: The response contains a representation of the LogService resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService description: The response contains a representation of the LogService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService description: The response contains a representation of the LogService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/LogServices/{LogServiceId}/Actions/LogService.ClearLog : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_ClearLogRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearLog action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearLog action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/LogServices/{LogServiceId}/Actions/LogService.CollectDiagnosticData : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_CollectDiagnosticDataRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CollectDiagnosticData action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CollectDiagnosticData action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/LogServices/{LogServiceId}/Actions/LogService.PushDiagnosticData : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_PushDiagnosticDataRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PushDiagnosticData action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PushDiagnosticData action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/LogServices/{LogServiceId}/Entries: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntryCollection.yaml#/components/schemas/LogEntryCollection_LogEntryCollection description: The response contains a representation of the LogEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: A resource of type LogEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/LogServices/{LogServiceId}/Entries/{LogEntryId}: delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryCollection.yaml#/components/schemas/MemoryCollection_MemoryCollection description: The response contains a representation of the MemoryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory description: The response contains a representation of the Memory resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory description: The response contains a representation of the Memory resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory description: The response contains a representation of the Memory resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.DisableMasterPassphrase : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_DisableMasterPassphraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the DisableMasterPassphrase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the DisableMasterPassphrase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.DisablePassphrase: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_DisablePassphraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the DisablePassphrase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the DisablePassphrase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.FreezeSecurityState : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_FreezeSecurityStateRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the FreezeSecurityState action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the FreezeSecurityState action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.InjectPersistentPoison : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_InjectPersistentPoisonRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the InjectPersistentPoison action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the InjectPersistentPoison action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.OverwriteUnit: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_OverwriteUnitRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the OverwriteUnit action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the OverwriteUnit action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.Reset: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.ResetToDefaults: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.ScanMedia: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_ScanMediaRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ScanMedia action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ScanMedia action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.SecureEraseUnit: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_SecureEraseUnitRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecureEraseUnit action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecureEraseUnit action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.SetMasterPassphrase : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_SetMasterPassphraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetMasterPassphrase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetMasterPassphrase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.SetPassphrase: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_SetPassphraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetPassphrase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetPassphrase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.UnlockUnit: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_UnlockUnitRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the UnlockUnit action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the UnlockUnit action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Assembly: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Certificates: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/MemoryMetrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryMetrics.v1_7_2.yaml#/components/schemas/MemoryMetrics_v1_7_2_MemoryMetrics description: The response contains a representation of the MemoryMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Memory/{MemoryId}/MemoryMetrics/Actions/MemoryMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryMetrics.v1_7_2.yaml#/components/schemas/MemoryMetrics_v1_7_2_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/MemoryDomains: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryDomainCollection.yaml#/components/schemas/MemoryDomainCollection_MemoryDomainCollection description: The response contains a representation of the MemoryDomainCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/MemoryDomains/{MemoryDomainId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the MemoryDomain resource in: path name: MemoryDomainId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryDomain.v1_5_0.yaml#/components/schemas/MemoryDomain_v1_5_0_MemoryDomain description: The response contains a representation of the MemoryDomain resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/MemoryDomains/{MemoryDomainId}/MemoryChunks: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the MemoryDomain resource in: path name: MemoryDomainId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunksCollection.yaml#/components/schemas/MemoryChunksCollection_MemoryChunksCollection description: The response contains a representation of the MemoryChunksCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the MemoryDomain resource in: path name: MemoryDomainId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks description: A resource of type MemoryChunks has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/MemoryDomains/{MemoryDomainId}/MemoryChunks/{MemoryChunksId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the MemoryDomain resource in: path name: MemoryDomainId required: true schema: type: string - description: The value of the Id property of the MemoryChunks resource in: path name: MemoryChunksId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks description: The response contains a representation of the MemoryChunks resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the MemoryDomain resource in: path name: MemoryDomainId required: true schema: type: string - description: The value of the Id property of the MemoryChunks resource in: path name: MemoryChunksId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks description: The response contains a representation of the MemoryChunks resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the MemoryDomain resource in: path name: MemoryDomainId required: true schema: type: string - description: The value of the Id property of the MemoryChunks resource in: path name: MemoryChunksId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks description: The response contains a representation of the MemoryChunks resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the MemoryDomain resource in: path name: MemoryDomainId required: true schema: type: string - description: The value of the Id property of the MemoryChunks resource in: path name: MemoryChunksId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks description: The response contains a representation of the MemoryChunks resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/MemorySummary/MemoryMetrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryMetrics.v1_7_2.yaml#/components/schemas/MemoryMetrics_v1_7_2_MemoryMetrics description: The response contains a representation of the MemoryMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/MemorySummary/MemoryMetrics/Actions/MemoryMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryMetrics.v1_7_2.yaml#/components/schemas/MemoryMetrics_v1_7_2_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/NetworkInterfaces: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkInterfaceCollection.yaml#/components/schemas/NetworkInterfaceCollection_NetworkInterfaceCollection description: The response contains a representation of the NetworkInterfaceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/NetworkInterfaces/{NetworkInterfaceId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkInterface.v1_2_1.yaml#/components/schemas/NetworkInterface_v1_2_1_NetworkInterface description: The response contains a representation of the NetworkInterface resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/NetworkInterfaces/{NetworkInterfaceId}/NetworkDeviceFunctions : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkDeviceFunctionCollection.yaml#/components/schemas/NetworkDeviceFunctionCollection_NetworkDeviceFunctionCollection description: The response contains a representation of the NetworkDeviceFunctionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/NetworkInterfaces/{NetworkInterfaceId}/NetworkDeviceFunctions/{NetworkDeviceFunctionId}/AllowDeny : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDenyCollection.yaml#/components/schemas/AllowDenyCollection_AllowDenyCollection description: The response contains a representation of the AllowDenyCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: A resource of type AllowDeny has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/NetworkInterfaces/{NetworkInterfaceId}/NetworkDeviceFunctions/{NetworkDeviceFunctionId}/AllowDeny/{AllowDenyId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the AllowDeny resource in: path name: AllowDenyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: The response contains a representation of the AllowDeny resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the AllowDeny resource in: path name: AllowDenyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: The response contains a representation of the AllowDeny resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the AllowDeny resource in: path name: AllowDenyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: The response contains a representation of the AllowDeny resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the AllowDeny resource in: path name: AllowDenyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: The response contains a representation of the AllowDeny resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/NetworkInterfaces/{NetworkInterfaceId}/NetworkPorts : get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkPortCollection.yaml#/components/schemas/NetworkPortCollection_NetworkPortCollection description: The response contains a representation of the NetworkPortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of the PortCollection schema. x-versionDeprecated: '2020.4' /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/NetworkInterfaces/{NetworkInterfaceId}/Ports: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/OperatingSystem: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OperatingSystem.v1_0_1.yaml#/components/schemas/OperatingSystem_v1_0_1_OperatingSystem description: The response contains a representation of the OperatingSystem resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/OperatingSystem/Applications: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ApplicationCollection.yaml#/components/schemas/ApplicationCollection_ApplicationCollection description: The response contains a representation of the ApplicationCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/OperatingSystem/Applications/{ApplicationId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Application resource in: path name: ApplicationId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Application.v1_0_0.yaml#/components/schemas/Application_v1_0_0_Application description: The response contains a representation of the Application resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/OperatingSystem/Applications/{ApplicationId}/Actions/Application.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Application resource in: path name: ApplicationId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Application.v1_0_0.yaml#/components/schemas/Application_v1_0_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/OperatingSystem/ContainerImages: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ContainerImageCollection.yaml#/components/schemas/ContainerImageCollection_ContainerImageCollection description: The response contains a representation of the ContainerImageCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/OperatingSystem/ContainerImages/{ContainerImageId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the ContainerImage resource in: path name: ContainerImageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ContainerImage.v1_0_0.yaml#/components/schemas/ContainerImage_v1_0_0_ContainerImage description: The response contains a representation of the ContainerImage resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/OperatingSystem/Containers: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ContainerCollection.yaml#/components/schemas/ContainerCollection_ContainerCollection description: The response contains a representation of the ContainerCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/OperatingSystem/Containers/EthernetInterfaces: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterfaceCollection.yaml#/components/schemas/EthernetInterfaceCollection_EthernetInterfaceCollection description: The response contains a representation of the EthernetInterfaceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: A resource of type EthernetInterface has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/OperatingSystem/Containers/EthernetInterfaces/{EthernetInterfaceId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/OperatingSystem/Containers/{ContainerId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Container resource in: path name: ContainerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Container.v1_0_0.yaml#/components/schemas/Container_v1_0_0_Container description: The response contains a representation of the Container resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/OperatingSystem/Containers/{ContainerId}/Actions/Container.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Container resource in: path name: ContainerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Container.v1_0_0.yaml#/components/schemas/Container_v1_0_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/PCIeDevices: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeDeviceCollection.yaml#/components/schemas/PCIeDeviceCollection_PCIeDeviceCollection description: The response contains a representation of the PCIeDeviceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/PCIeDevices/{PCIeDeviceId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeDevice.v1_13_0.yaml#/components/schemas/PCIeDevice_v1_13_0_PCIeDevice description: The response contains a representation of the PCIeDevice resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeDevice.v1_13_0.yaml#/components/schemas/PCIeDevice_v1_13_0_PCIeDevice required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeDevice.v1_13_0.yaml#/components/schemas/PCIeDevice_v1_13_0_PCIeDevice description: The response contains a representation of the PCIeDevice resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeDevice.v1_13_0.yaml#/components/schemas/PCIeDevice_v1_13_0_PCIeDevice required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeDevice.v1_13_0.yaml#/components/schemas/PCIeDevice_v1_13_0_PCIeDevice description: The response contains a representation of the PCIeDevice resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/PCIeDevices/{PCIeDeviceId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/PCIeDevices/{PCIeDeviceId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/PCIeDevices/{PCIeDeviceId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/PCIeDevices/{PCIeDeviceId}/PCIeFunctions: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeFunctionCollection.yaml#/components/schemas/PCIeFunctionCollection_PCIeFunctionCollection description: The response contains a representation of the PCIeFunctionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/PCIeDevices/{PCIeDeviceId}/PCIeFunctions/{PCIeFunctionId} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the PCIeFunction resource in: path name: PCIeFunctionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeFunction.v1_5_1.yaml#/components/schemas/PCIeFunction_v1_5_1_PCIeFunction description: The response contains a representation of the PCIeFunction resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the PCIeFunction resource in: path name: PCIeFunctionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeFunction.v1_5_1.yaml#/components/schemas/PCIeFunction_v1_5_1_PCIeFunction required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeFunction.v1_5_1.yaml#/components/schemas/PCIeFunction_v1_5_1_PCIeFunction description: The response contains a representation of the PCIeFunction resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the PCIeFunction resource in: path name: PCIeFunctionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeFunction.v1_5_1.yaml#/components/schemas/PCIeFunction_v1_5_1_PCIeFunction required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeFunction.v1_5_1.yaml#/components/schemas/PCIeFunction_v1_5_1_PCIeFunction description: The response contains a representation of the PCIeFunction resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/ProcessorSummary/ProcessorMetrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ProcessorMetrics description: The response contains a representation of the ProcessorMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/ProcessorSummary/ProcessorMetrics/Actions/ProcessorMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorCollection.yaml#/components/schemas/ProcessorCollection_ProcessorCollection description: The response contains a representation of the ProcessorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/AccelerationFunctions: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AccelerationFunctionCollection.yaml#/components/schemas/AccelerationFunctionCollection_AccelerationFunctionCollection description: The response contains a representation of the AccelerationFunctionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/AccelerationFunctions/{AccelerationFunctionId} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the AccelerationFunction resource in: path name: AccelerationFunctionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AccelerationFunction.v1_0_4.yaml#/components/schemas/AccelerationFunction_v1_0_4_AccelerationFunction description: The response contains a representation of the AccelerationFunction resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Actions/Processor.Reset: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Actions/Processor.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Assembly: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Certificates: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Certificates/{CertificateId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/MemorySummary/MemoryMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryMetrics.v1_7_2.yaml#/components/schemas/MemoryMetrics_v1_7_2_MemoryMetrics description: The response contains a representation of the MemoryMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/MemorySummary/MemoryMetrics/Actions/MemoryMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryMetrics.v1_7_2.yaml#/components/schemas/MemoryMetrics_v1_7_2_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Ports: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Ports/{PortId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Ports/{PortId}/Actions/Port.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Ports/{PortId}/Actions/Port.ResetPPB : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Ports/{PortId}/EnvironmentMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Ports/{PortId}/Metrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/ProcessorMetrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ProcessorMetrics description: The response contains a representation of the ProcessorMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/ProcessorMetrics/Actions/ProcessorMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorCollection.yaml#/components/schemas/ProcessorCollection_ProcessorCollection description: The response contains a representation of the ProcessorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/Actions/Processor.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/Actions/Processor.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/Assembly : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/ProcessorMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ProcessorMetrics description: The response contains a representation of the ProcessorMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/ProcessorMetrics/Actions/ProcessorMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorCollection.yaml#/components/schemas/ProcessorCollection_ProcessorCollection description: The response contains a representation of the ProcessorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/Actions/Processor.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/Actions/Processor.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/Assembly : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/ProcessorMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ProcessorMetrics description: The response contains a representation of the ProcessorMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/ProcessorMetrics/Actions/ProcessorMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SecureBoot: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecureBoot.v1_1_1.yaml#/components/schemas/SecureBoot_v1_1_1_SecureBoot description: The response contains a representation of the SecureBoot resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecureBoot.v1_1_1.yaml#/components/schemas/SecureBoot_v1_1_1_SecureBoot required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecureBoot.v1_1_1.yaml#/components/schemas/SecureBoot_v1_1_1_SecureBoot description: The response contains a representation of the SecureBoot resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecureBoot.v1_1_1.yaml#/components/schemas/SecureBoot_v1_1_1_SecureBoot required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecureBoot.v1_1_1.yaml#/components/schemas/SecureBoot_v1_1_1_SecureBoot description: The response contains a representation of the SecureBoot resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SecureBoot/Actions/SecureBoot.ResetKeys: post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecureBoot.v1_1_1.yaml#/components/schemas/SecureBoot_v1_1_1_ResetKeysRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetKeys action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetKeys action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecureBootDatabaseCollection.yaml#/components/schemas/SecureBootDatabaseCollection_SecureBootDatabaseCollection description: The response contains a representation of the SecureBootDatabaseCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases/{DatabaseId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecureBootDatabase.v1_0_2.yaml#/components/schemas/SecureBootDatabase_v1_0_2_SecureBootDatabase description: The response contains a representation of the SecureBootDatabase resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases/{DatabaseId}/Actions/SecureBootDatabase.ResetKeys : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecureBootDatabase.v1_0_2.yaml#/components/schemas/SecureBootDatabase_v1_0_2_ResetKeysRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetKeys action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetKeys action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases/{DatabaseId}/Certificates : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases/{DatabaseId}/Certificates/{CertificateId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases/{DatabaseId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases/{DatabaseId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases/{DatabaseId}/Signatures : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SignatureCollection.yaml#/components/schemas/SignatureCollection_SignatureCollection description: The response contains a representation of the SignatureCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Signature.v1_0_2.yaml#/components/schemas/Signature_v1_0_2_Signature required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Signature.v1_0_2.yaml#/components/schemas/Signature_v1_0_2_Signature description: A resource of type Signature has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases/{DatabaseId}/Signatures/{SignatureId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string - description: The value of the Id property of the Signature resource in: path name: SignatureId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Signature.v1_0_2.yaml#/components/schemas/Signature_v1_0_2_Signature description: The response contains a representation of the Signature resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string - description: The value of the Id property of the Signature resource in: path name: SignatureId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Signature.v1_0_2.yaml#/components/schemas/Signature_v1_0_2_Signature description: The response contains a representation of the Signature resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SimpleStorage: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SimpleStorageCollection.yaml#/components/schemas/SimpleStorageCollection_SimpleStorageCollection description: The response contains a representation of the SimpleStorageCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/SimpleStorage/{SimpleStorageId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the SimpleStorage resource in: path name: SimpleStorageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SimpleStorage.v1_3_1.yaml#/components/schemas/SimpleStorage_v1_3_1_SimpleStorage description: The response contains a representation of the SimpleStorage resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageCollection.yaml#/components/schemas/StorageCollection_StorageCollection description: The response contains a representation of the StorageCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage description: The response contains a representation of the Storage resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage description: The response contains a representation of the Storage resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage description: The response contains a representation of the Storage resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Actions/Storage.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Actions/Storage.SetEncryptionKey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_SetEncryptionKeyRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetEncryptionKey action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetEncryptionKey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageControllerCollection.yaml#/components/schemas/StorageControllerCollection_StorageControllerCollection description: The response contains a representation of the StorageControllerCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{ControllerId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController description: The response contains a representation of the StorageController resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController description: The response contains a representation of the StorageController resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController description: The response contains a representation of the StorageController resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{ControllerId}/Actions/StorageController.AttachNamespaces : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachNamespacesRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachDetachNamespacesResponse description: The response contains the results of the AttachNamespaces action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachDetachNamespacesResponse description: The response contains the results of the AttachNamespaces action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{ControllerId}/Actions/StorageController.DetachNamespaces : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_DetachNamespacesRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachDetachNamespacesResponse description: The response contains the results of the DetachNamespaces action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachDetachNamespacesResponse description: The response contains the results of the DetachNamespaces action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{ControllerId}/Actions/StorageController.SecurityReceive : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_SecurityReceiveRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_SecurityReceiveResponse description: The response contains the results of the SecurityReceive action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_SecurityReceiveResponse description: The response contains the results of the SecurityReceive action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{ControllerId}/Actions/StorageController.SecuritySend : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_SecuritySendRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecuritySend action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecuritySend action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{ControllerId}/EnvironmentMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{ControllerId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{ControllerId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{ControllerId}/Metrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageControllerMetrics.v1_0_2.yaml#/components/schemas/StorageControllerMetrics_v1_0_2_StorageControllerMetrics description: The response contains a representation of the StorageControllerMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Assembly : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates/{CertificateId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/Actions/Port.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/Actions/Port.ResetPPB : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/Metrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive description: The response contains a representation of the Drive resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive description: The response contains a representation of the Drive resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive description: The response contains a representation of the Drive resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Actions/Drive.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Actions/Drive.RevertToOriginalFactoryState : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_RevertToOriginalFactoryStateRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RevertToOriginalFactoryState action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RevertToOriginalFactoryState action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Actions/Drive.SecureErase : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_SecureEraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecureErase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecureErase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Assembly: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Certificates: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Certificates/{CertificateId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/EnvironmentMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Metrics: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/DriveMetrics.v1_2_0.yaml#/components/schemas/DriveMetrics_v1_2_0_DriveMetrics description: The response contains a representation of the DriveMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Assembly : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates/{CertificateId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId} : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/Actions/Port.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/Actions/Port.ResetPPB : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/Metrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/VolumeCollection.yaml#/components/schemas/VolumeCollection_VolumeCollection description: The response contains a representation of the VolumeCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: A resource of type Volume has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}: delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.AssignReplicaTarget : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_AssignReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.ChangeRAIDLayout : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ChangeRAIDLayoutRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.CheckConsistency : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CheckConsistencyRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.CreateReplicaTarget : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CreateReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.ForceEnable : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ForceEnableRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.Initialize : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_InitializeRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.RemoveReplicaRelationship : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_RemoveReplicaRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.ResumeReplication : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ResumeReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.ReverseReplicationRelationship : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ReverseReplicationRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.SplitReplication : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SplitReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.SuspendReplication : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SuspendReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/USBControllers/{ControllerId}/Ports: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/USBControllers/{ControllerId}/Ports/{PortId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/USBControllers/{ControllerId}/Ports/{PortId}/Actions/Port.Reset : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/USBControllers/{ControllerId}/Ports/{PortId}/Actions/Port.ResetPPB : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/USBControllers/{ControllerId}/Ports/{PortId}/EnvironmentMetrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/USBControllers/{ControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/USBControllers/{ControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/USBControllers/{ControllerId}/Ports/{PortId}/Metrics : get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMediaCollection.yaml#/components/schemas/VirtualMediaCollection_VirtualMediaCollection description: The response contains a representation of the VirtualMediaCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMedia.v1_6_3.yaml#/components/schemas/VirtualMedia_v1_6_3_VirtualMedia description: The response contains a representation of the VirtualMedia resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMedia.v1_6_3.yaml#/components/schemas/VirtualMedia_v1_6_3_VirtualMedia required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMedia.v1_6_3.yaml#/components/schemas/VirtualMedia_v1_6_3_VirtualMedia description: The response contains a representation of the VirtualMedia resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMedia.v1_6_3.yaml#/components/schemas/VirtualMedia_v1_6_3_VirtualMedia required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMedia.v1_6_3.yaml#/components/schemas/VirtualMedia_v1_6_3_VirtualMedia description: The response contains a representation of the VirtualMedia resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/Actions/VirtualMedia.EjectMedia : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMedia.v1_6_3.yaml#/components/schemas/VirtualMedia_v1_6_3_EjectMediaRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the EjectMedia action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the EjectMedia action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/Actions/VirtualMedia.InsertMedia : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMedia.v1_6_3.yaml#/components/schemas/VirtualMedia_v1_6_3_InsertMediaRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the InsertMedia action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the InsertMedia action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/Certificates: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/Certificates/{CertificateId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/ClientCertificates: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/ClientCertificates/{CertificateId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/ClientCertificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/ClientCertificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/GenZ/REQ-VCAT: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntryCollection.yaml#/components/schemas/VCATEntryCollection_VCATEntryCollection description: The response contains a representation of the VCATEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: A resource of type VCATEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/GenZ/REQ-VCAT/{VCATEntryId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/GenZ/RSP-VCAT: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntryCollection.yaml#/components/schemas/VCATEntryCollection_VCATEntryCollection description: The response contains a representation of the VCATEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: A resource of type VCATEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/GenZ/RSP-VCAT/{VCATEntryId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/GenZ/VCAT: get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntryCollection.yaml#/components/schemas/VCATEntryCollection_VCATEntryCollection description: The response contains a representation of the VCATEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: A resource of type VCATEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/GenZ/VCAT/{VCATEntryId} : delete: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/VCAT: get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntryCollection.yaml#/components/schemas/VCATEntryCollection_VCATEntryCollection description: The response contains a representation of the VCATEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: A resource of type VCATEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/VCAT/{VCATEntryId} : delete: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/REQ-VCAT: get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntryCollection.yaml#/components/schemas/VCATEntryCollection_VCATEntryCollection description: The response contains a representation of the VCATEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: A resource of type VCATEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/REQ-VCAT/{VCATEntryId}: delete: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/RSP-VCAT: get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntryCollection.yaml#/components/schemas/VCATEntryCollection_VCATEntryCollection description: The response contains a representation of the VCATEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: A resource of type VCATEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/RSP-VCAT/{VCATEntryId}: delete: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the ResourceBlock resource in: path name: ResourceBlockId required: true schema: type: string - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ServiceConditions: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ServiceConditions.v1_0_0.yaml#/components/schemas/ServiceConditions_v1_0_0_ServiceConditions description: The response contains a representation of the ServiceConditions resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/SessionService: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SessionService.v1_1_8.yaml#/components/schemas/SessionService_v1_1_8_SessionService description: The response contains a representation of the SessionService resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SessionService.v1_1_8.yaml#/components/schemas/SessionService_v1_1_8_SessionService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SessionService.v1_1_8.yaml#/components/schemas/SessionService_v1_1_8_SessionService description: The response contains a representation of the SessionService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SessionService.v1_1_8.yaml#/components/schemas/SessionService_v1_1_8_SessionService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SessionService.v1_1_8.yaml#/components/schemas/SessionService_v1_1_8_SessionService description: The response contains a representation of the SessionService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/SessionService/Sessions: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SessionCollection.yaml#/components/schemas/SessionCollection_SessionCollection description: The response contains a representation of the SessionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Session.v1_7_1.yaml#/components/schemas/Session_v1_7_1_Session required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Session.v1_7_1.yaml#/components/schemas/Session_v1_7_1_Session description: A resource of type Session has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/SessionService/Sessions/{SessionId}: delete: parameters: - description: The value of the Id property of the Session resource in: path name: SessionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Session.v1_7_1.yaml#/components/schemas/Session_v1_7_1_Session description: The response contains a representation of the Session resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Session resource in: path name: SessionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Session.v1_7_1.yaml#/components/schemas/Session_v1_7_1_Session description: The response contains a representation of the Session resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageCollection.yaml#/components/schemas/StorageCollection_StorageCollection description: The response contains a representation of the StorageCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}: get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage description: The response contains a representation of the Storage resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage description: The response contains a representation of the Storage resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage description: The response contains a representation of the Storage resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Actions/Storage.ResetToDefaults: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Actions/Storage.SetEncryptionKey: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_SetEncryptionKeyRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetEncryptionKey action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetEncryptionKey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Connections: get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ConnectionCollection.yaml#/components/schemas/ConnectionCollection_ConnectionCollection description: The response contains a representation of the ConnectionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Connection.v1_3_1.yaml#/components/schemas/Connection_v1_3_1_Connection required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Connection.v1_3_1.yaml#/components/schemas/Connection_v1_3_1_Connection description: A resource of type Connection has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes: get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/VolumeCollection.yaml#/components/schemas/VolumeCollection_VolumeCollection description: The response contains a representation of the VolumeCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: A resource of type Volume has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}: delete: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.AssignReplicaTarget : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_AssignReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.ChangeRAIDLayout: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ChangeRAIDLayoutRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.CheckConsistency: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CheckConsistencyRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.CreateReplicaTarget : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CreateReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.ForceEnable: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ForceEnableRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.Initialize: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_InitializeRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.RemoveReplicaRelationship : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_RemoveReplicaRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.ResumeReplication: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ResumeReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.ReverseReplicationRelationship : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ReverseReplicationRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.SplitReplication: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SplitReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.SuspendReplication : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SuspendReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Controllers: get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageControllerCollection.yaml#/components/schemas/StorageControllerCollection_StorageControllerCollection description: The response contains a representation of the StorageControllerCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Controllers/{ControllerId}: get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController description: The response contains a representation of the StorageController resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController description: The response contains a representation of the StorageController resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController description: The response contains a representation of the StorageController resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Controllers/{ControllerId}/Actions/StorageController.AttachNamespaces: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachNamespacesRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachDetachNamespacesResponse description: The response contains the results of the AttachNamespaces action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachDetachNamespacesResponse description: The response contains the results of the AttachNamespaces action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Controllers/{ControllerId}/Actions/StorageController.DetachNamespaces: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_DetachNamespacesRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachDetachNamespacesResponse description: The response contains the results of the DetachNamespaces action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachDetachNamespacesResponse description: The response contains the results of the DetachNamespaces action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Controllers/{ControllerId}/Actions/StorageController.SecurityReceive: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_SecurityReceiveRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_SecurityReceiveResponse description: The response contains the results of the SecurityReceive action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_SecurityReceiveResponse description: The response contains the results of the SecurityReceive action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Controllers/{ControllerId}/Actions/StorageController.SecuritySend: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_SecuritySendRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecuritySend action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecuritySend action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Controllers/{ControllerId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Controllers/{ControllerId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Controllers/{ControllerId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Controllers/{ControllerId}/Metrics: get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageControllerMetrics.v1_0_2.yaml#/components/schemas/StorageControllerMetrics_v1_0_2_StorageControllerMetrics description: The response contains a representation of the StorageControllerMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Controllers/{StorageControllerId}/Assembly: get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates: get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports: get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}: get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/Actions/Port.Reset: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/Actions/Port.ResetPPB: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/Metrics: get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/EndpointGroups: get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroupCollection.yaml#/components/schemas/EndpointGroupCollection_EndpointGroupCollection description: The response contains a representation of the EndpointGroupCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup description: A resource of type EndpointGroup has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/EndpointGroups/{EndpointGroupId}: delete: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the EndpointGroup resource in: path name: EndpointGroupId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup description: The response contains a representation of the EndpointGroup resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the EndpointGroup resource in: path name: EndpointGroupId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup description: The response contains a representation of the EndpointGroup resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the EndpointGroup resource in: path name: EndpointGroupId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup description: The response contains a representation of the EndpointGroup resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the EndpointGroup resource in: path name: EndpointGroupId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup description: The response contains a representation of the EndpointGroup resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Endpoints: get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointCollection.yaml#/components/schemas/EndpointCollection_EndpointCollection description: The response contains a representation of the EndpointCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Endpoint.v1_8_1.yaml#/components/schemas/Endpoint_v1_8_1_Endpoint required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Endpoint.v1_8_1.yaml#/components/schemas/Endpoint_v1_8_1_Endpoint description: A resource of type Endpoint has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Endpoints/{EndpointId}: delete: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Endpoint resource in: path name: EndpointId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Endpoint.v1_8_1.yaml#/components/schemas/Endpoint_v1_8_1_Endpoint description: The response contains a representation of the Endpoint resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Endpoint resource in: path name: EndpointId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Endpoint.v1_8_1.yaml#/components/schemas/Endpoint_v1_8_1_Endpoint description: The response contains a representation of the Endpoint resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Endpoint resource in: path name: EndpointId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Endpoint.v1_8_1.yaml#/components/schemas/Endpoint_v1_8_1_Endpoint required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Endpoint.v1_8_1.yaml#/components/schemas/Endpoint_v1_8_1_Endpoint description: The response contains a representation of the Endpoint resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Endpoint resource in: path name: EndpointId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Endpoint.v1_8_1.yaml#/components/schemas/Endpoint_v1_8_1_Endpoint required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Endpoint.v1_8_1.yaml#/components/schemas/Endpoint_v1_8_1_Endpoint description: The response contains a representation of the Endpoint resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingDrives: get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/DriveCollection.yaml#/components/schemas/DriveCollection_DriveCollection description: The response contains a representation of the DriveCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes: get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/VolumeCollection.yaml#/components/schemas/VolumeCollection_VolumeCollection description: The response contains a representation of the VolumeCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: A resource of type Volume has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}: delete: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.AssignReplicaTarget : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_AssignReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.ChangeRAIDLayout : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ChangeRAIDLayoutRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.CheckConsistency : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CheckConsistencyRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.CreateReplicaTarget : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CreateReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.ForceEnable : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ForceEnableRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.Initialize : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_InitializeRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.RemoveReplicaRelationship : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_RemoveReplicaRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.ResumeReplication : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ResumeReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.ReverseReplicationRelationship : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ReverseReplicationRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.SplitReplication : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SplitReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.SuspendReplication : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SuspendReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Assembly: get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates: get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports: get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}: get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/Actions/Port.Reset: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/Actions/Port.ResetPPB: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/Metrics: get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/AllocatedVolumes: get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/VolumeCollection.yaml#/components/schemas/VolumeCollection_VolumeCollection description: The response contains a representation of the VolumeCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: A resource of type Volume has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}: delete: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.AssignReplicaTarget : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_AssignReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.ChangeRAIDLayout: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ChangeRAIDLayoutRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.CheckConsistency: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CheckConsistencyRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.CreateReplicaTarget : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CreateReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.ForceEnable: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ForceEnableRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.Initialize: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_InitializeRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.RemoveReplicaRelationship : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_RemoveReplicaRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.ResumeReplication: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ResumeReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.ReverseReplicationRelationship : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ReverseReplicationRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.SplitReplication: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SplitReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.SuspendReplication: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SuspendReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingDrives: get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/DriveCollection.yaml#/components/schemas/DriveCollection_DriveCollection description: The response contains a representation of the DriveCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes: get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/VolumeCollection.yaml#/components/schemas/VolumeCollection_VolumeCollection description: The response contains a representation of the VolumeCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: A resource of type Volume has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId} : delete: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.AssignReplicaTarget : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_AssignReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.ChangeRAIDLayout : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ChangeRAIDLayoutRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.CheckConsistency : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CheckConsistencyRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.CreateReplicaTarget : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CreateReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.ForceEnable : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ForceEnableRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.Initialize : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_InitializeRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.RemoveReplicaRelationship : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_RemoveReplicaRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.ResumeReplication : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ResumeReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.ReverseReplicationRelationship : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ReverseReplicationRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.SplitReplication : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SplitReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.SuspendReplication : post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SuspendReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Volumes: get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/VolumeCollection.yaml#/components/schemas/VolumeCollection_VolumeCollection description: The response contains a representation of the VolumeCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: A resource of type Volume has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Volumes/{VolumeId}: delete: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.AssignReplicaTarget: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_AssignReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.ChangeRAIDLayout: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ChangeRAIDLayoutRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.CheckConsistency: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CheckConsistencyRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.CreateReplicaTarget: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CreateReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.ForceEnable: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ForceEnableRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.Initialize: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_InitializeRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.RemoveReplicaRelationship: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_RemoveReplicaRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.ResumeReplication: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ResumeReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.ReverseReplicationRelationship: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ReverseReplicationRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.SplitReplication: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SplitReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.SuspendReplication: post: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SuspendReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Storage/{StorageId}/Volumes/{VolumeId}/CapacitySources/{CapacitySourceId}/ProvidingDrives: get: parameters: - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/DriveCollection.yaml#/components/schemas/DriveCollection_DriveCollection description: The response contains a representation of the DriveCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/StorageServices/{StorageServiceId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes: get: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/VolumeCollection.yaml#/components/schemas/VolumeCollection_VolumeCollection description: The response contains a representation of the VolumeCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: A resource of type Volume has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/StorageServices/{StorageServiceId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}: delete: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.AssignReplicaTarget : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_AssignReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.ChangeRAIDLayout : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ChangeRAIDLayoutRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.CheckConsistency : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CheckConsistencyRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.CreateReplicaTarget : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CreateReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.ForceEnable : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ForceEnableRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.Initialize : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_InitializeRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.RemoveReplicaRelationship : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_RemoveReplicaRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.ResumeReplication : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ResumeReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.ReverseReplicationRelationship : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ReverseReplicationRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.SplitReplication : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SplitReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.SuspendReplication : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SuspendReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/StorageServices/{StorageServiceId}/Drives: get: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/DriveCollection.yaml#/components/schemas/DriveCollection_DriveCollection description: The response contains a representation of the DriveCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/StorageServices/{StorageServiceId}/EndpointGroups: get: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroupCollection.yaml#/components/schemas/EndpointGroupCollection_EndpointGroupCollection description: The response contains a representation of the EndpointGroupCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup description: A resource of type EndpointGroup has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/StorageServices/{StorageServiceId}/EndpointGroups/{EndpointGroupId}: delete: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the EndpointGroup resource in: path name: EndpointGroupId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup description: The response contains a representation of the EndpointGroup resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the EndpointGroup resource in: path name: EndpointGroupId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup description: The response contains a representation of the EndpointGroup resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the EndpointGroup resource in: path name: EndpointGroupId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup description: The response contains a representation of the EndpointGroup resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the EndpointGroup resource in: path name: EndpointGroupId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup description: The response contains a representation of the EndpointGroup resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/StorageServices/{StorageServiceId}/Endpoints: get: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointCollection.yaml#/components/schemas/EndpointCollection_EndpointCollection description: The response contains a representation of the EndpointCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Endpoint.v1_8_1.yaml#/components/schemas/Endpoint_v1_8_1_Endpoint required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Endpoint.v1_8_1.yaml#/components/schemas/Endpoint_v1_8_1_Endpoint description: A resource of type Endpoint has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/StorageServices/{StorageServiceId}/Endpoints/{EndpointId}: delete: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Endpoint resource in: path name: EndpointId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Endpoint.v1_8_1.yaml#/components/schemas/Endpoint_v1_8_1_Endpoint description: The response contains a representation of the Endpoint resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Endpoint resource in: path name: EndpointId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Endpoint.v1_8_1.yaml#/components/schemas/Endpoint_v1_8_1_Endpoint description: The response contains a representation of the Endpoint resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Endpoint resource in: path name: EndpointId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Endpoint.v1_8_1.yaml#/components/schemas/Endpoint_v1_8_1_Endpoint required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Endpoint.v1_8_1.yaml#/components/schemas/Endpoint_v1_8_1_Endpoint description: The response contains a representation of the Endpoint resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Endpoint resource in: path name: EndpointId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Endpoint.v1_8_1.yaml#/components/schemas/Endpoint_v1_8_1_Endpoint required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Endpoint.v1_8_1.yaml#/components/schemas/Endpoint_v1_8_1_Endpoint description: The response contains a representation of the Endpoint resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingDrives : get: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/DriveCollection.yaml#/components/schemas/DriveCollection_DriveCollection description: The response contains a representation of the DriveCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes : get: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/VolumeCollection.yaml#/components/schemas/VolumeCollection_VolumeCollection description: The response contains a representation of the VolumeCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: A resource of type Volume has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId} : delete: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.AssignReplicaTarget : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_AssignReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.ChangeRAIDLayout : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ChangeRAIDLayoutRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.CheckConsistency : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CheckConsistencyRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.CreateReplicaTarget : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CreateReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.ForceEnable : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ForceEnableRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.Initialize : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_InitializeRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.RemoveReplicaRelationship : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_RemoveReplicaRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.ResumeReplication : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ResumeReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.ReverseReplicationRelationship : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ReverseReplicationRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.SplitReplication : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SplitReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.SuspendReplication : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SuspendReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/StorageServices/{StorageServiceId}/StoragePools/{StoragePoolId}/AllocatedVolumes: get: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/VolumeCollection.yaml#/components/schemas/VolumeCollection_VolumeCollection description: The response contains a representation of the VolumeCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: A resource of type Volume has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/StorageServices/{StorageServiceId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}: delete: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.AssignReplicaTarget : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_AssignReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.ChangeRAIDLayout : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ChangeRAIDLayoutRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.CheckConsistency : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CheckConsistencyRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.CreateReplicaTarget : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CreateReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.ForceEnable : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ForceEnableRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.Initialize : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_InitializeRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.RemoveReplicaRelationship : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_RemoveReplicaRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.ResumeReplication : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ResumeReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.ReverseReplicationRelationship : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ReverseReplicationRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.SplitReplication : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SplitReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.SuspendReplication : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SuspendReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingDrives : get: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/DriveCollection.yaml#/components/schemas/DriveCollection_DriveCollection description: The response contains a representation of the DriveCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes : get: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/VolumeCollection.yaml#/components/schemas/VolumeCollection_VolumeCollection description: The response contains a representation of the VolumeCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: A resource of type Volume has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId} : delete: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.AssignReplicaTarget : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_AssignReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.ChangeRAIDLayout : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ChangeRAIDLayoutRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.CheckConsistency : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CheckConsistencyRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.CreateReplicaTarget : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CreateReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.ForceEnable : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ForceEnableRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.Initialize : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_InitializeRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.RemoveReplicaRelationship : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_RemoveReplicaRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.ResumeReplication : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ResumeReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.ReverseReplicationRelationship : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ReverseReplicationRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.SplitReplication : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SplitReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.SuspendReplication : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SuspendReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/StorageServices/{StorageServiceId}/Volumes: get: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/VolumeCollection.yaml#/components/schemas/VolumeCollection_VolumeCollection description: The response contains a representation of the VolumeCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: A resource of type Volume has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/StorageServices/{StorageServiceId}/Volumes/{VolumeId}: delete: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/StorageServices/{StorageServiceId}/Volumes/{VolumeId}/Actions/Volume.AssignReplicaTarget: post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_AssignReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/StorageServices/{StorageServiceId}/Volumes/{VolumeId}/Actions/Volume.ChangeRAIDLayout: post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ChangeRAIDLayoutRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/StorageServices/{StorageServiceId}/Volumes/{VolumeId}/Actions/Volume.CheckConsistency: post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CheckConsistencyRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/StorageServices/{StorageServiceId}/Volumes/{VolumeId}/Actions/Volume.CreateReplicaTarget: post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CreateReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/StorageServices/{StorageServiceId}/Volumes/{VolumeId}/Actions/Volume.ForceEnable: post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ForceEnableRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/StorageServices/{StorageServiceId}/Volumes/{VolumeId}/Actions/Volume.Initialize: post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_InitializeRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/StorageServices/{StorageServiceId}/Volumes/{VolumeId}/Actions/Volume.RemoveReplicaRelationship: post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_RemoveReplicaRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/StorageServices/{StorageServiceId}/Volumes/{VolumeId}/Actions/Volume.ResumeReplication: post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ResumeReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/StorageServices/{StorageServiceId}/Volumes/{VolumeId}/Actions/Volume.ReverseReplicationRelationship: post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ReverseReplicationRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/StorageServices/{StorageServiceId}/Volumes/{VolumeId}/Actions/Volume.SplitReplication: post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SplitReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/StorageServices/{StorageServiceId}/Volumes/{VolumeId}/Actions/Volume.SuspendReplication: post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SuspendReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/StorageServices/{StorageServiceId}/Volumes/{VolumeId}/CapacitySources/{CapacitySourceId}/ProvidingDrives: get: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/DriveCollection.yaml#/components/schemas/DriveCollection_DriveCollection description: The response contains a representation of the DriveCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/StorageServices/{StorageServiceId}/Volumes/{VolumeId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes: get: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/VolumeCollection.yaml#/components/schemas/VolumeCollection_VolumeCollection description: The response contains a representation of the VolumeCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: A resource of type Volume has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/Volumes/{VolumeId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{ProvidingVolumeId} : delete: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the ProvidingVolume resource in: path name: ProvidingVolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the ProvidingVolume resource in: path name: ProvidingVolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the ProvidingVolume resource in: path name: ProvidingVolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the ProvidingVolume resource in: path name: ProvidingVolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/Volumes/{VolumeId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{ProvidingVolumeId}/Actions/Volume.AssignReplicaTarget : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the ProvidingVolume resource in: path name: ProvidingVolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_AssignReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/Volumes/{VolumeId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{ProvidingVolumeId}/Actions/Volume.ChangeRAIDLayout : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the ProvidingVolume resource in: path name: ProvidingVolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ChangeRAIDLayoutRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/Volumes/{VolumeId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{ProvidingVolumeId}/Actions/Volume.CheckConsistency : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the ProvidingVolume resource in: path name: ProvidingVolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CheckConsistencyRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/Volumes/{VolumeId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{ProvidingVolumeId}/Actions/Volume.CreateReplicaTarget : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the ProvidingVolume resource in: path name: ProvidingVolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CreateReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/Volumes/{VolumeId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{ProvidingVolumeId}/Actions/Volume.ForceEnable : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the ProvidingVolume resource in: path name: ProvidingVolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ForceEnableRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/Volumes/{VolumeId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{ProvidingVolumeId}/Actions/Volume.Initialize : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the ProvidingVolume resource in: path name: ProvidingVolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_InitializeRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/Volumes/{VolumeId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{ProvidingVolumeId}/Actions/Volume.RemoveReplicaRelationship : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the ProvidingVolume resource in: path name: ProvidingVolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_RemoveReplicaRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/Volumes/{VolumeId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{ProvidingVolumeId}/Actions/Volume.ResumeReplication : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the ProvidingVolume resource in: path name: ProvidingVolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ResumeReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/Volumes/{VolumeId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{ProvidingVolumeId}/Actions/Volume.ReverseReplicationRelationship : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the ProvidingVolume resource in: path name: ProvidingVolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ReverseReplicationRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/Volumes/{VolumeId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{ProvidingVolumeId}/Actions/Volume.SplitReplication : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the ProvidingVolume resource in: path name: ProvidingVolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SplitReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/StorageServices/{StorageServiceId}/Volumes/{VolumeId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{ProvidingVolumeId}/Actions/Volume.SuspendReplication : post: parameters: - description: The value of the Id property of the StorageService resource in: path name: StorageServiceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the ProvidingVolume resource in: path name: ProvidingVolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SuspendReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystemCollection.yaml#/components/schemas/ComputerSystemCollection_ComputerSystemCollection description: The response contains a representation of the ComputerSystemCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_ComputerSystem required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_ComputerSystem description: A resource of type ComputerSystem has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_ComputerSystem description: The response contains a representation of the ComputerSystem resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_ComputerSystem description: The response contains a representation of the ComputerSystem resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_ComputerSystem required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_ComputerSystem description: The response contains a representation of the ComputerSystem resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_ComputerSystem required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_ComputerSystem description: The response contains a representation of the ComputerSystem resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Actions/ComputerSystem.AddResourceBlock: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_AddResourceBlockRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AddResourceBlock action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AddResourceBlock action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Actions/ComputerSystem.Decommission: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_DecommissionRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Decommission action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Decommission action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Actions/ComputerSystem.RemoveResourceBlock: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_RemoveResourceBlockRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveResourceBlock action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveResourceBlock action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Actions/ComputerSystem.Reset: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Actions/ComputerSystem.SetDefaultBootOrder: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_0.yaml#/components/schemas/ComputerSystem_v1_22_0_SetDefaultBootOrderRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetDefaultBootOrder action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetDefaultBootOrder action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Bios: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Bios.v1_2_2.yaml#/components/schemas/Bios_v1_2_2_Bios description: The response contains a representation of the Bios resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Bios.v1_2_2.yaml#/components/schemas/Bios_v1_2_2_Bios required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Bios.v1_2_2.yaml#/components/schemas/Bios_v1_2_2_Bios description: The response contains a representation of the Bios resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Bios.v1_2_2.yaml#/components/schemas/Bios_v1_2_2_Bios required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Bios.v1_2_2.yaml#/components/schemas/Bios_v1_2_2_Bios description: The response contains a representation of the Bios resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Bios/Actions/Bios.ChangePassword: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Bios.v1_2_2.yaml#/components/schemas/Bios_v1_2_2_ChangePasswordRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangePassword action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangePassword action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Bios/Actions/Bios.ResetBios: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Bios.v1_2_2.yaml#/components/schemas/Bios_v1_2_2_ResetBiosRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetBios action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetBios action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Boot/Certificates: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Boot/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Boot/Certificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Boot/Certificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/BootOptions: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BootOptionCollection.yaml#/components/schemas/BootOptionCollection_BootOptionCollection description: The response contains a representation of the BootOptionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BootOption.v1_0_5.yaml#/components/schemas/BootOption_v1_0_5_BootOption required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BootOption.v1_0_5.yaml#/components/schemas/BootOption_v1_0_5_BootOption description: A resource of type BootOption has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/BootOptions/{BootOptionId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the BootOption resource in: path name: BootOptionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BootOption.v1_0_5.yaml#/components/schemas/BootOption_v1_0_5_BootOption description: The response contains a representation of the BootOption resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the BootOption resource in: path name: BootOptionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BootOption.v1_0_5.yaml#/components/schemas/BootOption_v1_0_5_BootOption description: The response contains a representation of the BootOption resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the BootOption resource in: path name: BootOptionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BootOption.v1_0_5.yaml#/components/schemas/BootOption_v1_0_5_BootOption required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BootOption.v1_0_5.yaml#/components/schemas/BootOption_v1_0_5_BootOption description: The response contains a representation of the BootOption resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the BootOption resource in: path name: BootOptionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BootOption.v1_0_5.yaml#/components/schemas/BootOption_v1_0_5_BootOption required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/BootOption.v1_0_5.yaml#/components/schemas/BootOption_v1_0_5_BootOption description: The response contains a representation of the BootOption resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Certificates: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Certificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Certificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/EthernetInterfaces: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterfaceCollection.yaml#/components/schemas/EthernetInterfaceCollection_EthernetInterfaceCollection description: The response contains a representation of the EthernetInterfaceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: A resource of type EthernetInterface has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/EthernetInterfaces/{EthernetInterfaceId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/EthernetInterfaces/{EthernetInterfaceId}/VLANs: get: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterfaceCollection.yaml#/components/schemas/VLanNetworkInterfaceCollection_VLanNetworkInterfaceCollection description: The response contains a representation of the VLanNetworkInterfaceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: A resource of type VLanNetworkInterface has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/EthernetInterfaces/{EthernetInterfaceId}/VLANs/{VLanNetworkInterfaceId}: delete: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string - description: The value of the Id property of the VLanNetworkInterface resource in: path name: VLanNetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: The response contains a representation of the VLanNetworkInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of using individual EthernetInterface resources to show VLAN information. x-versionDeprecated: v1_3_0 get: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string - description: The value of the Id property of the VLanNetworkInterface resource in: path name: VLanNetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: The response contains a representation of the VLanNetworkInterface resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of using individual EthernetInterface resources to show VLAN information. x-versionDeprecated: v1_3_0 patch: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string - description: The value of the Id property of the VLanNetworkInterface resource in: path name: VLanNetworkInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: The response contains a representation of the VLanNetworkInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of using individual EthernetInterface resources to show VLAN information. x-versionDeprecated: v1_3_0 put: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string - description: The value of the Id property of the VLanNetworkInterface resource in: path name: VLanNetworkInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VLanNetworkInterface.v1_3_0.yaml#/components/schemas/VLanNetworkInterface_v1_3_0_VLanNetworkInterface description: The response contains a representation of the VLanNetworkInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of using individual EthernetInterface resources to show VLAN information. x-versionDeprecated: v1_3_0 /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FabricAdapterCollection.yaml#/components/schemas/FabricAdapterCollection_FabricAdapterCollection description: The response contains a representation of the FabricAdapterCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FabricAdapter.v1_5_2.yaml#/components/schemas/FabricAdapter_v1_5_2_FabricAdapter description: The response contains a representation of the FabricAdapter resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FabricAdapter.v1_5_2.yaml#/components/schemas/FabricAdapter_v1_5_2_FabricAdapter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FabricAdapter.v1_5_2.yaml#/components/schemas/FabricAdapter_v1_5_2_FabricAdapter description: The response contains a representation of the FabricAdapter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FabricAdapter.v1_5_2.yaml#/components/schemas/FabricAdapter_v1_5_2_FabricAdapter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FabricAdapter.v1_5_2.yaml#/components/schemas/FabricAdapter_v1_5_2_FabricAdapter description: The response contains a representation of the FabricAdapter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/GenZ/MSDT: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/GenZ/MSDT/{MSDTId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/GenZ/SSDT: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/GenZ/SSDT/{SSDTId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/MSDT: get: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/MSDT/{MSDTId}: delete: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/MSDT/{MSDTId}/RouteSet: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntryCollection.yaml#/components/schemas/RouteSetEntryCollection_RouteSetEntryCollection description: The response contains a representation of the RouteSetEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: A resource of type RouteSetEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/MSDT/{MSDTId}/RouteSet/{RouteId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the MSDT resource in: path name: MSDTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/Actions/Port.Reset: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/Actions/Port.ResetPPB: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/GenZ/LPRT: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/GenZ/LPRT/{LPRTId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/GenZ/MPRT: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/GenZ/MPRT/{MPRTId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/LPRT: get: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/LPRT/{LPRTId}: delete: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/LPRT/{LPRTId}/RouteSet: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntryCollection.yaml#/components/schemas/RouteSetEntryCollection_RouteSetEntryCollection description: The response contains a representation of the RouteSetEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: A resource of type RouteSetEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/LPRT/{LPRTId}/RouteSet/{RouteId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the LPRT resource in: path name: LPRTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/MPRT: get: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/MPRT/{MPRTId}: delete: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/MPRT/{MPRTId}/RouteSet: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntryCollection.yaml#/components/schemas/RouteSetEntryCollection_RouteSetEntryCollection description: The response contains a representation of the RouteSetEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: A resource of type RouteSetEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/MPRT/{MPRTId}/RouteSet/{RouteId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the MPRT resource in: path name: MPRTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/Metrics: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/SSDT: get: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntryCollection.yaml#/components/schemas/RouteEntryCollection_RouteEntryCollection description: The response contains a representation of the RouteEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: A resource of type RouteEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/SSDT/{SSDTId}: delete: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteEntry.v1_0_1.yaml#/components/schemas/RouteEntry_v1_0_1_RouteEntry description: The response contains a representation of the RouteEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/SSDT/{SSDTId}/RouteSet: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntryCollection.yaml#/components/schemas/RouteSetEntryCollection_RouteSetEntryCollection description: The response contains a representation of the RouteSetEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: A resource of type RouteSetEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/FabricAdapters/{FabricAdapterId}/SSDT/{SSDTId}/RouteSet/{RouteId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the SSDT resource in: path name: SSDTId required: true schema: type: string - description: The value of the Id property of the Route resource in: path name: RouteId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/RouteSetEntry.v1_0_1.yaml#/components/schemas/RouteSetEntry_v1_0_1_RouteSetEntry description: The response contains a representation of the RouteSetEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/GraphicsControllers: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/GraphicsControllerCollection.yaml#/components/schemas/GraphicsControllerCollection_GraphicsControllerCollection description: The response contains a representation of the GraphicsControllerCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/GraphicsControllers/{ControllerId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/GraphicsController.v1_0_1.yaml#/components/schemas/GraphicsController_v1_0_1_GraphicsController description: The response contains a representation of the GraphicsController resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/GraphicsController.v1_0_1.yaml#/components/schemas/GraphicsController_v1_0_1_GraphicsController description: The response contains a representation of the GraphicsController resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/GraphicsController.v1_0_1.yaml#/components/schemas/GraphicsController_v1_0_1_GraphicsController required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/GraphicsController.v1_0_1.yaml#/components/schemas/GraphicsController_v1_0_1_GraphicsController description: The response contains a representation of the GraphicsController resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/GraphicsController.v1_0_1.yaml#/components/schemas/GraphicsController_v1_0_1_GraphicsController required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/GraphicsController.v1_0_1.yaml#/components/schemas/GraphicsController_v1_0_1_GraphicsController description: The response contains a representation of the GraphicsController resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/GraphicsControllers/{ControllerId}/Ports: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/GraphicsControllers/{ControllerId}/Ports/{PortId}: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/GraphicsControllers/{ControllerId}/Ports/{PortId}/Actions/Port.Reset: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/GraphicsControllers/{ControllerId}/Ports/{PortId}/Actions/Port.ResetPPB: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/GraphicsControllers/{ControllerId}/Ports/{PortId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/GraphicsControllers/{ControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/GraphicsControllers/{ControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/GraphicsControllers/{ControllerId}/Ports/{PortId}/Metrics: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/KeyManagement/KMIPCertificates: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/KeyManagement/KMIPCertificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/KeyManagement/KMIPCertificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/KeyManagement/KMIPCertificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/LogServices: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogServiceCollection.yaml#/components/schemas/LogServiceCollection_LogServiceCollection description: The response contains a representation of the LogServiceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/LogServices/{LogServiceId}: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService description: The response contains a representation of the LogService resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService description: The response contains a representation of the LogService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService description: The response contains a representation of the LogService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/LogServices/{LogServiceId}/Actions/LogService.ClearLog: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_ClearLogRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearLog action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearLog action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/LogServices/{LogServiceId}/Actions/LogService.CollectDiagnosticData: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_CollectDiagnosticDataRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CollectDiagnosticData action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CollectDiagnosticData action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/LogServices/{LogServiceId}/Actions/LogService.PushDiagnosticData: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_PushDiagnosticDataRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PushDiagnosticData action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PushDiagnosticData action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/LogServices/{LogServiceId}/Entries: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntryCollection.yaml#/components/schemas/LogEntryCollection_LogEntryCollection description: The response contains a representation of the LogEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: A resource of type LogEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/LogServices/{LogServiceId}/Entries/{LogEntryId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the LogService resource in: path name: LogServiceId required: true schema: type: string - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryCollection.yaml#/components/schemas/MemoryCollection_MemoryCollection description: The response contains a representation of the MemoryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory description: The response contains a representation of the Memory resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory description: The response contains a representation of the Memory resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_Memory description: The response contains a representation of the Memory resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.DisableMasterPassphrase: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_DisableMasterPassphraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the DisableMasterPassphrase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the DisableMasterPassphrase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.DisablePassphrase: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_DisablePassphraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the DisablePassphrase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the DisablePassphrase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.FreezeSecurityState: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_FreezeSecurityStateRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the FreezeSecurityState action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the FreezeSecurityState action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.InjectPersistentPoison: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_InjectPersistentPoisonRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the InjectPersistentPoison action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the InjectPersistentPoison action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.OverwriteUnit: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_OverwriteUnitRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the OverwriteUnit action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the OverwriteUnit action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.Reset: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.ResetToDefaults: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.ScanMedia: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_ScanMediaRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ScanMedia action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ScanMedia action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.SecureEraseUnit: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_SecureEraseUnitRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecureEraseUnit action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecureEraseUnit action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.SetMasterPassphrase: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_SetMasterPassphraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetMasterPassphrase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetMasterPassphrase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.SetPassphrase: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_SetPassphraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetPassphrase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetPassphrase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/Actions/Memory.UnlockUnit: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Memory.v1_19_0.yaml#/components/schemas/Memory_v1_19_0_UnlockUnitRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the UnlockUnit action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the UnlockUnit action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/Assembly: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/Certificates: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/Certificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/Certificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/DeviceLog: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService description: The response contains a representation of the LogService resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService description: The response contains a representation of the LogService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService description: The response contains a representation of the LogService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/DeviceLog/Actions/LogService.ClearLog: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_ClearLogRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearLog action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearLog action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/DeviceLog/Actions/LogService.CollectDiagnosticData: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_CollectDiagnosticDataRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CollectDiagnosticData action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CollectDiagnosticData action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/DeviceLog/Actions/LogService.PushDiagnosticData: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_PushDiagnosticDataRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PushDiagnosticData action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PushDiagnosticData action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/DeviceLog/Entries: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntryCollection.yaml#/components/schemas/LogEntryCollection_LogEntryCollection description: The response contains a representation of the LogEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: A resource of type LogEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/DeviceLog/Entries/{LogEntryId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/MemoryMetrics: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryMetrics.v1_7_2.yaml#/components/schemas/MemoryMetrics_v1_7_2_MemoryMetrics description: The response contains a representation of the MemoryMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/MemoryMetrics/Actions/MemoryMetrics.ClearCurrentPeriod: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Memory resource in: path name: MemoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryMetrics.v1_7_2.yaml#/components/schemas/MemoryMetrics_v1_7_2_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/MemoryDomains: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryDomainCollection.yaml#/components/schemas/MemoryDomainCollection_MemoryDomainCollection description: The response contains a representation of the MemoryDomainCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/MemoryDomains/{MemoryDomainId}: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the MemoryDomain resource in: path name: MemoryDomainId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryDomain.v1_5_0.yaml#/components/schemas/MemoryDomain_v1_5_0_MemoryDomain description: The response contains a representation of the MemoryDomain resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/MemoryDomains/{MemoryDomainId}/MemoryChunks: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the MemoryDomain resource in: path name: MemoryDomainId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunksCollection.yaml#/components/schemas/MemoryChunksCollection_MemoryChunksCollection description: The response contains a representation of the MemoryChunksCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the MemoryDomain resource in: path name: MemoryDomainId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks description: A resource of type MemoryChunks has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/MemoryDomains/{MemoryDomainId}/MemoryChunks/{MemoryChunksId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the MemoryDomain resource in: path name: MemoryDomainId required: true schema: type: string - description: The value of the Id property of the MemoryChunks resource in: path name: MemoryChunksId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks description: The response contains a representation of the MemoryChunks resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the MemoryDomain resource in: path name: MemoryDomainId required: true schema: type: string - description: The value of the Id property of the MemoryChunks resource in: path name: MemoryChunksId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks description: The response contains a representation of the MemoryChunks resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the MemoryDomain resource in: path name: MemoryDomainId required: true schema: type: string - description: The value of the Id property of the MemoryChunks resource in: path name: MemoryChunksId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks description: The response contains a representation of the MemoryChunks resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the MemoryDomain resource in: path name: MemoryDomainId required: true schema: type: string - description: The value of the Id property of the MemoryChunks resource in: path name: MemoryChunksId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryChunks.v1_6_1.yaml#/components/schemas/MemoryChunks_v1_6_1_MemoryChunks description: The response contains a representation of the MemoryChunks resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/MemorySummary/MemoryMetrics: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryMetrics.v1_7_2.yaml#/components/schemas/MemoryMetrics_v1_7_2_MemoryMetrics description: The response contains a representation of the MemoryMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/MemorySummary/MemoryMetrics/Actions/MemoryMetrics.ClearCurrentPeriod: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryMetrics.v1_7_2.yaml#/components/schemas/MemoryMetrics_v1_7_2_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/NetworkInterfaces: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkInterfaceCollection.yaml#/components/schemas/NetworkInterfaceCollection_NetworkInterfaceCollection description: The response contains a representation of the NetworkInterfaceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/NetworkInterfaces/{NetworkInterfaceId}: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkInterface.v1_2_1.yaml#/components/schemas/NetworkInterface_v1_2_1_NetworkInterface description: The response contains a representation of the NetworkInterface resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/NetworkInterfaces/{NetworkInterfaceId}/NetworkDeviceFunctions: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkDeviceFunctionCollection.yaml#/components/schemas/NetworkDeviceFunctionCollection_NetworkDeviceFunctionCollection description: The response contains a representation of the NetworkDeviceFunctionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/NetworkInterfaces/{NetworkInterfaceId}/NetworkDeviceFunctions/{NetworkDeviceFunctionId}/AllowDeny : get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDenyCollection.yaml#/components/schemas/AllowDenyCollection_AllowDenyCollection description: The response contains a representation of the AllowDenyCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: A resource of type AllowDeny has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/NetworkInterfaces/{NetworkInterfaceId}/NetworkDeviceFunctions/{NetworkDeviceFunctionId}/AllowDeny/{AllowDenyId} : delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the AllowDeny resource in: path name: AllowDenyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: The response contains a representation of the AllowDeny resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the AllowDeny resource in: path name: AllowDenyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: The response contains a representation of the AllowDeny resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the AllowDeny resource in: path name: AllowDenyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: The response contains a representation of the AllowDeny resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string - description: The value of the Id property of the NetworkDeviceFunction resource in: path name: NetworkDeviceFunctionId required: true schema: type: string - description: The value of the Id property of the AllowDeny resource in: path name: AllowDenyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AllowDeny.v1_0_2.yaml#/components/schemas/AllowDeny_v1_0_2_AllowDeny description: The response contains a representation of the AllowDeny resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/NetworkInterfaces/{NetworkInterfaceId}/NetworkPorts: get: deprecated: true parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/NetworkPortCollection.yaml#/components/schemas/NetworkPortCollection_NetworkPortCollection description: The response contains a representation of the NetworkPortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition x-deprecatedReason: This schema has been deprecated in favor of the PortCollection schema. x-versionDeprecated: '2020.4' /redfish/v1/Systems/{ComputerSystemId}/NetworkInterfaces/{NetworkInterfaceId}/Ports: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the NetworkInterface resource in: path name: NetworkInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/OperatingSystem: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OperatingSystem.v1_0_1.yaml#/components/schemas/OperatingSystem_v1_0_1_OperatingSystem description: The response contains a representation of the OperatingSystem resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/OperatingSystem/Applications: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ApplicationCollection.yaml#/components/schemas/ApplicationCollection_ApplicationCollection description: The response contains a representation of the ApplicationCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/OperatingSystem/Applications/{ApplicationId}: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Application resource in: path name: ApplicationId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Application.v1_0_0.yaml#/components/schemas/Application_v1_0_0_Application description: The response contains a representation of the Application resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/OperatingSystem/Applications/{ApplicationId}/Actions/Application.Reset: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Application resource in: path name: ApplicationId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Application.v1_0_0.yaml#/components/schemas/Application_v1_0_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/OperatingSystem/ContainerImages: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ContainerImageCollection.yaml#/components/schemas/ContainerImageCollection_ContainerImageCollection description: The response contains a representation of the ContainerImageCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/OperatingSystem/ContainerImages/{ContainerImageId}: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the ContainerImage resource in: path name: ContainerImageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ContainerImage.v1_0_0.yaml#/components/schemas/ContainerImage_v1_0_0_ContainerImage description: The response contains a representation of the ContainerImage resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/OperatingSystem/Containers: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ContainerCollection.yaml#/components/schemas/ContainerCollection_ContainerCollection description: The response contains a representation of the ContainerCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/OperatingSystem/Containers/EthernetInterfaces: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterfaceCollection.yaml#/components/schemas/EthernetInterfaceCollection_EthernetInterfaceCollection description: The response contains a representation of the EthernetInterfaceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: A resource of type EthernetInterface has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/OperatingSystem/Containers/EthernetInterfaces/{EthernetInterfaceId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the EthernetInterface resource in: path name: EthernetInterfaceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EthernetInterface.v1_12_0.yaml#/components/schemas/EthernetInterface_v1_12_0_EthernetInterface description: The response contains a representation of the EthernetInterface resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/OperatingSystem/Containers/{ContainerId}: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Container resource in: path name: ContainerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Container.v1_0_0.yaml#/components/schemas/Container_v1_0_0_Container description: The response contains a representation of the Container resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/OperatingSystem/Containers/{ContainerId}/Actions/Container.Reset: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Container resource in: path name: ContainerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Container.v1_0_0.yaml#/components/schemas/Container_v1_0_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/PCIeDevices: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeDeviceCollection.yaml#/components/schemas/PCIeDeviceCollection_PCIeDeviceCollection description: The response contains a representation of the PCIeDeviceCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/PCIeDevices/{PCIeDeviceId}: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeDevice.v1_13_0.yaml#/components/schemas/PCIeDevice_v1_13_0_PCIeDevice description: The response contains a representation of the PCIeDevice resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeDevice.v1_13_0.yaml#/components/schemas/PCIeDevice_v1_13_0_PCIeDevice required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeDevice.v1_13_0.yaml#/components/schemas/PCIeDevice_v1_13_0_PCIeDevice description: The response contains a representation of the PCIeDevice resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeDevice.v1_13_0.yaml#/components/schemas/PCIeDevice_v1_13_0_PCIeDevice required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeDevice.v1_13_0.yaml#/components/schemas/PCIeDevice_v1_13_0_PCIeDevice description: The response contains a representation of the PCIeDevice resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/PCIeDevices/{PCIeDeviceId}/Assembly: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/PCIeDevices/{PCIeDeviceId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/PCIeDevices/{PCIeDeviceId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/PCIeDevices/{PCIeDeviceId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/PCIeDevices/{PCIeDeviceId}/PCIeFunctions: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeFunctionCollection.yaml#/components/schemas/PCIeFunctionCollection_PCIeFunctionCollection description: The response contains a representation of the PCIeFunctionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/PCIeDevices/{PCIeDeviceId}/PCIeFunctions/{PCIeFunctionId}: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the PCIeFunction resource in: path name: PCIeFunctionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeFunction.v1_5_1.yaml#/components/schemas/PCIeFunction_v1_5_1_PCIeFunction description: The response contains a representation of the PCIeFunction resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the PCIeFunction resource in: path name: PCIeFunctionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeFunction.v1_5_1.yaml#/components/schemas/PCIeFunction_v1_5_1_PCIeFunction required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeFunction.v1_5_1.yaml#/components/schemas/PCIeFunction_v1_5_1_PCIeFunction description: The response contains a representation of the PCIeFunction resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the PCIeDevice resource in: path name: PCIeDeviceId required: true schema: type: string - description: The value of the Id property of the PCIeFunction resource in: path name: PCIeFunctionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeFunction.v1_5_1.yaml#/components/schemas/PCIeFunction_v1_5_1_PCIeFunction required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PCIeFunction.v1_5_1.yaml#/components/schemas/PCIeFunction_v1_5_1_PCIeFunction description: The response contains a representation of the PCIeFunction resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/ProcessorSummary/ProcessorMetrics: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ProcessorMetrics description: The response contains a representation of the ProcessorMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/ProcessorSummary/ProcessorMetrics/Actions/ProcessorMetrics.ClearCurrentPeriod: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorCollection.yaml#/components/schemas/ProcessorCollection_ProcessorCollection description: The response contains a representation of the ProcessorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/AccelerationFunctions: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AccelerationFunctionCollection.yaml#/components/schemas/AccelerationFunctionCollection_AccelerationFunctionCollection description: The response contains a representation of the AccelerationFunctionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/AccelerationFunctions/{AccelerationFunctionId}: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the AccelerationFunction resource in: path name: AccelerationFunctionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/AccelerationFunction.v1_0_4.yaml#/components/schemas/AccelerationFunction_v1_0_4_AccelerationFunction description: The response contains a representation of the AccelerationFunction resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Actions/Processor.Reset: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Actions/Processor.ResetToDefaults: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Assembly: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Certificates: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Certificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Certificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/MemorySummary/MemoryMetrics: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryMetrics.v1_7_2.yaml#/components/schemas/MemoryMetrics_v1_7_2_MemoryMetrics description: The response contains a representation of the MemoryMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/MemorySummary/MemoryMetrics/Actions/MemoryMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MemoryMetrics.v1_7_2.yaml#/components/schemas/MemoryMetrics_v1_7_2_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/OperatingConfigs: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OperatingConfigCollection.yaml#/components/schemas/OperatingConfigCollection_OperatingConfigCollection description: The response contains a representation of the OperatingConfigCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/OperatingConfigs/{OperatingConfigId}: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the OperatingConfig resource in: path name: OperatingConfigId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/OperatingConfig.v1_0_3.yaml#/components/schemas/OperatingConfig_v1_0_3_OperatingConfig description: The response contains a representation of the OperatingConfig resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Ports: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Ports/{PortId}: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Ports/{PortId}/Actions/Port.Reset: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Ports/{PortId}/Actions/Port.ResetPPB: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Ports/{PortId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/Ports/{PortId}/Metrics: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/ProcessorMetrics: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ProcessorMetrics description: The response contains a representation of the ProcessorMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/ProcessorMetrics/Actions/ProcessorMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorCollection.yaml#/components/schemas/ProcessorCollection_ProcessorCollection description: The response contains a representation of the ProcessorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/Actions/Processor.Reset: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/Actions/Processor.ResetToDefaults : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/Assembly: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/ProcessorMetrics: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ProcessorMetrics description: The response contains a representation of the ProcessorMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/ProcessorMetrics/Actions/ProcessorMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorCollection.yaml#/components/schemas/ProcessorCollection_ProcessorCollection description: The response contains a representation of the ProcessorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_Processor description: The response contains a representation of the Processor resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/Actions/Processor.Reset : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/Actions/Processor.ResetToDefaults : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Processor.v1_19_0.yaml#/components/schemas/Processor_v1_19_0_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/Assembly : get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/ProcessorMetrics : get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ProcessorMetrics description: The response contains a representation of the ProcessorMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Processors/{ProcessorId}/SubProcessors/{ProcessorId2}/SubProcessors/{ProcessorId3}/ProcessorMetrics/Actions/ProcessorMetrics.ClearCurrentPeriod : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId2 required: true schema: type: string - description: The value of the Id property of the Processor resource in: path name: ProcessorId3 required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.v1_6_3.yaml#/components/schemas/ProcessorMetrics_v1_6_3_ClearCurrentPeriodRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearCurrentPeriod action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/SecureBoot: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecureBoot.v1_1_1.yaml#/components/schemas/SecureBoot_v1_1_1_SecureBoot description: The response contains a representation of the SecureBoot resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecureBoot.v1_1_1.yaml#/components/schemas/SecureBoot_v1_1_1_SecureBoot required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecureBoot.v1_1_1.yaml#/components/schemas/SecureBoot_v1_1_1_SecureBoot description: The response contains a representation of the SecureBoot resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecureBoot.v1_1_1.yaml#/components/schemas/SecureBoot_v1_1_1_SecureBoot required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecureBoot.v1_1_1.yaml#/components/schemas/SecureBoot_v1_1_1_SecureBoot description: The response contains a representation of the SecureBoot resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/SecureBoot/Actions/SecureBoot.ResetKeys: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecureBoot.v1_1_1.yaml#/components/schemas/SecureBoot_v1_1_1_ResetKeysRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetKeys action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetKeys action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecureBootDatabaseCollection.yaml#/components/schemas/SecureBootDatabaseCollection_SecureBootDatabaseCollection description: The response contains a representation of the SecureBootDatabaseCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases/{DatabaseId}: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecureBootDatabase.v1_0_2.yaml#/components/schemas/SecureBootDatabase_v1_0_2_SecureBootDatabase description: The response contains a representation of the SecureBootDatabase resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases/{DatabaseId}/Actions/SecureBootDatabase.ResetKeys: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SecureBootDatabase.v1_0_2.yaml#/components/schemas/SecureBootDatabase_v1_0_2_ResetKeysRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetKeys action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetKeys action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases/{DatabaseId}/Certificates: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases/{DatabaseId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases/{DatabaseId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases/{DatabaseId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases/{DatabaseId}/Signatures: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SignatureCollection.yaml#/components/schemas/SignatureCollection_SignatureCollection description: The response contains a representation of the SignatureCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Signature.v1_0_2.yaml#/components/schemas/Signature_v1_0_2_Signature required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Signature.v1_0_2.yaml#/components/schemas/Signature_v1_0_2_Signature description: A resource of type Signature has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/SecureBoot/SecureBootDatabases/{DatabaseId}/Signatures/{SignatureId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string - description: The value of the Id property of the Signature resource in: path name: SignatureId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Signature.v1_0_2.yaml#/components/schemas/Signature_v1_0_2_Signature description: The response contains a representation of the Signature resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Database resource in: path name: DatabaseId required: true schema: type: string - description: The value of the Id property of the Signature resource in: path name: SignatureId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Signature.v1_0_2.yaml#/components/schemas/Signature_v1_0_2_Signature description: The response contains a representation of the Signature resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/SimpleStorage: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SimpleStorageCollection.yaml#/components/schemas/SimpleStorageCollection_SimpleStorageCollection description: The response contains a representation of the SimpleStorageCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/SimpleStorage/{SimpleStorageId}: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the SimpleStorage resource in: path name: SimpleStorageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SimpleStorage.v1_3_1.yaml#/components/schemas/SimpleStorage_v1_3_1_SimpleStorage description: The response contains a representation of the SimpleStorage resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageCollection.yaml#/components/schemas/StorageCollection_StorageCollection description: The response contains a representation of the StorageCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage description: The response contains a representation of the Storage resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage description: The response contains a representation of the Storage resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_Storage description: The response contains a representation of the Storage resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Actions/Storage.ResetToDefaults: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Actions/Storage.SetEncryptionKey: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Storage.v1_15_1.yaml#/components/schemas/Storage_v1_15_1_SetEncryptionKeyRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetEncryptionKey action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SetEncryptionKey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/VolumeCollection.yaml#/components/schemas/VolumeCollection_VolumeCollection description: The response contains a representation of the VolumeCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: A resource of type Volume has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.AssignReplicaTarget : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_AssignReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.ChangeRAIDLayout : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ChangeRAIDLayoutRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.CheckConsistency : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CheckConsistencyRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.CreateReplicaTarget : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CreateReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.ForceEnable : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ForceEnableRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.Initialize : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_InitializeRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.RemoveReplicaRelationship : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_RemoveReplicaRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.ResumeReplication : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ResumeReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.ReverseReplicationRelationship : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ReverseReplicationRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.SplitReplication : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SplitReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/ConsistencyGroups/{ConsistencyGroupId}/Volumes/{VolumeId}/Actions/Volume.SuspendReplication : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the ConsistencyGroup resource in: path name: ConsistencyGroupId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SuspendReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageControllerCollection.yaml#/components/schemas/StorageControllerCollection_StorageControllerCollection description: The response contains a representation of the StorageControllerCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{ControllerId}: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController description: The response contains a representation of the StorageController resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController description: The response contains a representation of the StorageController resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_StorageController description: The response contains a representation of the StorageController resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{ControllerId}/Actions/StorageController.AttachNamespaces : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachNamespacesRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachDetachNamespacesResponse description: The response contains the results of the AttachNamespaces action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachDetachNamespacesResponse description: The response contains the results of the AttachNamespaces action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{ControllerId}/Actions/StorageController.DetachNamespaces : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_DetachNamespacesRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachDetachNamespacesResponse description: The response contains the results of the DetachNamespaces action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_AttachDetachNamespacesResponse description: The response contains the results of the DetachNamespaces action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{ControllerId}/Actions/StorageController.SecurityReceive : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_SecurityReceiveRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_SecurityReceiveResponse description: The response contains the results of the SecurityReceive action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_SecurityReceiveResponse description: The response contains the results of the SecurityReceive action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{ControllerId}/Actions/StorageController.SecuritySend : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageController.v1_7_2.yaml#/components/schemas/StorageController_v1_7_2_SecuritySendRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecuritySend action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecuritySend action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{ControllerId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{ControllerId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{ControllerId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{ControllerId}/Metrics: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/StorageControllerMetrics.v1_0_2.yaml#/components/schemas/StorageControllerMetrics_v1_0_2_StorageControllerMetrics description: The response contains a representation of the StorageControllerMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Assembly: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/Actions/Port.Reset : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/Actions/Port.ResetPPB : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics : get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Controllers/{StorageControllerId}/Ports/{PortId}/Metrics: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive description: The response contains a representation of the Drive resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive description: The response contains a representation of the Drive resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_Drive description: The response contains a representation of the Drive resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Actions/Drive.Reset: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Actions/Drive.RevertToOriginalFactoryState: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_RevertToOriginalFactoryStateRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RevertToOriginalFactoryState action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RevertToOriginalFactoryState action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Actions/Drive.SecureErase: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Drive.v1_18_0.yaml#/components/schemas/Drive_v1_18_0_SecureEraseRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecureErase action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SecureErase action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Assembly: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Certificates: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Drives/{DriveId}/Metrics: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Drive resource in: path name: DriveId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/DriveMetrics.v1_2_0.yaml#/components/schemas/DriveMetrics_v1_2_0_DriveMetrics description: The response contains a representation of the DriveMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/EndpointGroups: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroupCollection.yaml#/components/schemas/EndpointGroupCollection_EndpointGroupCollection description: The response contains a representation of the EndpointGroupCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup description: A resource of type EndpointGroup has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/EndpointGroups/{EndpointGroupId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the EndpointGroup resource in: path name: EndpointGroupId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup description: The response contains a representation of the EndpointGroup resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the EndpointGroup resource in: path name: EndpointGroupId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup description: The response contains a representation of the EndpointGroup resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the EndpointGroup resource in: path name: EndpointGroupId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup description: The response contains a representation of the EndpointGroup resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the EndpointGroup resource in: path name: EndpointGroupId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EndpointGroup.v1_3_3.yaml#/components/schemas/EndpointGroup_v1_3_3_EndpointGroup description: The response contains a representation of the EndpointGroup resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingDrives : get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/DriveCollection.yaml#/components/schemas/DriveCollection_DriveCollection description: The response contains a representation of the DriveCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes : get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/VolumeCollection.yaml#/components/schemas/VolumeCollection_VolumeCollection description: The response contains a representation of the VolumeCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: A resource of type Volume has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId} : delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.AssignReplicaTarget : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_AssignReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.ChangeRAIDLayout : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ChangeRAIDLayoutRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.CheckConsistency : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CheckConsistencyRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.CreateReplicaTarget : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CreateReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.ForceEnable : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ForceEnableRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.Initialize : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_InitializeRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.RemoveReplicaRelationship : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_RemoveReplicaRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.ResumeReplication : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ResumeReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.ReverseReplicationRelationship : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ReverseReplicationRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.SplitReplication : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SplitReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/FileSystems/{FileSystemId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.SuspendReplication : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the FileSystem resource in: path name: FileSystemId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SuspendReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Assembly: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates/{CertificateId} : delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/Actions/Port.Reset : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/Actions/Port.ResetPPB : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics : get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StorageControllers/{StorageControllerId}/Ports/{PortId}/Metrics: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StorageController resource in: path name: StorageControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StoragePools/{StoragePoolId}/AllocatedVolumes: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/VolumeCollection.yaml#/components/schemas/VolumeCollection_VolumeCollection description: The response contains a representation of the VolumeCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: A resource of type Volume has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.AssignReplicaTarget : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_AssignReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.ChangeRAIDLayout : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ChangeRAIDLayoutRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.CheckConsistency : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CheckConsistencyRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.CreateReplicaTarget : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CreateReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.ForceEnable : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ForceEnableRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.Initialize : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_InitializeRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.RemoveReplicaRelationship : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_RemoveReplicaRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.ResumeReplication : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ResumeReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.ReverseReplicationRelationship : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ReverseReplicationRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.SplitReplication : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SplitReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StoragePools/{StoragePoolId}/AllocatedVolumes/{VolumeId}/Actions/Volume.SuspendReplication : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SuspendReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingDrives : get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/DriveCollection.yaml#/components/schemas/DriveCollection_DriveCollection description: The response contains a representation of the DriveCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes : get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/VolumeCollection.yaml#/components/schemas/VolumeCollection_VolumeCollection description: The response contains a representation of the VolumeCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: A resource of type Volume has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId} : delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.AssignReplicaTarget : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_AssignReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.ChangeRAIDLayout : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ChangeRAIDLayoutRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.CheckConsistency : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CheckConsistencyRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.CreateReplicaTarget : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CreateReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.ForceEnable : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ForceEnableRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.Initialize : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_InitializeRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.RemoveReplicaRelationship : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_RemoveReplicaRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.ResumeReplication : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ResumeReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.ReverseReplicationRelationship : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ReverseReplicationRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.SplitReplication : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SplitReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/StoragePools/{StoragePoolId}/CapacitySources/{CapacitySourceId}/ProvidingVolumes/{VolumeId}/Actions/Volume.SuspendReplication : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the StoragePool resource in: path name: StoragePoolId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SuspendReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/VolumeCollection.yaml#/components/schemas/VolumeCollection_VolumeCollection description: The response contains a representation of the VolumeCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: A resource of type Volume has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_Volume description: The response contains a representation of the Volume resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.AssignReplicaTarget: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_AssignReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the AssignReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.ChangeRAIDLayout: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ChangeRAIDLayoutRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ChangeRAIDLayout action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.CheckConsistency: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CheckConsistencyRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CheckConsistency action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.CreateReplicaTarget: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_CreateReplicaTargetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CreateReplicaTarget action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.ForceEnable: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ForceEnableRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ForceEnable action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.Initialize: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_InitializeRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Initialize action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.RemoveReplicaRelationship: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_RemoveReplicaRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveReplicaRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.ResumeReplication: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ResumeReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResumeReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.ReverseReplicationRelationship : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_ReverseReplicationRelationshipRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ReverseReplicationRelationship action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.SplitReplication: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SplitReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SplitReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/Actions/Volume.SuspendReplication: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/swordfish/v1/Volume.v1_10_0.yaml#/components/schemas/Volume_v1_10_0_SuspendReplicationRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SuspendReplication action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/Storage/{StorageId}/Volumes/{VolumeId}/CapacitySources/{CapacitySourceId}/ProvidingDrives : get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Storage resource in: path name: StorageId required: true schema: type: string - description: The value of the Id property of the Volume resource in: path name: VolumeId required: true schema: type: string - description: The value of the Id property of the CapacitySource resource in: path name: CapacitySourceId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/DriveCollection.yaml#/components/schemas/DriveCollection_DriveCollection description: The response contains a representation of the DriveCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/USBControllers: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/USBControllerCollection.yaml#/components/schemas/USBControllerCollection_USBControllerCollection description: The response contains a representation of the USBControllerCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/USBControllers/{ControllerId}: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/USBController.v1_0_0.yaml#/components/schemas/USBController_v1_0_0_USBController description: The response contains a representation of the USBController resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/USBControllers/{ControllerId}/Ports: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortCollection.yaml#/components/schemas/PortCollection_PortCollection description: The response contains a representation of the PortCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/USBControllers/{ControllerId}/Ports/{PortId}: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_Port description: The response contains a representation of the Port resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/USBControllers/{ControllerId}/Ports/{PortId}/Actions/Port.Reset: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the Reset action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/USBControllers/{ControllerId}/Ports/{PortId}/Actions/Port.ResetPPB: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Port.v1_11_0.yaml#/components/schemas/Port_v1_11_0_ResetPPBRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetPPB action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/USBControllers/{ControllerId}/Ports/{PortId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/USBControllers/{ControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/USBControllers/{ControllerId}/Ports/{PortId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/USBControllers/{ControllerId}/Ports/{PortId}/Metrics: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the Controller resource in: path name: ControllerId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PortMetrics.v1_5_1.yaml#/components/schemas/PortMetrics_v1_5_1_PortMetrics description: The response contains a representation of the PortMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/VirtualMedia: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMediaCollection.yaml#/components/schemas/VirtualMediaCollection_VirtualMediaCollection description: The response contains a representation of the VirtualMediaCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMedia.v1_6_3.yaml#/components/schemas/VirtualMedia_v1_6_3_VirtualMedia description: The response contains a representation of the VirtualMedia resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMedia.v1_6_3.yaml#/components/schemas/VirtualMedia_v1_6_3_VirtualMedia required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMedia.v1_6_3.yaml#/components/schemas/VirtualMedia_v1_6_3_VirtualMedia description: The response contains a representation of the VirtualMedia resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMedia.v1_6_3.yaml#/components/schemas/VirtualMedia_v1_6_3_VirtualMedia required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMedia.v1_6_3.yaml#/components/schemas/VirtualMedia_v1_6_3_VirtualMedia description: The response contains a representation of the VirtualMedia resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/Actions/VirtualMedia.EjectMedia: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMedia.v1_6_3.yaml#/components/schemas/VirtualMedia_v1_6_3_EjectMediaRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the EjectMedia action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the EjectMedia action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/Actions/VirtualMedia.InsertMedia: post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VirtualMedia.v1_6_3.yaml#/components/schemas/VirtualMedia_v1_6_3_InsertMediaRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the InsertMedia action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the InsertMedia action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/Certificates: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/Certificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/Certificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/Certificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/ClientCertificates: get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/ClientCertificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/ClientCertificates/{CertificateId}/Actions/Certificate.Rekey : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition ? /redfish/v1/Systems/{ComputerSystemId}/VirtualMedia/{VirtualMediaId}/ClientCertificates/{CertificateId}/Actions/Certificate.Renew : post: parameters: - description: The value of the Id property of the ComputerSystem resource in: path name: ComputerSystemId required: true schema: type: string - description: The value of the Id property of the VirtualMedia resource in: path name: VirtualMediaId required: true schema: type: string - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/GenZ/REQ-VCAT: get: parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntryCollection.yaml#/components/schemas/VCATEntryCollection_VCATEntryCollection description: The response contains a representation of the VCATEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: A resource of type VCATEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/GenZ/REQ-VCAT/{VCATEntryId}: delete: parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/GenZ/RSP-VCAT: get: parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntryCollection.yaml#/components/schemas/VCATEntryCollection_VCATEntryCollection description: The response contains a representation of the VCATEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: A resource of type VCATEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/GenZ/RSP-VCAT/{VCATEntryId}: delete: parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/GenZ/VCAT: get: parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntryCollection.yaml#/components/schemas/VCATEntryCollection_VCATEntryCollection description: The response contains a representation of the VCATEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: A resource of type VCATEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/GenZ/VCAT/{VCATEntryId}: delete: parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/VCAT: get: deprecated: true parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntryCollection.yaml#/components/schemas/VCATEntryCollection_VCATEntryCollection description: The response contains a representation of the VCATEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: A resource of type VCATEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/Ports/{PortId}/VCAT/{VCATEntryId}: delete: deprecated: true parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the Port resource in: path name: PortId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/REQ-VCAT: get: deprecated: true parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntryCollection.yaml#/components/schemas/VCATEntryCollection_VCATEntryCollection description: The response contains a representation of the VCATEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: A resource of type VCATEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/REQ-VCAT/{VCATEntryId}: delete: deprecated: true parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/RSP-VCAT: get: deprecated: true parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntryCollection.yaml#/components/schemas/VCATEntryCollection_VCATEntryCollection description: The response contains a representation of the VCATEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: deprecated: true parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: A resource of type VCATEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/Systems/{SystemId}/FabricAdapters/{FabricAdapterId}/RSP-VCAT/{VCATEntryId}: delete: deprecated: true parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: deprecated: true parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: deprecated: true parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: deprecated: true parameters: - description: The value of the Id property of the System resource in: path name: SystemId required: true schema: type: string - description: The value of the Id property of the FabricAdapter resource in: path name: FabricAdapterId required: true schema: type: string - description: The value of the Id property of the VCATEntry resource in: path name: VCATEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/VCATEntry.v1_0_2.yaml#/components/schemas/VCATEntry_v1_0_2_VCATEntry description: The response contains a representation of the VCATEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/TaskService: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/TaskService.v1_2_0.yaml#/components/schemas/TaskService_v1_2_0_TaskService description: The response contains a representation of the TaskService resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/TaskService.v1_2_0.yaml#/components/schemas/TaskService_v1_2_0_TaskService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/TaskService.v1_2_0.yaml#/components/schemas/TaskService_v1_2_0_TaskService description: The response contains a representation of the TaskService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/TaskService.v1_2_0.yaml#/components/schemas/TaskService_v1_2_0_TaskService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/TaskService.v1_2_0.yaml#/components/schemas/TaskService_v1_2_0_TaskService description: The response contains a representation of the TaskService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/TaskService/Tasks: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/TaskCollection.yaml#/components/schemas/TaskCollection_TaskCollection description: The response contains a representation of the TaskCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/TaskService/Tasks/{TaskId}: delete: parameters: - description: The value of the Id property of the Task resource in: path name: TaskId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: The response contains a representation of the Task resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Task resource in: path name: TaskId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: The response contains a representation of the Task resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/TaskService/Tasks/{TaskId}/SubTasks: get: parameters: - description: The value of the Id property of the Task resource in: path name: TaskId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/TaskCollection.yaml#/components/schemas/TaskCollection_TaskCollection description: The response contains a representation of the TaskCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/TaskService/Tasks/{TaskId}/SubTasks/{TaskId2}: delete: parameters: - description: The value of the Id property of the Task resource in: path name: TaskId required: true schema: type: string - description: The value of the Id property of the Task resource in: path name: TaskId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: The response contains a representation of the Task resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Task resource in: path name: TaskId required: true schema: type: string - description: The value of the Id property of the Task resource in: path name: TaskId2 required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: The response contains a representation of the Task resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/TelemetryService: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/TelemetryService.v1_3_3.yaml#/components/schemas/TelemetryService_v1_3_3_TelemetryService description: The response contains a representation of the TelemetryService resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/TelemetryService.v1_3_3.yaml#/components/schemas/TelemetryService_v1_3_3_TelemetryService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/TelemetryService.v1_3_3.yaml#/components/schemas/TelemetryService_v1_3_3_TelemetryService description: The response contains a representation of the TelemetryService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/TelemetryService.v1_3_3.yaml#/components/schemas/TelemetryService_v1_3_3_TelemetryService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/TelemetryService.v1_3_3.yaml#/components/schemas/TelemetryService_v1_3_3_TelemetryService description: The response contains a representation of the TelemetryService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/TelemetryService/Actions/TelemetryService.ClearMetricReports: post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/TelemetryService.v1_3_3.yaml#/components/schemas/TelemetryService_v1_3_3_ClearMetricReportsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearMetricReports action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearMetricReports action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/TelemetryService/Actions/TelemetryService.ResetMetricReportDefinitionsToDefaults: post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/TelemetryService.v1_3_3.yaml#/components/schemas/TelemetryService_v1_3_3_ResetMetricReportDefinitionsToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetricReportDefinitionsToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetricReportDefinitionsToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/TelemetryService/Actions/TelemetryService.ResetTriggersToDefaults: post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/TelemetryService.v1_3_3.yaml#/components/schemas/TelemetryService_v1_3_3_ResetTriggersToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetTriggersToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetTriggersToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/TelemetryService/Actions/TelemetryService.SubmitTestMetricReport: post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/TelemetryService.v1_3_3.yaml#/components/schemas/TelemetryService_v1_3_3_SubmitTestMetricReportRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SubmitTestMetricReport action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SubmitTestMetricReport action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/TelemetryService/LogService: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService description: The response contains a representation of the LogService resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService description: The response contains a representation of the LogService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_LogService description: The response contains a representation of the LogService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/TelemetryService/LogService/Actions/LogService.ClearLog: post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_ClearLogRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearLog action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ClearLog action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/TelemetryService/LogService/Actions/LogService.CollectDiagnosticData: post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_CollectDiagnosticDataRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CollectDiagnosticData action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the CollectDiagnosticData action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/TelemetryService/LogService/Actions/LogService.PushDiagnosticData: post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogService.v1_6_0.yaml#/components/schemas/LogService_v1_6_0_PushDiagnosticDataRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PushDiagnosticData action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the PushDiagnosticData action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/TelemetryService/LogService/Entries: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntryCollection.yaml#/components/schemas/LogEntryCollection_LogEntryCollection description: The response contains a representation of the LogEntryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: A resource of type LogEntry has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/TelemetryService/LogService/Entries/{LogEntryId}: delete: parameters: - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the LogEntry resource in: path name: LogEntryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LogEntry.v1_16_0.yaml#/components/schemas/LogEntry_v1_16_0_LogEntry description: The response contains a representation of the LogEntry resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/TelemetryService/MetricDefinitions: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MetricDefinitionCollection.yaml#/components/schemas/MetricDefinitionCollection_MetricDefinitionCollection description: The response contains a representation of the MetricDefinitionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MetricDefinition.v1_3_3.yaml#/components/schemas/MetricDefinition_v1_3_3_MetricDefinition required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MetricDefinition.v1_3_3.yaml#/components/schemas/MetricDefinition_v1_3_3_MetricDefinition description: A resource of type MetricDefinition has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/TelemetryService/MetricDefinitions/{MetricDefinitionId}: delete: parameters: - description: The value of the Id property of the MetricDefinition resource in: path name: MetricDefinitionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MetricDefinition.v1_3_3.yaml#/components/schemas/MetricDefinition_v1_3_3_MetricDefinition description: The response contains a representation of the MetricDefinition resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the MetricDefinition resource in: path name: MetricDefinitionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MetricDefinition.v1_3_3.yaml#/components/schemas/MetricDefinition_v1_3_3_MetricDefinition description: The response contains a representation of the MetricDefinition resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the MetricDefinition resource in: path name: MetricDefinitionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MetricDefinition.v1_3_3.yaml#/components/schemas/MetricDefinition_v1_3_3_MetricDefinition required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MetricDefinition.v1_3_3.yaml#/components/schemas/MetricDefinition_v1_3_3_MetricDefinition description: The response contains a representation of the MetricDefinition resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the MetricDefinition resource in: path name: MetricDefinitionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MetricDefinition.v1_3_3.yaml#/components/schemas/MetricDefinition_v1_3_3_MetricDefinition required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MetricDefinition.v1_3_3.yaml#/components/schemas/MetricDefinition_v1_3_3_MetricDefinition description: The response contains a representation of the MetricDefinition resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/TelemetryService/MetricReportDefinitions: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MetricReportDefinitionCollection.yaml#/components/schemas/MetricReportDefinitionCollection_MetricReportDefinitionCollection description: The response contains a representation of the MetricReportDefinitionCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MetricReportDefinition.v1_4_5.yaml#/components/schemas/MetricReportDefinition_v1_4_5_MetricReportDefinition required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MetricReportDefinition.v1_4_5.yaml#/components/schemas/MetricReportDefinition_v1_4_5_MetricReportDefinition description: A resource of type MetricReportDefinition has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/TelemetryService/MetricReportDefinitions/{MetricReportDefinitionId}: delete: parameters: - description: The value of the Id property of the MetricReportDefinition resource in: path name: MetricReportDefinitionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MetricReportDefinition.v1_4_5.yaml#/components/schemas/MetricReportDefinition_v1_4_5_MetricReportDefinition description: The response contains a representation of the MetricReportDefinition resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the MetricReportDefinition resource in: path name: MetricReportDefinitionId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MetricReportDefinition.v1_4_5.yaml#/components/schemas/MetricReportDefinition_v1_4_5_MetricReportDefinition description: The response contains a representation of the MetricReportDefinition resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the MetricReportDefinition resource in: path name: MetricReportDefinitionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MetricReportDefinition.v1_4_5.yaml#/components/schemas/MetricReportDefinition_v1_4_5_MetricReportDefinition required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MetricReportDefinition.v1_4_5.yaml#/components/schemas/MetricReportDefinition_v1_4_5_MetricReportDefinition description: The response contains a representation of the MetricReportDefinition resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the MetricReportDefinition resource in: path name: MetricReportDefinitionId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MetricReportDefinition.v1_4_5.yaml#/components/schemas/MetricReportDefinition_v1_4_5_MetricReportDefinition required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MetricReportDefinition.v1_4_5.yaml#/components/schemas/MetricReportDefinition_v1_4_5_MetricReportDefinition description: The response contains a representation of the MetricReportDefinition resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/TelemetryService/MetricReports: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MetricReportCollection.yaml#/components/schemas/MetricReportCollection_MetricReportCollection description: The response contains a representation of the MetricReportCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/TelemetryService/MetricReports/{MetricReportId}: delete: parameters: - description: The value of the Id property of the MetricReport resource in: path name: MetricReportId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MetricReport.v1_5_0.yaml#/components/schemas/MetricReport_v1_5_0_MetricReport description: The response contains a representation of the MetricReport resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the MetricReport resource in: path name: MetricReportId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/MetricReport.v1_5_0.yaml#/components/schemas/MetricReport_v1_5_0_MetricReport description: The response contains a representation of the MetricReport resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/TelemetryService/Triggers: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/TriggersCollection.yaml#/components/schemas/TriggersCollection_TriggersCollection description: The response contains a representation of the TriggersCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Triggers.v1_3_2.yaml#/components/schemas/Triggers_v1_3_2_Triggers required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Triggers.v1_3_2.yaml#/components/schemas/Triggers_v1_3_2_Triggers description: A resource of type Triggers has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/TelemetryService/Triggers/{TriggersId}: delete: parameters: - description: The value of the Id property of the Triggers resource in: path name: TriggersId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Triggers.v1_3_2.yaml#/components/schemas/Triggers_v1_3_2_Triggers description: The response contains a representation of the Triggers resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Triggers resource in: path name: TriggersId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Triggers.v1_3_2.yaml#/components/schemas/Triggers_v1_3_2_Triggers description: The response contains a representation of the Triggers resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Triggers resource in: path name: TriggersId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Triggers.v1_3_2.yaml#/components/schemas/Triggers_v1_3_2_Triggers required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Triggers.v1_3_2.yaml#/components/schemas/Triggers_v1_3_2_Triggers description: The response contains a representation of the Triggers resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Triggers resource in: path name: TriggersId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Triggers.v1_3_2.yaml#/components/schemas/Triggers_v1_3_2_Triggers required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Triggers.v1_3_2.yaml#/components/schemas/Triggers_v1_3_2_Triggers description: The response contains a representation of the Triggers resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ThermalEquipment.v1_1_1.yaml#/components/schemas/ThermalEquipment_v1_1_1_ThermalEquipment description: The response contains a representation of the ThermalEquipment resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CDUs: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolingUnitCollection.yaml#/components/schemas/CoolingUnitCollection_CoolingUnitCollection description: The response contains a representation of the CoolingUnitCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CDUs/{CoolingUnitId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolingUnit.v1_1_1.yaml#/components/schemas/CoolingUnit_v1_1_1_CoolingUnit description: The response contains a representation of the CoolingUnit resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolingUnit.v1_1_1.yaml#/components/schemas/CoolingUnit_v1_1_1_CoolingUnit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolingUnit.v1_1_1.yaml#/components/schemas/CoolingUnit_v1_1_1_CoolingUnit description: The response contains a representation of the CoolingUnit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolingUnit.v1_1_1.yaml#/components/schemas/CoolingUnit_v1_1_1_CoolingUnit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolingUnit.v1_1_1.yaml#/components/schemas/CoolingUnit_v1_1_1_CoolingUnit description: The response contains a representation of the CoolingUnit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CDUs/{CoolingUnitId}/Assembly: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CDUs/{CoolingUnitId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CDUs/{CoolingUnitId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics: post: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CDUs/{CoolingUnitId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults: post: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CDUs/{CoolingUnitId}/Filters: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FilterCollection.yaml#/components/schemas/FilterCollection_FilterCollection description: The response contains a representation of the FilterCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CDUs/{CoolingUnitId}/Filters/{FilterId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CDUs/{CoolingUnitId}/Filters/{FilterId}/Assembly: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CDUs/{CoolingUnitId}/LeakDetection: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LeakDetection.v1_0_0.yaml#/components/schemas/LeakDetection_v1_0_0_LeakDetection description: The response contains a representation of the LeakDetection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CDUs/{CoolingUnitId}/LeakDetection/LeakDetectors: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LeakDetectorCollection.yaml#/components/schemas/LeakDetectorCollection_LeakDetectorCollection description: The response contains a representation of the LeakDetectorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CDUs/{CoolingUnitId}/LeakDetection/LeakDetectors/{LeakDetectorId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the LeakDetector resource in: path name: LeakDetectorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LeakDetector.v1_0_1.yaml#/components/schemas/LeakDetector_v1_0_1_LeakDetector description: The response contains a representation of the LeakDetector resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CDUs/{CoolingUnitId}/PrimaryCoolantConnectors: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnectorCollection.yaml#/components/schemas/CoolantConnectorCollection_CoolantConnectorCollection description: The response contains a representation of the CoolantConnectorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CDUs/{CoolingUnitId}/PrimaryCoolantConnectors/{CoolantConnectorId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the CoolantConnector resource in: path name: CoolantConnectorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector description: The response contains a representation of the CoolantConnector resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the CoolantConnector resource in: path name: CoolantConnectorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector description: The response contains a representation of the CoolantConnector resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the CoolantConnector resource in: path name: CoolantConnectorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector description: The response contains a representation of the CoolantConnector resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CDUs/{CoolingUnitId}/Pumps: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PumpCollection.yaml#/components/schemas/PumpCollection_PumpCollection description: The response contains a representation of the PumpCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CDUs/{CoolingUnitId}/Pumps/{PumpId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Pump.v1_0_1.yaml#/components/schemas/Pump_v1_0_1_Pump description: The response contains a representation of the Pump resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Pump.v1_0_1.yaml#/components/schemas/Pump_v1_0_1_Pump required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Pump.v1_0_1.yaml#/components/schemas/Pump_v1_0_1_Pump description: The response contains a representation of the Pump resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Pump.v1_0_1.yaml#/components/schemas/Pump_v1_0_1_Pump required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Pump.v1_0_1.yaml#/components/schemas/Pump_v1_0_1_Pump description: The response contains a representation of the Pump resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CDUs/{CoolingUnitId}/Pumps/{PumpId}/Assembly: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CDUs/{CoolingUnitId}/Pumps/{PumpId}/Filters: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FilterCollection.yaml#/components/schemas/FilterCollection_FilterCollection description: The response contains a representation of the FilterCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CDUs/{CoolingUnitId}/Pumps/{PumpId}/Filters/{FilterId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CDUs/{CoolingUnitId}/Pumps/{PumpId}/Filters/{FilterId}/Assembly: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CDUs/{CoolingUnitId}/Reservoirs: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ReservoirCollection.yaml#/components/schemas/ReservoirCollection_ReservoirCollection description: The response contains a representation of the ReservoirCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CDUs/{CoolingUnitId}/Reservoirs/{ReservoirId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Reservoir.v1_0_1.yaml#/components/schemas/Reservoir_v1_0_1_Reservoir description: The response contains a representation of the Reservoir resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Reservoir.v1_0_1.yaml#/components/schemas/Reservoir_v1_0_1_Reservoir required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Reservoir.v1_0_1.yaml#/components/schemas/Reservoir_v1_0_1_Reservoir description: The response contains a representation of the Reservoir resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Reservoir.v1_0_1.yaml#/components/schemas/Reservoir_v1_0_1_Reservoir required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Reservoir.v1_0_1.yaml#/components/schemas/Reservoir_v1_0_1_Reservoir description: The response contains a representation of the Reservoir resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CDUs/{CoolingUnitId}/Reservoirs/{ReservoirId}/Assembly: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CDUs/{CoolingUnitId}/Reservoirs/{ReservoirId}/Filters: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FilterCollection.yaml#/components/schemas/FilterCollection_FilterCollection description: The response contains a representation of the FilterCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CDUs/{CoolingUnitId}/Reservoirs/{ReservoirId}/Filters/{FilterId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CDUs/{CoolingUnitId}/Reservoirs/{ReservoirId}/Filters/{FilterId}/Assembly: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CDUs/{CoolingUnitId}/SecondaryCoolantConnectors: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnectorCollection.yaml#/components/schemas/CoolantConnectorCollection_CoolantConnectorCollection description: The response contains a representation of the CoolantConnectorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CDUs/{CoolingUnitId}/SecondaryCoolantConnectors/{CoolantConnectorId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the CoolantConnector resource in: path name: CoolantConnectorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector description: The response contains a representation of the CoolantConnector resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the CoolantConnector resource in: path name: CoolantConnectorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector description: The response contains a representation of the CoolantConnector resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the CoolantConnector resource in: path name: CoolantConnectorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector description: The response contains a representation of the CoolantConnector resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CoolingLoops: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolingLoopCollection.yaml#/components/schemas/CoolingLoopCollection_CoolingLoopCollection description: The response contains a representation of the CoolingLoopCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CoolingLoops/{CoolingLoopId}: get: parameters: - description: The value of the Id property of the CoolingLoop resource in: path name: CoolingLoopId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolingLoop.v1_0_2.yaml#/components/schemas/CoolingLoop_v1_0_2_CoolingLoop description: The response contains a representation of the CoolingLoop resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingLoop resource in: path name: CoolingLoopId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolingLoop.v1_0_2.yaml#/components/schemas/CoolingLoop_v1_0_2_CoolingLoop required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolingLoop.v1_0_2.yaml#/components/schemas/CoolingLoop_v1_0_2_CoolingLoop description: The response contains a representation of the CoolingLoop resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingLoop resource in: path name: CoolingLoopId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolingLoop.v1_0_2.yaml#/components/schemas/CoolingLoop_v1_0_2_CoolingLoop required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolingLoop.v1_0_2.yaml#/components/schemas/CoolingLoop_v1_0_2_CoolingLoop description: The response contains a representation of the CoolingLoop resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CoolingLoops/{CoolingUnitId}/PrimaryCoolantConnectors: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnectorCollection.yaml#/components/schemas/CoolantConnectorCollection_CoolantConnectorCollection description: The response contains a representation of the CoolantConnectorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CoolingLoops/{CoolingUnitId}/PrimaryCoolantConnectors/{CoolantConnectorId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the CoolantConnector resource in: path name: CoolantConnectorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector description: The response contains a representation of the CoolantConnector resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the CoolantConnector resource in: path name: CoolantConnectorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector description: The response contains a representation of the CoolantConnector resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the CoolantConnector resource in: path name: CoolantConnectorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector description: The response contains a representation of the CoolantConnector resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CoolingLoops/{CoolingUnitId}/SecondaryCoolantConnectors: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnectorCollection.yaml#/components/schemas/CoolantConnectorCollection_CoolantConnectorCollection description: The response contains a representation of the CoolantConnectorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/CoolingLoops/{CoolingUnitId}/SecondaryCoolantConnectors/{CoolantConnectorId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the CoolantConnector resource in: path name: CoolantConnectorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector description: The response contains a representation of the CoolantConnector resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the CoolantConnector resource in: path name: CoolantConnectorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector description: The response contains a representation of the CoolantConnector resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the CoolantConnector resource in: path name: CoolantConnectorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector description: The response contains a representation of the CoolantConnector resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/HeatExchangers: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolingUnitCollection.yaml#/components/schemas/CoolingUnitCollection_CoolingUnitCollection description: The response contains a representation of the CoolingUnitCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/HeatExchangers/{CoolingUnitId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolingUnit.v1_1_1.yaml#/components/schemas/CoolingUnit_v1_1_1_CoolingUnit description: The response contains a representation of the CoolingUnit resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolingUnit.v1_1_1.yaml#/components/schemas/CoolingUnit_v1_1_1_CoolingUnit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolingUnit.v1_1_1.yaml#/components/schemas/CoolingUnit_v1_1_1_CoolingUnit description: The response contains a representation of the CoolingUnit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolingUnit.v1_1_1.yaml#/components/schemas/CoolingUnit_v1_1_1_CoolingUnit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolingUnit.v1_1_1.yaml#/components/schemas/CoolingUnit_v1_1_1_CoolingUnit description: The response contains a representation of the CoolingUnit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/HeatExchangers/{CoolingUnitId}/Assembly: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/HeatExchangers/{CoolingUnitId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/HeatExchangers/{CoolingUnitId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics: post: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/HeatExchangers/{CoolingUnitId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults: post: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/HeatExchangers/{CoolingUnitId}/Filters: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FilterCollection.yaml#/components/schemas/FilterCollection_FilterCollection description: The response contains a representation of the FilterCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/HeatExchangers/{CoolingUnitId}/Filters/{FilterId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/HeatExchangers/{CoolingUnitId}/Filters/{FilterId}/Assembly: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/HeatExchangers/{CoolingUnitId}/LeakDetection: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LeakDetection.v1_0_0.yaml#/components/schemas/LeakDetection_v1_0_0_LeakDetection description: The response contains a representation of the LeakDetection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/HeatExchangers/{CoolingUnitId}/LeakDetection/LeakDetectors/: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LeakDetectorCollection.yaml#/components/schemas/LeakDetectorCollection_LeakDetectorCollection description: The response contains a representation of the LeakDetectorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/HeatExchangers/{CoolingUnitId}/LeakDetection/LeakDetectors/{LeakDetectorId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the LeakDetector resource in: path name: LeakDetectorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LeakDetector.v1_0_1.yaml#/components/schemas/LeakDetector_v1_0_1_LeakDetector description: The response contains a representation of the LeakDetector resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/HeatExchangers/{CoolingUnitId}/PrimaryCoolantConnectors: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnectorCollection.yaml#/components/schemas/CoolantConnectorCollection_CoolantConnectorCollection description: The response contains a representation of the CoolantConnectorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/HeatExchangers/{CoolingUnitId}/PrimaryCoolantConnectors/{CoolantConnectorId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the CoolantConnector resource in: path name: CoolantConnectorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector description: The response contains a representation of the CoolantConnector resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the CoolantConnector resource in: path name: CoolantConnectorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector description: The response contains a representation of the CoolantConnector resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the CoolantConnector resource in: path name: CoolantConnectorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector description: The response contains a representation of the CoolantConnector resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/HeatExchangers/{CoolingUnitId}/Pumps: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PumpCollection.yaml#/components/schemas/PumpCollection_PumpCollection description: The response contains a representation of the PumpCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/HeatExchangers/{CoolingUnitId}/Pumps/{PumpId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Pump.v1_0_1.yaml#/components/schemas/Pump_v1_0_1_Pump description: The response contains a representation of the Pump resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Pump.v1_0_1.yaml#/components/schemas/Pump_v1_0_1_Pump required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Pump.v1_0_1.yaml#/components/schemas/Pump_v1_0_1_Pump description: The response contains a representation of the Pump resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Pump.v1_0_1.yaml#/components/schemas/Pump_v1_0_1_Pump required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Pump.v1_0_1.yaml#/components/schemas/Pump_v1_0_1_Pump description: The response contains a representation of the Pump resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/HeatExchangers/{CoolingUnitId}/Pumps/{PumpId}/Assembly: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/HeatExchangers/{CoolingUnitId}/Pumps/{PumpId}/Filters: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FilterCollection.yaml#/components/schemas/FilterCollection_FilterCollection description: The response contains a representation of the FilterCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/HeatExchangers/{CoolingUnitId}/Pumps/{PumpId}/Filters/{FilterId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/HeatExchangers/{CoolingUnitId}/Pumps/{PumpId}/Filters/{FilterId}/Assembly: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/HeatExchangers/{CoolingUnitId}/Reservoirs: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ReservoirCollection.yaml#/components/schemas/ReservoirCollection_ReservoirCollection description: The response contains a representation of the ReservoirCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/HeatExchangers/{CoolingUnitId}/Reservoirs/{ReservoirId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Reservoir.v1_0_1.yaml#/components/schemas/Reservoir_v1_0_1_Reservoir description: The response contains a representation of the Reservoir resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Reservoir.v1_0_1.yaml#/components/schemas/Reservoir_v1_0_1_Reservoir required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Reservoir.v1_0_1.yaml#/components/schemas/Reservoir_v1_0_1_Reservoir description: The response contains a representation of the Reservoir resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Reservoir.v1_0_1.yaml#/components/schemas/Reservoir_v1_0_1_Reservoir required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Reservoir.v1_0_1.yaml#/components/schemas/Reservoir_v1_0_1_Reservoir description: The response contains a representation of the Reservoir resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/HeatExchangers/{CoolingUnitId}/Reservoirs/{ReservoirId}/Assembly: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/HeatExchangers/{CoolingUnitId}/Reservoirs/{ReservoirId}/Filters: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FilterCollection.yaml#/components/schemas/FilterCollection_FilterCollection description: The response contains a representation of the FilterCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/HeatExchangers/{CoolingUnitId}/Reservoirs/{ReservoirId}/Filters/{FilterId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/HeatExchangers/{CoolingUnitId}/Reservoirs/{ReservoirId}/Filters/{FilterId}/Assembly: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/HeatExchangers/{CoolingUnitId}/SecondaryCoolantConnectors: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnectorCollection.yaml#/components/schemas/CoolantConnectorCollection_CoolantConnectorCollection description: The response contains a representation of the CoolantConnectorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/HeatExchangers/{CoolingUnitId}/SecondaryCoolantConnectors/{CoolantConnectorId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the CoolantConnector resource in: path name: CoolantConnectorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector description: The response contains a representation of the CoolantConnector resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the CoolantConnector resource in: path name: CoolantConnectorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector description: The response contains a representation of the CoolantConnector resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the CoolantConnector resource in: path name: CoolantConnectorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector description: The response contains a representation of the CoolantConnector resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/ImmersionUnits: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolingUnitCollection.yaml#/components/schemas/CoolingUnitCollection_CoolingUnitCollection description: The response contains a representation of the CoolingUnitCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/ImmersionUnits/{CoolingUnitId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolingUnit.v1_1_1.yaml#/components/schemas/CoolingUnit_v1_1_1_CoolingUnit description: The response contains a representation of the CoolingUnit resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolingUnit.v1_1_1.yaml#/components/schemas/CoolingUnit_v1_1_1_CoolingUnit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolingUnit.v1_1_1.yaml#/components/schemas/CoolingUnit_v1_1_1_CoolingUnit description: The response contains a representation of the CoolingUnit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolingUnit.v1_1_1.yaml#/components/schemas/CoolingUnit_v1_1_1_CoolingUnit required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolingUnit.v1_1_1.yaml#/components/schemas/CoolingUnit_v1_1_1_CoolingUnit description: The response contains a representation of the CoolingUnit resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/ImmersionUnits/{CoolingUnitId}/Assembly: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/ImmersionUnits/{CoolingUnitId}/EnvironmentMetrics: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_EnvironmentMetrics description: The response contains a representation of the EnvironmentMetrics resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/ImmersionUnits/{CoolingUnitId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetMetrics: post: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetMetricsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetMetrics action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/ImmersionUnits/{CoolingUnitId}/EnvironmentMetrics/Actions/EnvironmentMetrics.ResetToDefaults: post: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics.v1_3_1.yaml#/components/schemas/EnvironmentMetrics_v1_3_1_ResetToDefaultsRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the ResetToDefaults action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/ImmersionUnits/{CoolingUnitId}/Filters: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FilterCollection.yaml#/components/schemas/FilterCollection_FilterCollection description: The response contains a representation of the FilterCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/ImmersionUnits/{CoolingUnitId}/Filters/{FilterId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/ImmersionUnits/{CoolingUnitId}/Filters/{FilterId}/Assembly: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/ImmersionUnits/{CoolingUnitId}/LeakDetection: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LeakDetection.v1_0_0.yaml#/components/schemas/LeakDetection_v1_0_0_LeakDetection description: The response contains a representation of the LeakDetection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/ImmersionUnits/{CoolingUnitId}/LeakDetection/LeakDetectors: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LeakDetectorCollection.yaml#/components/schemas/LeakDetectorCollection_LeakDetectorCollection description: The response contains a representation of the LeakDetectorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/ImmersionUnits/{CoolingUnitId}/LeakDetection/LeakDetectors/{LeakDetectorId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the LeakDetector resource in: path name: LeakDetectorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/LeakDetector.v1_0_1.yaml#/components/schemas/LeakDetector_v1_0_1_LeakDetector description: The response contains a representation of the LeakDetector resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/ImmersionUnits/{CoolingUnitId}/PrimaryCoolantConnectors: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnectorCollection.yaml#/components/schemas/CoolantConnectorCollection_CoolantConnectorCollection description: The response contains a representation of the CoolantConnectorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/ImmersionUnits/{CoolingUnitId}/PrimaryCoolantConnectors/{CoolantConnectorId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the CoolantConnector resource in: path name: CoolantConnectorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector description: The response contains a representation of the CoolantConnector resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the CoolantConnector resource in: path name: CoolantConnectorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector description: The response contains a representation of the CoolantConnector resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the CoolantConnector resource in: path name: CoolantConnectorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector description: The response contains a representation of the CoolantConnector resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/ImmersionUnits/{CoolingUnitId}/Pumps: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/PumpCollection.yaml#/components/schemas/PumpCollection_PumpCollection description: The response contains a representation of the PumpCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/ImmersionUnits/{CoolingUnitId}/Pumps/{PumpId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Pump.v1_0_1.yaml#/components/schemas/Pump_v1_0_1_Pump description: The response contains a representation of the Pump resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Pump.v1_0_1.yaml#/components/schemas/Pump_v1_0_1_Pump required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Pump.v1_0_1.yaml#/components/schemas/Pump_v1_0_1_Pump description: The response contains a representation of the Pump resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Pump.v1_0_1.yaml#/components/schemas/Pump_v1_0_1_Pump required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Pump.v1_0_1.yaml#/components/schemas/Pump_v1_0_1_Pump description: The response contains a representation of the Pump resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/ImmersionUnits/{CoolingUnitId}/Pumps/{PumpId}/Assembly: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/ImmersionUnits/{CoolingUnitId}/Pumps/{PumpId}/Filters: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FilterCollection.yaml#/components/schemas/FilterCollection_FilterCollection description: The response contains a representation of the FilterCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/ImmersionUnits/{CoolingUnitId}/Pumps/{PumpId}/Filters/{FilterId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/ImmersionUnits/{CoolingUnitId}/Pumps/{PumpId}/Filters/{FilterId}/Assembly: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Pump resource in: path name: PumpId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/ImmersionUnits/{CoolingUnitId}/Reservoirs: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/ReservoirCollection.yaml#/components/schemas/ReservoirCollection_ReservoirCollection description: The response contains a representation of the ReservoirCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/ImmersionUnits/{CoolingUnitId}/Reservoirs/{ReservoirId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Reservoir.v1_0_1.yaml#/components/schemas/Reservoir_v1_0_1_Reservoir description: The response contains a representation of the Reservoir resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Reservoir.v1_0_1.yaml#/components/schemas/Reservoir_v1_0_1_Reservoir required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Reservoir.v1_0_1.yaml#/components/schemas/Reservoir_v1_0_1_Reservoir description: The response contains a representation of the Reservoir resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Reservoir.v1_0_1.yaml#/components/schemas/Reservoir_v1_0_1_Reservoir required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Reservoir.v1_0_1.yaml#/components/schemas/Reservoir_v1_0_1_Reservoir description: The response contains a representation of the Reservoir resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/ImmersionUnits/{CoolingUnitId}/Reservoirs/{ReservoirId}/Assembly: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/ImmersionUnits/{CoolingUnitId}/Reservoirs/{ReservoirId}/Filters: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/FilterCollection.yaml#/components/schemas/FilterCollection_FilterCollection description: The response contains a representation of the FilterCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/ImmersionUnits/{CoolingUnitId}/Reservoirs/{ReservoirId}/Filters/{FilterId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Filter.v1_0_1.yaml#/components/schemas/Filter_v1_0_1_Filter description: The response contains a representation of the Filter resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/ImmersionUnits/{CoolingUnitId}/Reservoirs/{ReservoirId}/Filters/{FilterId}/Assembly: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the Reservoir resource in: path name: ReservoirId required: true schema: type: string - description: The value of the Id property of the Filter resource in: path name: FilterId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Assembly.v1_5_0.yaml#/components/schemas/Assembly_v1_5_0_Assembly description: The response contains a representation of the Assembly resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/ImmersionUnits/{CoolingUnitId}/SecondaryCoolantConnectors: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnectorCollection.yaml#/components/schemas/CoolantConnectorCollection_CoolantConnectorCollection description: The response contains a representation of the CoolantConnectorCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/ThermalEquipment/ImmersionUnits/{CoolingUnitId}/SecondaryCoolantConnectors/{CoolantConnectorId}: get: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the CoolantConnector resource in: path name: CoolantConnectorId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector description: The response contains a representation of the CoolantConnector resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the CoolantConnector resource in: path name: CoolantConnectorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector description: The response contains a representation of the CoolantConnector resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the CoolingUnit resource in: path name: CoolingUnitId required: true schema: type: string - description: The value of the Id property of the CoolantConnector resource in: path name: CoolantConnectorId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CoolantConnector.v1_0_1.yaml#/components/schemas/CoolantConnector_v1_0_1_CoolantConnector description: The response contains a representation of the CoolantConnector resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/UpdateService: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/UpdateService.v1_13_0.yaml#/components/schemas/UpdateService_v1_13_0_UpdateService description: The response contains a representation of the UpdateService resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/UpdateService.v1_13_0.yaml#/components/schemas/UpdateService_v1_13_0_UpdateService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/UpdateService.v1_13_0.yaml#/components/schemas/UpdateService_v1_13_0_UpdateService description: The response contains a representation of the UpdateService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/UpdateService.v1_13_0.yaml#/components/schemas/UpdateService_v1_13_0_UpdateService required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/UpdateService.v1_13_0.yaml#/components/schemas/UpdateService_v1_13_0_UpdateService description: The response contains a representation of the UpdateService resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/UpdateService/Actions/UpdateService.GenerateSSHIdentityKeyPair: post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/UpdateService.v1_13_0.yaml#/components/schemas/UpdateService_v1_13_0_GenerateSSHIdentityKeyPairRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the GenerateSSHIdentityKeyPair action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the GenerateSSHIdentityKeyPair action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/UpdateService/Actions/UpdateService.RemoveSSHIdentityKeyPair: post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/UpdateService.v1_13_0.yaml#/components/schemas/UpdateService_v1_13_0_RemoveSSHIdentityKeyPairRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveSSHIdentityKeyPair action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the RemoveSSHIdentityKeyPair action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/UpdateService/Actions/UpdateService.SimpleUpdate: post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/UpdateService.v1_13_0.yaml#/components/schemas/UpdateService_v1_13_0_SimpleUpdateRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SimpleUpdate action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the SimpleUpdate action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/UpdateService/Actions/UpdateService.StartUpdate: post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/UpdateService.v1_13_0.yaml#/components/schemas/UpdateService_v1_13_0_StartUpdateRequestBody required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the StartUpdate action '201': content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: The response contains the results of the StartUpdate action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/UpdateService/ClientCertificates: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/UpdateService/ClientCertificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/UpdateService/ClientCertificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/UpdateService/ClientCertificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/UpdateService/FirmwareInventory: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SoftwareInventoryCollection.yaml#/components/schemas/SoftwareInventoryCollection_SoftwareInventoryCollection description: The response contains a representation of the SoftwareInventoryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/UpdateService/FirmwareInventory/{SoftwareInventoryId}: get: parameters: - description: The value of the Id property of the SoftwareInventory resource in: path name: SoftwareInventoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SoftwareInventory.v1_10_1.yaml#/components/schemas/SoftwareInventory_v1_10_1_SoftwareInventory description: The response contains a representation of the SoftwareInventory resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the SoftwareInventory resource in: path name: SoftwareInventoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SoftwareInventory.v1_10_1.yaml#/components/schemas/SoftwareInventory_v1_10_1_SoftwareInventory required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SoftwareInventory.v1_10_1.yaml#/components/schemas/SoftwareInventory_v1_10_1_SoftwareInventory description: The response contains a representation of the SoftwareInventory resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the SoftwareInventory resource in: path name: SoftwareInventoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SoftwareInventory.v1_10_1.yaml#/components/schemas/SoftwareInventory_v1_10_1_SoftwareInventory required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SoftwareInventory.v1_10_1.yaml#/components/schemas/SoftwareInventory_v1_10_1_SoftwareInventory description: The response contains a representation of the SoftwareInventory resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/UpdateService/PublicIdentitySSHKey/{KeyId}: delete: parameters: - description: The value of the Id property of the Key resource in: path name: KeyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Key resource in: path name: KeyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Key resource in: path name: KeyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Key resource in: path name: KeyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/UpdateService/RemoteServerCertificates: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/CertificateCollection.yaml#/components/schemas/CertificateCollection_CertificateCollection description: The response contains a representation of the CertificateCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: A resource of type Certificate has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/UpdateService/RemoteServerCertificates/{CertificateId}: delete: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_Certificate description: The response contains a representation of the Certificate resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/UpdateService/RemoteServerCertificates/{CertificateId}/Actions/Certificate.Rekey: post: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RekeyResponse description: The response contains the results of the Rekey action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/UpdateService/RemoteServerCertificates/{CertificateId}/Actions/Certificate.Renew: post: parameters: - description: The value of the Id property of the Certificate resource in: path name: CertificateId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewRequestBody required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Certificate.v1_8_1.yaml#/components/schemas/Certificate_v1_8_1_RenewResponse description: The response contains the results of the Renew action '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/UpdateService/RemoteServerSSHKeys: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/KeyCollection.yaml#/components/schemas/KeyCollection_KeyCollection description: The response contains a representation of the KeyCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition post: requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key required: true responses: '201': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: A resource of type Key has been created '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/UpdateService/RemoteServerSSHKeys/{KeyId}: delete: parameters: - description: The value of the Id property of the Key resource in: path name: KeyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition get: parameters: - description: The value of the Id property of the Key resource in: path name: KeyId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the Key resource in: path name: KeyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the Key resource in: path name: KeyId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Key.v1_4_0.yaml#/components/schemas/Key_v1_4_0_Key description: The response contains a representation of the Key resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/UpdateService/SoftwareInventory: get: responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SoftwareInventoryCollection.yaml#/components/schemas/SoftwareInventoryCollection_SoftwareInventoryCollection description: The response contains a representation of the SoftwareInventoryCollection resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/UpdateService/SoftwareInventory/{SoftwareInventoryId}: get: parameters: - description: The value of the Id property of the SoftwareInventory resource in: path name: SoftwareInventoryId required: true schema: type: string responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SoftwareInventory.v1_10_1.yaml#/components/schemas/SoftwareInventory_v1_10_1_SoftwareInventory description: The response contains a representation of the SoftwareInventory resource default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition patch: parameters: - description: The value of the Id property of the SoftwareInventory resource in: path name: SoftwareInventoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SoftwareInventory.v1_10_1.yaml#/components/schemas/SoftwareInventory_v1_10_1_SoftwareInventory required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SoftwareInventory.v1_10_1.yaml#/components/schemas/SoftwareInventory_v1_10_1_SoftwareInventory description: The response contains a representation of the SoftwareInventory resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition put: parameters: - description: The value of the Id property of the SoftwareInventory resource in: path name: SoftwareInventoryId required: true schema: type: string requestBody: content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SoftwareInventory.v1_10_1.yaml#/components/schemas/SoftwareInventory_v1_10_1_SoftwareInventory required: true responses: '200': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/SoftwareInventory.v1_10_1.yaml#/components/schemas/SoftwareInventory_v1_10_1_SoftwareInventory description: The response contains a representation of the SoftwareInventory resource '202': content: application/json: schema: $ref: http://redfish.dmtf.org/schemas/v1/Task.v1_7_3.yaml#/components/schemas/Task_v1_7_3_Task description: Accepted; a task has been generated '204': description: Success, but no response data default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition /redfish/v1/odata: get: responses: '200': content: application/json: schema: description: The OData service document from a Redfish service. properties: '@odata.context': $ref: http://redfish.dmtf.org/schemas/v1/odata-v4.yaml#/components/schemas/odata-v4_context value: description: The list of services provided by the Redfish service. items: properties: kind: description: Type of resource. Value is `Singleton` for all cases defined by Redfish. readOnly: true type: string name: description: User-friendly resource name of the resource. readOnly: true type: string url: description: Relative URL for the top-level resource. readOnly: true type: string required: - name - kind - url type: object type: array required: - '@odata.context' - value type: object description: OData service document default: content: application/json: schema: $ref: '#/components/schemas/RedfishError' description: Error condition