@@ -7,6 +7,141 @@ SYNOPSIS
7
7
Adds an Asset into Orchestrator
8
8
9
9
10
+ SYNTAX
11
+ Add-UiPathAsset [-Name] <string> -TextValue <string> [-AuthToken <AuthToken>] [<CommonParameters>]
12
+
13
+ Add-UiPathAsset [-Name] <string> -IntValue <int> [-AuthToken <AuthToken>] [<CommonParameters>]
14
+
15
+ Add-UiPathAsset [-Name] <string> -DBConnectionString <string> [-AuthToken <AuthToken>] [<CommonParameters>]
16
+
17
+ Add-UiPathAsset [-Name] <string> -HttpConnectionString <string> [-AuthToken <AuthToken>] [<CommonParameters>]
18
+
19
+ Add-UiPathAsset [-Name] <string> -BoolValue <bool> [-AuthToken <AuthToken>] [<CommonParameters>]
20
+
21
+ Add-UiPathAsset [-Name] <string> -KeyValueList <Hashtable> [-AuthToken <AuthToken>] [<CommonParameters>]
22
+
23
+ Add-UiPathAsset [-Name] <string> -WindowsCredential <PSCredential> [-AuthToken <AuthToken>] [<CommonParameters>]
24
+
25
+ Add-UiPathAsset [-Name] <string> -Credential <PSCredential> [-AuthToken <AuthToken>] [<CommonParameters>]
26
+
27
+ Add-UiPathAsset [-Name] <string> -RobotValues <Hashtable> -ValueType <string> [-AuthToken <AuthToken>]
28
+ [<CommonParameters>]
29
+
30
+
31
+ DESCRIPTION
32
+ This cmdlet can add global asset value or per-robot asset values.
33
+
34
+
35
+ PARAMETERS
36
+ -Name <string>
37
+ The asset name.
38
+
39
+ Required? true
40
+ Position? 0
41
+ Default value
42
+ Accept pipeline input? false
43
+ Accept wildcard characters? false
44
+
45
+ -TextValue <string>
46
+
47
+ Required? true
48
+ Position? named
49
+ Default value
50
+ Accept pipeline input? false
51
+ Accept wildcard characters? false
52
+
53
+ -IntValue <int>
54
+
55
+ Required? true
56
+ Position? named
57
+ Default value
58
+ Accept pipeline input? false
59
+ Accept wildcard characters? false
60
+
61
+ -DBConnectionString <string>
62
+
63
+ Required? true
64
+ Position? named
65
+ Default value
66
+ Accept pipeline input? false
67
+ Accept wildcard characters? false
68
+
69
+ -HttpConnectionString <string>
70
+
71
+ Required? true
72
+ Position? named
73
+ Default value
74
+ Accept pipeline input? false
75
+ Accept wildcard characters? false
76
+
77
+ -BoolValue <bool>
78
+
79
+ Required? true
80
+ Position? named
81
+ Default value
82
+ Accept pipeline input? false
83
+ Accept wildcard characters? false
84
+
85
+ -KeyValueList <Hashtable>
86
+
87
+ Required? true
88
+ Position? named
89
+ Default value
90
+ Accept pipeline input? false
91
+ Accept wildcard characters? false
92
+
93
+ -WindowsCredential <PSCredential>
94
+
95
+ Required? true
96
+ Position? named
97
+ Default value
98
+ Accept pipeline input? false
99
+ Accept wildcard characters? false
100
+
101
+ -Credential <PSCredential>
102
+
103
+ Required? true
104
+ Position? named
105
+ Default value
106
+ Accept pipeline input? false
107
+ Accept wildcard characters? false
108
+
109
+ -ValueType <string>
110
+
111
+ Required? true
112
+ Position? named
113
+ Default value
114
+ Accept pipeline input? false
115
+ Accept wildcard characters? false
116
+
117
+ -RobotValues <Hashtable>
118
+
119
+ Required? true
120
+ Position? named
121
+ Default value
122
+ Accept pipeline input? false
123
+ Accept wildcard characters? false
124
+
125
+ -AuthToken <AuthToken>
126
+
127
+ Required? false
128
+ Position? named
129
+ Default value
130
+ Accept pipeline input? false
131
+ Accept wildcard characters? false
132
+
133
+ <CommonParameters>
134
+ This cmdlet supports the common parameters: Verbose, Debug,
135
+ ErrorAction, ErrorVariable, WarningAction, WarningVariable,
136
+ OutBuffer, PipelineVariable, and OutVariable. For more information, see
137
+ about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).
138
+
139
+ INPUTS
140
+
141
+ OUTPUTS
142
+
143
+
144
+ RELATED LINKS
10
145
11
146
12
147
0 commit comments