Skip to content

[OSS gateway Util]Init parseXml method #50

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
79 changes: 79 additions & 0 deletions alibabacloud-gateway-oss/util/Teafile
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
{
"scope": "alibabacloud",
"name": "GatewayOSS_Util",
"version": "0.0.1",
"main": "./main.tea",
"maintainers": [
{
"name": "Alibaba Cloud SDK",
"email": "[email protected]"
}
],
"libraries": {
"Credential": "alibabacloud:Credential:*"
},
"releases": {
"go": "github.com/alibabacloud-go/alibabacloud-gateway-oss-util/client:v0.0.1",
"java": "com.aliyun:alibabacloud-gateway-oss-util:0.0.1"
},
"csharp": {
"namespace": "AlibabaCloud.GatewayOss_Util",
"packageInfo": {
"description": "Alibaba Cloud OSS Util Library for .NET",
"company": "Alibaba Cloud",
"property": {
"PackageTags": "Alibaba Aliyun OSS Util",
"Copyright": "©2009-present Alibaba Cloud",
"PackageProjectUrl": "https://github.com/aliyun/alibabacloud-gateway",
"PackageIconUrl": "https://www.alibabacloud.com/favicon.ico"
}
}
},
"java": {
"package": "com.aliyun.gateway.oss.util",
"className": "Client"
},
"go": {
"package": [
"io"
]
},
"php": {
"package": "Darabonba.GatewayOss.Util",
"packageInfo": {
"name": "alibabacloud/gateway-oss-util",
"desc": "Alibaba Cloud OSS Util",
"github": "https://github.com/aliyun/alibabacloud-gateway"
}
},
"python": {
"package": "alibabacloud_gateway_oss_util",
"clientName": "client",
"packageInfo": {
"name": "alibabacloud_gateway_oss_util",
"desc": "Alibaba Cloud OSS Util Library for Python",
"github": "https://github.com/aliyun/alibabacloud-gateway",
"author": "Alibaba Cloud SDK",
"email": "[email protected]"
}
},
"python2": {
"package": "alibabacloud_gateway_oss_util",
"clientName": "client",
"packageInfo": {
"name": "alibabacloud_gateway_oss_util_py2",
"desc": "Alibaba Cloud OSS Util Library for Python2",
"github": "https://github.com/aliyun/alibabacloud-gateway",
"author": "Alibaba Cloud SDK",
"email": "[email protected]"
}
},
"cpp": {
"packageInfo": {
"git": {
"scope": "alibabacloud-sdk-cpp",
"project": "gateway-oss-util"
}
}
}
}
17 changes: 17 additions & 0 deletions alibabacloud-gateway-oss/util/golang/client/client.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// This file is auto-generated, don't edit it. Thanks.
/**
*
* @param stream the readable stream
* @return the parsed result
*/
package client

import (
"github.com/alibabacloud-go/tea/tea"
)


func ParseXml (input *string, field *string) (_result interface{}, _err error) {
panic("No Support!")
}

Loading