-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a14c43c
commit ca5a29e
Showing
57 changed files
with
2,680 additions
and
553 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# BackupProperties | ||
|
||
Backup related properties. | ||
|
||
|
||
## Properties | ||
|
||
|Name | Type | Description | Notes| | ||
|------------ | ------------- | ------------- | -------------| | ||
|**Location** | Pointer to **string** | The location where the cluster backups will be stored. If not set, the backup is stored in the nearest location of the cluster. | [optional] | | ||
|
||
## Methods | ||
|
||
|
||
### GetLocation | ||
|
||
`func (o *BackupProperties) GetLocation() string` | ||
|
||
GetLocation returns the Location field if non-nil, zero value otherwise. | ||
|
||
### GetLocationOk | ||
|
||
`func (o *BackupProperties) GetLocationOk() (*string, bool)` | ||
|
||
GetLocationOk returns a tuple with the Location field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetLocation | ||
|
||
`func (o *BackupProperties) SetLocation(v string)` | ||
|
||
SetLocation sets Location field to given value. | ||
|
||
### HasLocation | ||
|
||
`func (o *BackupProperties) HasLocation() bool` | ||
|
||
HasLocation returns a boolean if a field has been set. | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
# BiConnectorProperties | ||
|
||
|
||
|
||
## Properties | ||
|
||
|Name | Type | Description | Notes| | ||
|------------ | ------------- | ------------- | -------------| | ||
|**Enabled** | Pointer to **bool** | The MongoDB Connector for Business Intelligence allows you to query a MongoDB database using SQL commands to aid in data analysis. | [optional] [default to false]| | ||
|**Host** | Pointer to **string** | The host where this new BI Connector is installed. | [optional] [readonly] | | ||
|**Port** | Pointer to **string** | Port number used when connecting to this new BI Connector. | [optional] [readonly] | | ||
|
||
## Methods | ||
|
||
|
||
### GetEnabled | ||
|
||
`func (o *BiConnectorProperties) GetEnabled() bool` | ||
|
||
GetEnabled returns the Enabled field if non-nil, zero value otherwise. | ||
|
||
### GetEnabledOk | ||
|
||
`func (o *BiConnectorProperties) GetEnabledOk() (*bool, bool)` | ||
|
||
GetEnabledOk returns a tuple with the Enabled field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetEnabled | ||
|
||
`func (o *BiConnectorProperties) SetEnabled(v bool)` | ||
|
||
SetEnabled sets Enabled field to given value. | ||
|
||
### HasEnabled | ||
|
||
`func (o *BiConnectorProperties) HasEnabled() bool` | ||
|
||
HasEnabled returns a boolean if a field has been set. | ||
|
||
### GetHost | ||
|
||
`func (o *BiConnectorProperties) GetHost() string` | ||
|
||
GetHost returns the Host field if non-nil, zero value otherwise. | ||
|
||
### GetHostOk | ||
|
||
`func (o *BiConnectorProperties) GetHostOk() (*string, bool)` | ||
|
||
GetHostOk returns a tuple with the Host field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetHost | ||
|
||
`func (o *BiConnectorProperties) SetHost(v string)` | ||
|
||
SetHost sets Host field to given value. | ||
|
||
### HasHost | ||
|
||
`func (o *BiConnectorProperties) HasHost() bool` | ||
|
||
HasHost returns a boolean if a field has been set. | ||
|
||
### GetPort | ||
|
||
`func (o *BiConnectorProperties) GetPort() string` | ||
|
||
GetPort returns the Port field if non-nil, zero value otherwise. | ||
|
||
### GetPortOk | ||
|
||
`func (o *BiConnectorProperties) GetPortOk() (*string, bool)` | ||
|
||
GetPortOk returns a tuple with the Port field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetPort | ||
|
||
`func (o *BiConnectorProperties) SetPort(v string)` | ||
|
||
SetPort sets Port field to given value. | ||
|
||
### HasPort | ||
|
||
`func (o *BiConnectorProperties) HasPort() bool` | ||
|
||
HasPort returns a boolean if a field has been set. | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.