Skip to content

Commit

Permalink
Add LabelPriorityLevel in UpdateModelFeature API.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Dec 2, 2024
1 parent 4d0aa65 commit 19e1d9e
Show file tree
Hide file tree
Showing 155 changed files with 13,999 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-12-02 Version: 1.0.0
- Add LabelPriorityLevel in UpdateModelFeature API.

2024-11-28 Version: 2.16.28
- SubmitTranscodeJobs Add SessionId.

Expand Down
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);
}
}
}
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;
}
}
}
}
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);
}
}
}
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;
}
}
}
}
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);
}
}
}
Loading

0 comments on commit 19e1d9e

Please sign in to comment.