You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* 16.x -- currently incompatible due to lack of support from aio-cli.
28
+
* 16.x -- 16.0.0 or higher.
31
29
* Use with odd Node versions is *not* recommended.
32
30
33
31
> Although not recommended for general use, it is possible to use this plugin outside of the Adobe I/O CLI. See [Standalone Use](#standalone-use) below.
@@ -1043,19 +1041,43 @@ ARGUMENTS
1043
1041
PIPELINEID the pipeline id
1044
1042
1045
1043
OPTIONS
1046
-
-d, --delete=delete variables/secrets to delete
1047
-
-j, --json output in json format
1048
-
-p, --programId=programId the programId. if not specified, defaults to 'cloudmanager_programid' config value
1049
-
-s, --secret=secret secret values in KEY VALUE format
1050
-
-v, --variable=variable variable values in KEY VALUE format
1051
-
-y, --yaml output in yaml format
1052
-
--imsContextName=imsContextName the alternate IMS context name to use instead of aio-cli-plugin-cloudmanager
1044
+
-d, --delete=delete variables/secrets to delete
1045
+
-j, --json output in json format
1046
+
-p, --programId=programId the programId. if not specified, defaults to 'cloudmanager_programid' config value
1047
+
-s, --secret=secret secret values in KEY VALUE format
1048
+
-v, --variable=variable variable values in KEY VALUE format
1049
+
-y, --yaml output in yaml format
1050
+
--imsContextName=imsContextName the alternate IMS context name to use instead of aio-cli-plugin-cloudmanager
1053
1051
1054
-
--jsonFile=jsonFile if set, read variables from a JSON array provided as a file; variables set through
1055
-
--variable or --secret flag will take precedence
1052
+
--jsonFile=jsonFile if set, read variables from a JSON array provided as a file; variables set through
1053
+
--variable or --secret flag will take precedence
1056
1054
1057
-
--jsonStdin if set, read variables from a JSON array provided as standard input; variables set
1058
-
through --variable or --secret flag will take precedence
1055
+
--jsonStdin if set, read variables from a JSON array provided as standard input; variables set
1056
+
through --variable or --secret flag will take precedence
1057
+
1058
+
--buildDelete=buildDelete variables/secrets to delete for build service
1059
+
1060
+
--buildSecret=buildSecret secret values in KEY VALUE format for build service
1061
+
1062
+
--buildVariable=buildVariable variable values in KEY VALUE format for build service
1063
+
1064
+
--functionalTestDelete=functionalTestDelete variables/secrets to delete for functionalTest service
1065
+
1066
+
--functionalTestSecret=functionalTestSecret secret values in KEY VALUE format for functionalTest service
1067
+
1068
+
--functionalTestVariable=functionalTestVariable variable values in KEY VALUE format for functionalTest service
1069
+
1070
+
--uiTestDelete=uiTestDelete variables/secrets to delete for uiTest service
1071
+
1072
+
--uiTestSecret=uiTestSecret secret values in KEY VALUE format for uiTest service
1073
+
1074
+
--uiTestVariable=uiTestVariable variable values in KEY VALUE format for uiTest service
1075
+
1076
+
--loadTestDelete=loadTestDelete variables/secrets to delete for loadTest service
1077
+
1078
+
--loadTestSecret=loadTestSecret secret values in KEY VALUE format for loadTest service
1079
+
1080
+
--loadTestVariable=loadTestVariable variable values in KEY VALUE format for loadTest service
1059
1081
1060
1082
--yamlFile=yamlFile if set, read variables from a YAML array provided as a file; variables set through
description: 'if set, read variables from a JSON array provided as standard input; variables set through --variable or --secret flag will take precedence',
175
-
exclusive: ['jsonFile','yamlStdin','yamlFile'],
176
-
}),
177
-
jsonFile: flags.string({
178
-
description: 'if set, read variables from a JSON array provided as a file; variables set through --variable or --secret flag will take precedence',
179
-
exclusive: ['jsonStdin','yamlStdin','yamlFile'],
180
-
}),
181
-
yamlStdin: flags.boolean({
182
-
default: false,
183
-
description: 'if set, read variables from a YAML array provided as standard input; variables set through --variable or --secret flag will take precedence',
184
-
exclusive: ['jsonStdin','jsonFile','yamlFile'],
185
-
}),
186
-
yamlFile: flags.string({
187
-
description: 'if set, read variables from a YAML array provided as a file; variables set through --variable or --secret flag will take precedence',
188
-
exclusive: ['jsonStdin','jsonFile','yamlStdin'],
189
-
}),
190
-
...commonFlags.outputFormat,
185
+
BaseVariablesCommand.setterFlags=(services)=>{
186
+
return{
187
+
...BaseVariablesCommand.coreSetterFlags,
188
+
jsonStdin: flags.boolean({
189
+
default: false,
190
+
description: 'if set, read variables from a JSON array provided as standard input; variables set through --variable or --secret flag will take precedence',
191
+
exclusive: ['jsonFile','yamlStdin','yamlFile'],
192
+
}),
193
+
jsonFile: flags.string({
194
+
description: 'if set, read variables from a JSON array provided as a file; variables set through --variable or --secret flag will take precedence',
195
+
exclusive: ['jsonStdin','yamlStdin','yamlFile'],
196
+
}),
197
+
yamlStdin: flags.boolean({
198
+
default: false,
199
+
description: 'if set, read variables from a YAML array provided as standard input; variables set through --variable or --secret flag will take precedence',
200
+
exclusive: ['jsonStdin','jsonFile','yamlFile'],
201
+
}),
202
+
yamlFile: flags.string({
203
+
description: 'if set, read variables from a YAML array provided as a file; variables set through --variable or --secret flag will take precedence',
strict: flags.boolean({description: 'performs strict validation of internal variables. Can also be enabled by setting configuration property cloudmanager.environmentVariables.strictValidation to a truthy value.'}),
0 commit comments