调用CreateDataSource接口,创建DataWorks数据源。
调试
您可以在OpenAPI Explorer中直接运行该接口,免去您计算签名的困扰。运行成功后,OpenAPI Explorer可以自动生成SDK代码示例。
请求参数
名称 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
Action | String | 是 | CreateDataSource |
系统规定参数。取值:CreateDataSource。 |
ProjectId | Long | 是 | 1 |
数据源所在的DataWorks工作空间ID。您可以通过ListProjects接口获取工作空间ID。 |
Name | String | 是 | abc |
数据源的名称。 |
Description | String | 否 | abc |
数据源的描述信息。 |
DataSourceType | String | 是 | rds |
数据源的类型。常用类型如下:
|
SubType | String | 否 | mysql |
数据源的子类型。使用如下:
|
EnvType | Integer | 是 | 1 |
数据源所属的环境,包括0(开发环境)和1(生产环境)。 |
Content | String | 是 | {"database":"dbname","instanceName":"instancename","password":"password","rdsOwnerId":"123","username":"username"} |
数据源的详细信息。部分常用数据源样例如下:
|
返回数据
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
HttpStatusCode | String | 200 |
HTTP状态码。 |
Data | Long | 123 |
数据源ID。 |
RequestId | String | 0bc141151593763**** |
请求ID。 |
Success | Boolean | true |
请求是否成功。 |
示例
请求示例
http(s)://[Endpoint]/?Action=CreateDataSource
&ProjectId=1
&Name=abc
&Description=abc
&DataSourceType=rds
&SubType=mysql
&EnvType=1
&Content={"database":"dbname","instanceName":"instancename","password":"password","rdsOwnerId":"123","username":"username"}
&公共请求参数
正常返回示例
XML
格式
HTTP/1.1 200 OK
Content-Type:application/xml
<CreateDataSourceResponse>
<HttpStatusCode>200</HttpStatusCode>
<Data>123</Data>
<RequestId>0bc141151593763****</RequestId>
<Success>true</Success>
</CreateDataSourceResponse>
JSON
格式
HTTP/1.1 200 OK
Content-Type:application/json
{
"HttpStatusCode" : 200,
"Data" : 123,
"RequestId" : "0bc141151593763****",
"Success" : true
}
错误码
HttpCode | 错误码 | 错误信息 | 描述 |
---|---|---|---|
400 | Invalid.Tenant.ConnectionNotExists | The connection does not exist. | 数据源不存在。 |
400 | Invalid.Tenant.ProjectNotExists | The project does not exist. | 项目不存在。 |
400 | Invalid.Tenant.UserNotInProject | The user is not in the project. | 用户不在项目中。 |
400 | ConnectionAlreadyExist | The connection with envType %s and name %s already exists. | 连接串名称重复 |
400 | DataSource.CheckRamRoleFailure | Failed to check the RAM role. AccountId %s. roleArn %s. | 校验数据源权限失败 |
400 | DataSource.ConnectionStrProperty.PatternNotMatch | The pattern value %s is invalid. The correct pattern is %s. | 数据源连接串属性不匹配规则 |
400 | Invalid.DataSource.DataSourceTypeNotSupport | The dataSourceType %s and subType %s are not supported. | 数据源类型暂不支持 |
400 | MissingParam.ConnectionStr.Property | You must specify property %s required by the data source connection string. | 数据源连接串信息必填属性缺失 |
400 | Invalid.DataSource.DataSourceTypeNotExist | The data source type %s does not exist. | 数据源类型不存在。 |
403 | Invalid.Tenant.UserIsNotProjectOwnerOrAdmin | The user is not a project administrator or owner. | 用户不是项目负责人或者项目管理员。 |
403 | Invalid.Tenant.UserNotInTenant | The user is not in tenant. | 用户不在租户中。 |
访问错误中心查看更多错误码。