Skip to content

Commit b516424

Browse files
committed
fix comments
1 parent 88a79c3 commit b516424

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/integration-services/devops/ssis-devops-overview.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ The configuration JSON schema has three layers:
291291
|Property |Description |Notes |
292292
|---------|---------|---------|
293293
|name |Name of the catalog folder.|Folder will be created if not exists.|
294-
|description|Description of the catalog folder.|The value of *null* will be ignored.|
294+
|description|Description of the catalog folder.|The value of *null* is invalid, the task will give a warning and skip this property.|
295295
|projects|An array of project objects. Each object contains configuration information for a project.|See *Project Attributes* for the schema of a project object.|
296296
|environments|An array of environment objects. Each object contains configuration information for an environment.|See *Environment Attributes* for the schema of an environment object.|
297297

@@ -309,7 +309,7 @@ The configuration JSON schema has three layers:
309309
|---------|---------|---------|
310310
|name|Name of the parameter.|The parameter can be *project parameter* or *package parameter*. <br> The parameter will be skipped if it does not exist in the parent project.|
311311
|container|Container of the parameter.|If the parameter is a project parameter, the *container* should be the project name. <br>If it's a package parameter, the *container* should be the package name with **.dtsx** extension. <br> If the parameter is a connection manager property, the name should be in such format: **CM.\<Connection Manager Name>.\<Property Name>**.|
312-
|value|Value of the parameter.|When *valueType* is *referenced*: The value is a reference to an environment variable in *string* type. <br> When **valueType** is **literal**: This attribute supports any valid *boolean*, *number*, and *string* JSON values. <br> The value will be converted to the target parameter type. Error will occur if it cannot be converted.|
312+
|value|Value of the parameter.|When *valueType* is *referenced*: The value is a reference to an environment variable in *string* type. <br> When *valueType* is *literal*: This attribute supports any valid *boolean*, *number*, and *string* JSON values. <br> The value will be converted to the target parameter type. Error will occur if it cannot be converted.|
313313
|valueType|Type of the parameter value.|Valid types are: <br> *literal*: The *value* attribute represents a literal value. <br> *referenced*: The *value* attribute represents a reference to an environment variable.|
314314

315315
##### Reference Attributes
@@ -324,7 +324,7 @@ The configuration JSON schema has three layers:
324324
|Property |Description |Notes |
325325
|---------|---------|---------|
326326
|name|Name of the environment.|Environment will be created if not exists.|
327-
|description|Description of the environment.|The value of *null* will be ignored.|
327+
|description|Description of the environment.|The value of *null* is invalid, the task will give a warning and skip this property.|
328328
|variables|An array of variable objects.|Each object contains configuration information for an environment variable.see *Variable Attributes* for the schema of a variable object.|
329329

330330
##### Variable Attributes
@@ -333,7 +333,7 @@ The configuration JSON schema has three layers:
333333
|---------|---------|---------|
334334
|name|Name of the environment variable.|Environment variable will be created if not exists.|
335335
|type|Data type of the environment variable.|Valid types are: <br> *boolean* <br> *byte* <br> *datetime* <br> decimal <br> *double* <br> *int16* <br> *int32* <br> *int64* <br> *sbyte* <br> *single* <br> *string* <br> *uint32* <br> *uint64*|
336-
|description|Description of the environment variable.|The value of *null* will be ignored.|
336+
|description|Description of the environment variable.|The value of *null* is invalid, the task will give a warning and skip this property.|
337337
|value|Value of the environment variable.|This attribute supports any valid boolean, number, and string JSON values.<br> The value will be converted to the type specified by **type** attribute. Error will occur if conversion fails.|
338338
|sensitive|Whether the value of the environment variable is sensitive.|Valid inputs are: <br> *true* <br> *false*|
339339

0 commit comments

Comments
 (0)