Skip to content

OperationProps

Properties for defining a Operation.

See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-apig-operation

Initializer

using AlibabaCloud.SDK.ROS.CDK.Apig;
new OperationProps {
    object HttpApiId,
    object Method,
    object OperationName,
    object Path,
    object Description = null,
    object Mock = null
};

Properties

Name Type Description
HttpApiId object Property httpApiId: The HTTP API ID to which the interface belongs.
Method object Property method: The method of http protocol.
OperationName object Property operationName: The name of the operation.
Path object Property path: The interface path of the operation.
Description object Property description: The description of the operation.
Mock object Property mock: Mock configuration.

HttpApiIdRequired

public object HttpApiId { get; set; }
  • Type: object

Property httpApiId: The HTTP API ID to which the interface belongs.


MethodRequired

public object Method { get; set; }
  • Type: object

Property method: The method of http protocol.


OperationNameRequired

public object OperationName { get; set; }
  • Type: object

Property operationName: The name of the operation.


PathRequired

public object Path { get; set; }
  • Type: object

Property path: The interface path of the operation.


DescriptionOptional

public object Description { get; set; }
  • Type: object

Property description: The description of the operation.


MockOptional

public object Mock { get; set; }
  • Type: object

Property mock: Mock configuration.