Skip to content

Commit

Permalink
added docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Steffen committed Sep 6, 2023
1 parent 8208aec commit c2cc455
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions docs/Connect-SmoInstance.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,23 @@ schema: 2.0.0
### Properties_IntegratedSecurity (Default)
```
Connect-SmoInstance [-DataSource] <String> [[-InitialCatalog] <String>] [-AccessToken <String>]
[<CommonParameters>]
[-StatementTimeout <Int32>] [<CommonParameters>]
```

### SqlClient
```
Connect-SmoInstance -Connection <SqlConnection> [<CommonParameters>]
Connect-SmoInstance -Connection <SqlConnection> [-StatementTimeout <Int32>] [<CommonParameters>]
```

### ConnectionString
```
Connect-SmoInstance [-ConnectionString] <String> [<CommonParameters>]
Connect-SmoInstance [-ConnectionString] <String> [-StatementTimeout <Int32>] [<CommonParameters>]
```

### Properties_Credential
```
Connect-SmoInstance [-DataSource] <String> [[-InitialCatalog] <String>] [-UserId] <String>
[-Password] <SecureString> [<CommonParameters>]
[-Password] <SecureString> [-StatementTimeout <Int32>] [<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -153,6 +153,21 @@ Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False
```
### -StatementTimeout
This is the number of seconds that a statement is attempted to be sent to the server before it fails.
```yaml
Type: Int32
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
Expand Down

0 comments on commit c2cc455

Please sign in to comment.