-
Notifications
You must be signed in to change notification settings - Fork 625
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add LabelPriorityLevel in UpdateModelFeature API.
- Loading branch information
Showing
155 changed files
with
13,999 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 80 additions & 0 deletions
80
...net-sdk-paifeaturestore/PaiFeatureStore/Model/V20230621/CheckInstanceDatasourceRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
using System.Collections.Generic; | ||
|
||
using Aliyun.Acs.Core; | ||
using Aliyun.Acs.Core.Http; | ||
using Aliyun.Acs.Core.Transform; | ||
using Aliyun.Acs.Core.Utils; | ||
using Aliyun.Acs.PaiFeatureStore; | ||
using Aliyun.Acs.PaiFeatureStore.Transform; | ||
using Aliyun.Acs.PaiFeatureStore.Transform.V20230621; | ||
|
||
namespace Aliyun.Acs.PaiFeatureStore.Model.V20230621 | ||
{ | ||
public class CheckInstanceDatasourceRequest : RoaAcsRequest<CheckInstanceDatasourceResponse> | ||
{ | ||
public CheckInstanceDatasourceRequest() | ||
: base("PaiFeatureStore", "2023-06-21", "CheckInstanceDatasource") | ||
{ | ||
UriPattern = "/api/v1/instances/[InstanceId]/action/checkdatasource"; | ||
Method = MethodType.POST; | ||
} | ||
|
||
private string body; | ||
|
||
private string instanceId; | ||
|
||
public string Body | ||
{ | ||
get | ||
{ | ||
return body; | ||
} | ||
set | ||
{ | ||
body = value; | ||
DictionaryUtil.Add(BodyParameters, "body", value); | ||
} | ||
} | ||
|
||
public string InstanceId | ||
{ | ||
get | ||
{ | ||
return instanceId; | ||
} | ||
set | ||
{ | ||
instanceId = value; | ||
DictionaryUtil.Add(PathParameters, "InstanceId", value); | ||
} | ||
} | ||
|
||
public override bool CheckShowJsonItemName() | ||
{ | ||
return false; | ||
} | ||
|
||
public override CheckInstanceDatasourceResponse GetResponse(UnmarshallerContext unmarshallerContext) | ||
{ | ||
return CheckInstanceDatasourceResponseUnmarshaller.Unmarshall(unmarshallerContext); | ||
} | ||
} | ||
} |
56 changes: 56 additions & 0 deletions
56
...et-sdk-paifeaturestore/PaiFeatureStore/Model/V20230621/CheckInstanceDatasourceResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
using System.Collections.Generic; | ||
using Newtonsoft.Json; | ||
using Aliyun.Acs.Core; | ||
|
||
namespace Aliyun.Acs.PaiFeatureStore.Model.V20230621 | ||
{ | ||
public class CheckInstanceDatasourceResponse : AcsResponse | ||
{ | ||
|
||
private string requestId; | ||
|
||
private string status; | ||
|
||
public string RequestId | ||
{ | ||
get | ||
{ | ||
return requestId; | ||
} | ||
set | ||
{ | ||
requestId = value; | ||
} | ||
} | ||
|
||
public string Status | ||
{ | ||
get | ||
{ | ||
return status; | ||
} | ||
set | ||
{ | ||
status = value; | ||
} | ||
} | ||
} | ||
} |
80 changes: 80 additions & 0 deletions
80
aliyun-net-sdk-paifeaturestore/PaiFeatureStore/Model/V20230621/CreateDatasourceRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
using System.Collections.Generic; | ||
|
||
using Aliyun.Acs.Core; | ||
using Aliyun.Acs.Core.Http; | ||
using Aliyun.Acs.Core.Transform; | ||
using Aliyun.Acs.Core.Utils; | ||
using Aliyun.Acs.PaiFeatureStore; | ||
using Aliyun.Acs.PaiFeatureStore.Transform; | ||
using Aliyun.Acs.PaiFeatureStore.Transform.V20230621; | ||
|
||
namespace Aliyun.Acs.PaiFeatureStore.Model.V20230621 | ||
{ | ||
public class CreateDatasourceRequest : RoaAcsRequest<CreateDatasourceResponse> | ||
{ | ||
public CreateDatasourceRequest() | ||
: base("PaiFeatureStore", "2023-06-21", "CreateDatasource") | ||
{ | ||
UriPattern = "/api/v1/instances/[InstanceId]/datasources"; | ||
Method = MethodType.POST; | ||
} | ||
|
||
private string body; | ||
|
||
private string instanceId; | ||
|
||
public string Body | ||
{ | ||
get | ||
{ | ||
return body; | ||
} | ||
set | ||
{ | ||
body = value; | ||
DictionaryUtil.Add(BodyParameters, "body", value); | ||
} | ||
} | ||
|
||
public string InstanceId | ||
{ | ||
get | ||
{ | ||
return instanceId; | ||
} | ||
set | ||
{ | ||
instanceId = value; | ||
DictionaryUtil.Add(PathParameters, "InstanceId", value); | ||
} | ||
} | ||
|
||
public override bool CheckShowJsonItemName() | ||
{ | ||
return false; | ||
} | ||
|
||
public override CreateDatasourceResponse GetResponse(UnmarshallerContext unmarshallerContext) | ||
{ | ||
return CreateDatasourceResponseUnmarshaller.Unmarshall(unmarshallerContext); | ||
} | ||
} | ||
} |
56 changes: 56 additions & 0 deletions
56
aliyun-net-sdk-paifeaturestore/PaiFeatureStore/Model/V20230621/CreateDatasourceResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
using System.Collections.Generic; | ||
using Newtonsoft.Json; | ||
using Aliyun.Acs.Core; | ||
|
||
namespace Aliyun.Acs.PaiFeatureStore.Model.V20230621 | ||
{ | ||
public class CreateDatasourceResponse : AcsResponse | ||
{ | ||
|
||
private string requestId; | ||
|
||
private string datasourceId; | ||
|
||
public string RequestId | ||
{ | ||
get | ||
{ | ||
return requestId; | ||
} | ||
set | ||
{ | ||
requestId = value; | ||
} | ||
} | ||
|
||
public string DatasourceId | ||
{ | ||
get | ||
{ | ||
return datasourceId; | ||
} | ||
set | ||
{ | ||
datasourceId = value; | ||
} | ||
} | ||
} | ||
} |
80 changes: 80 additions & 0 deletions
80
aliyun-net-sdk-paifeaturestore/PaiFeatureStore/Model/V20230621/CreateFeatureEntityRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
using System.Collections.Generic; | ||
|
||
using Aliyun.Acs.Core; | ||
using Aliyun.Acs.Core.Http; | ||
using Aliyun.Acs.Core.Transform; | ||
using Aliyun.Acs.Core.Utils; | ||
using Aliyun.Acs.PaiFeatureStore; | ||
using Aliyun.Acs.PaiFeatureStore.Transform; | ||
using Aliyun.Acs.PaiFeatureStore.Transform.V20230621; | ||
|
||
namespace Aliyun.Acs.PaiFeatureStore.Model.V20230621 | ||
{ | ||
public class CreateFeatureEntityRequest : RoaAcsRequest<CreateFeatureEntityResponse> | ||
{ | ||
public CreateFeatureEntityRequest() | ||
: base("PaiFeatureStore", "2023-06-21", "CreateFeatureEntity") | ||
{ | ||
UriPattern = "/api/v1/instances/[InstanceId]/featureentities"; | ||
Method = MethodType.POST; | ||
} | ||
|
||
private string body; | ||
|
||
private string instanceId; | ||
|
||
public string Body | ||
{ | ||
get | ||
{ | ||
return body; | ||
} | ||
set | ||
{ | ||
body = value; | ||
DictionaryUtil.Add(BodyParameters, "body", value); | ||
} | ||
} | ||
|
||
public string InstanceId | ||
{ | ||
get | ||
{ | ||
return instanceId; | ||
} | ||
set | ||
{ | ||
instanceId = value; | ||
DictionaryUtil.Add(PathParameters, "InstanceId", value); | ||
} | ||
} | ||
|
||
public override bool CheckShowJsonItemName() | ||
{ | ||
return false; | ||
} | ||
|
||
public override CreateFeatureEntityResponse GetResponse(UnmarshallerContext unmarshallerContext) | ||
{ | ||
return CreateFeatureEntityResponseUnmarshaller.Unmarshall(unmarshallerContext); | ||
} | ||
} | ||
} |
Oops, something went wrong.