當前位置: 首頁>>代碼示例>>Golang>>正文


Golang util.GetFuncName函數代碼示例

本文整理匯總了Golang中github.com/jiangshengwu/aliyun-sdk-for-go/util.GetFuncName函數的典型用法代碼示例。如果您正苦於以下問題:Golang GetFuncName函數的具體用法?Golang GetFuncName怎麽用?Golang GetFuncName使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了GetFuncName函數的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: CreateVSwitch

func (op *VSwitchOperator) CreateVSwitch(params map[string]interface{}) (CreateVSwitchResponse, error) {
	var resp CreateVSwitchResponse
	err := op.Common.Request(util.GetFuncName(1), params, &resp)
	return resp, err
}
開發者ID:jiangxukai,項目名稱:aliyun-sdk-for-go,代碼行數:5,代碼來源:vswitch.go

示例2: DescribeVRouters

func (op *VRouterOperator) DescribeVRouters(params map[string]interface{}) (DescribeVRoutersResponse, error) {
	var resp DescribeVRoutersResponse
	err := op.Common.Request(util.GetFuncName(1), params, &resp)
	return resp, err
}
開發者ID:jiangxukai,項目名稱:aliyun-sdk-for-go,代碼行數:5,代碼來源:vrouter.go

示例3: CancelCopyImage

func (op *ImageOperator) CancelCopyImage(params map[string]interface{}) (CancelCopyImageResponse, error) {
	var resp CancelCopyImageResponse
	err := op.Common.Request(util.GetFuncName(1), params, &resp)
	return resp, err
}
開發者ID:jiangxukai,項目名稱:aliyun-sdk-for-go,代碼行數:5,代碼來源:image.go

示例4: ModifyInstanceVncPasswd

func (op *InstanceOperator) ModifyInstanceVncPasswd(params map[string]interface{}) (ModifyInstanceVncPasswdResponse, error) {
	var resp ModifyInstanceVncPasswdResponse
	err := op.Common.Request(util.GetFuncName(1), params, &resp)
	return resp, err
}
開發者ID:jiangxukai,項目名稱:aliyun-sdk-for-go,代碼行數:5,代碼來源:instance.go

示例5: AssociateEipAddress

func (op *NetworkOperator) AssociateEipAddress(params map[string]interface{}) (AssociateEipAddressResponse, error) {
	var resp AssociateEipAddressResponse
	err := op.Common.Request(util.GetFuncName(1), params, &resp)
	return resp, err
}
開發者ID:jiangxukai,項目名稱:aliyun-sdk-for-go,代碼行數:5,代碼來源:network.go

示例6: ModifyAutoSnapshotPolicy

func (op *SnapshotOperator) ModifyAutoSnapshotPolicy(params map[string]interface{}) (ModifyAutoSnapshotPolicyResponse, error) {
	var resp ModifyAutoSnapshotPolicyResponse
	err := op.Common.Request(util.GetFuncName(1), params, &resp)
	return resp, err
}
開發者ID:jiangxukai,項目名稱:aliyun-sdk-for-go,代碼行數:5,代碼來源:snapshot.go

示例7: LeaveSecurityGroup

func (op *InstanceOperator) LeaveSecurityGroup(params map[string]interface{}) (LeaveSecurityGroupResponse, error) {
	var resp LeaveSecurityGroupResponse
	err := op.Common.Request(util.GetFuncName(1), params, &resp)
	return resp, err
}
開發者ID:jiangxukai,項目名稱:aliyun-sdk-for-go,代碼行數:5,代碼來源:instance.go

示例8: SetListenerAccessControlStatus

func (op *ListenerOperator) SetListenerAccessControlStatus(params map[string]interface{}) (SetListenerAccessControlStatusResponse, error) {
	var resp SetListenerAccessControlStatusResponse
	err := op.Common.Request(util.GetFuncName(1), params, &resp)
	return resp, err
}
開發者ID:jiangxukai,項目名稱:aliyun-sdk-for-go,代碼行數:5,代碼來源:listener.go

示例9: RemoveListenerWhiteListItem

func (op *ListenerOperator) RemoveListenerWhiteListItem(params map[string]interface{}) (RemoveListenerWhiteListItemResponse, error) {
	var resp RemoveListenerWhiteListItemResponse
	err := op.Common.Request(util.GetFuncName(1), params, &resp)
	return resp, err
}
開發者ID:jiangxukai,項目名稱:aliyun-sdk-for-go,代碼行數:5,代碼來源:listener.go

示例10: RevokeSecurityGroupEgress

func (op *SecurityGroupOperator) RevokeSecurityGroupEgress(params map[string]interface{}) (RevokeSecurityGroupEgressResponse, error) {
	var resp RevokeSecurityGroupEgressResponse
	err := op.Common.Request(util.GetFuncName(1), params, &resp)
	return resp, err
}
開發者ID:jiangxukai,項目名稱:aliyun-sdk-for-go,代碼行數:5,代碼來源:group.go

示例11: StopLoadBalancerListener

func (op *ListenerOperator) StopLoadBalancerListener(params map[string]interface{}) (StopLoadBalancerListenerResponse, error) {
	var resp StopLoadBalancerListenerResponse
	err := op.Common.Request(util.GetFuncName(1), params, &resp)
	return resp, err
}
開發者ID:jiangxukai,項目名稱:aliyun-sdk-for-go,代碼行數:5,代碼來源:listener.go

示例12: DescribeSecurityGroupAttribute

func (op *SecurityGroupOperator) DescribeSecurityGroupAttribute(params map[string]interface{}) (DescribeSecurityGroupAttributeResponse, error) {
	var resp DescribeSecurityGroupAttributeResponse
	err := op.Common.Request(util.GetFuncName(1), params, &resp)
	return resp, err
}
開發者ID:jiangxukai,項目名稱:aliyun-sdk-for-go,代碼行數:5,代碼來源:group.go

示例13: AuthorizeSecurityGroup

func (op *SecurityGroupOperator) AuthorizeSecurityGroup(params map[string]interface{}) (AuthorizeSecurityGroupResponse, error) {
	var resp AuthorizeSecurityGroupResponse
	err := op.Common.Request(util.GetFuncName(1), params, &resp)
	return resp, err
}
開發者ID:jiangxukai,項目名稱:aliyun-sdk-for-go,代碼行數:5,代碼來源:group.go

示例14: DescribeImageSharePermission

func (op *ImageOperator) DescribeImageSharePermission(params map[string]interface{}) (DescribeImageSharePermissionResponse, error) {
	var resp DescribeImageSharePermissionResponse
	err := op.Common.Request(util.GetFuncName(1), params, &resp)
	return resp, err
}
開發者ID:jiangxukai,項目名稱:aliyun-sdk-for-go,代碼行數:5,代碼來源:image.go

示例15: DescribeDiskMonitorData

func (op *MonitorOperator) DescribeDiskMonitorData(params map[string]interface{}) (DescribeDiskMonitorDataResponse, error) {
	var resp DescribeDiskMonitorDataResponse
	err := op.Common.Request(util.GetFuncName(1), params, &resp)
	return resp, err
}
開發者ID:jiangxukai,項目名稱:aliyun-sdk-for-go,代碼行數:5,代碼來源:monitor.go


注:本文中的github.com/jiangshengwu/aliyun-sdk-for-go/util.GetFuncName函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。