瀏覽代碼

modify dms

wenzuochao 5 年之前
父節點
當前提交
5ed0ab24b3
共有 3 個文件被更改,包括 33 次插入4 次删除
  1. 2 2
      docs/3-Verify-CN.md
  2. 2 2
      docs/3-Verify-EN.md
  3. 29 0
      services/dms_enterprise/struct_workflow_node_.go

+ 2 - 2
docs/3-Verify-CN.md

@@ -5,8 +5,8 @@
 
 ## 摘要
 请求时验证SSL证书行为。
-- 设置成 `false` 禁用证书验证,(这是不安全的,请设置证书!)。
-- 设置成 `true` 启用SSL证书验证,默认使用操作系统提供的CA包。
+- 设置成 `true` 禁用证书验证,(这是不安全的,请设置证书!)。
+- 设置成 `false` 启用SSL证书验证,默认使用操作系统提供的CA包。
 
 ## 默认值
 - `false` 

+ 2 - 2
docs/3-Verify-EN.md

@@ -5,8 +5,8 @@
 
 ## Summary
 Describes the SSL certificate verification behavior of a request.
-- Set `false` to disable certificate validation, (This is not safe, please set certificates! )
-- Set to `true` to enable SSL certificate verification and use the default CA bundle provided by operating system.
+- Set `true` to disable certificate validation, (This is not safe, please set certificates! )
+- Set to `false` to enable SSL certificate verification and use the default CA bundle provided by operating system.
 
 ## Default
 - `false` 

+ 29 - 0
services/dms_enterprise/struct_workflow_node_.go

@@ -0,0 +1,29 @@
+package dms_enterprise
+
+//Licensed 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.
+//
+// Code generated by Alibaba Cloud SDK Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is regenerated.
+
+// WorkFlowNode is a nested struct in dms_enterprise response
+type WorkFlowNode struct {
+	TemplateId         int64      `json:"TemplateId" xml:"TemplateId"`
+	CreateUserId       int64      `json:"CreateUserId" xml:"CreateUserId"`
+	CreateUserNickName string     `json:"CreateUserNickName" xml:"CreateUserNickName"`
+	Comment            string     `json:"Comment" xml:"Comment"`
+	NodeName           string     `json:"NodeName" xml:"NodeName"`
+	NodeId             int64      `json:"NodeId" xml:"NodeId"`
+	Position           int        `json:"Position" xml:"Position"`
+	NodeType           string     `json:"NodeType" xml:"NodeType"`
+	AuditUsers         AuditUsers `json:"AuditUsers" xml:"AuditUsers"`
+}