Skip to content

Commit

Permalink
update documentation (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
mathewab authored May 1, 2024
1 parent 23db084 commit b0791ce
Show file tree
Hide file tree
Showing 69 changed files with 1,164 additions and 1,841 deletions.
2 changes: 1 addition & 1 deletion anycast/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
- API version: v1
- Package version: 1.0.0
- Generator version: 7.5.0
- Build package: org.openapitools.codegen.languages.GoClientCodegen
- Build package: com.infoblox.codegen.BloxoneGoClientCodegen

## Installation

Expand Down
118 changes: 42 additions & 76 deletions anycast/docs/OnPremAnycastManagerAPI.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ func main() {

### Other Parameters

Other parameters are passed through a pointer to a apiCreateAnycastConfigRequest struct via the builder pattern
Other parameters are passed through a pointer to a `OnPremAnycastManagerAPICreateAnycastConfigRequest` struct via the builder pattern


Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**body** | [**AnycastConfig**](AnycastConfig.md) | |
**body** | [**AnycastConfig**](AnycastConfig.md) | |

### Return type

Expand Down Expand Up @@ -135,13 +135,12 @@ Name | Type | Description | Notes

### Other Parameters

Other parameters are passed through a pointer to a apiCreateAnycastVersionRequest struct via the builder pattern
Other parameters are passed through a pointer to a `OnPremAnycastManagerAPICreateAnycastVersionRequest` struct via the builder pattern


Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------


### Return type

**map[string]interface{}**
Expand Down Expand Up @@ -205,13 +204,12 @@ Name | Type | Description | Notes

### Other Parameters

Other parameters are passed through a pointer to a apiDeleteAnycastConfigRequest struct via the builder pattern
Other parameters are passed through a pointer to a `OnPremAnycastManagerAPIDeleteAnycastConfigRequest` struct via the builder pattern


Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------


### Return type

**map[string]interface{}**
Expand Down Expand Up @@ -275,13 +273,12 @@ Name | Type | Description | Notes

### Other Parameters

Other parameters are passed through a pointer to a apiDeleteAnycastVersionRequest struct via the builder pattern
Other parameters are passed through a pointer to a `OnPremAnycastManagerAPIDeleteAnycastVersionRequest` struct via the builder pattern


Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------


### Return type

**map[string]interface{}**
Expand Down Expand Up @@ -345,13 +342,12 @@ Name | Type | Description | Notes

### Other Parameters

Other parameters are passed through a pointer to a apiDeleteOnpremHostRequest struct via the builder pattern
Other parameters are passed through a pointer to a `OnPremAnycastManagerAPIDeleteOnpremHostRequest` struct via the builder pattern


Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------


### Return type

**map[string]interface{}**
Expand Down Expand Up @@ -415,13 +411,12 @@ Name | Type | Description | Notes

### Other Parameters

Other parameters are passed through a pointer to a apiGetAnycastConfigRequest struct via the builder pattern
Other parameters are passed through a pointer to a `OnPremAnycastManagerAPIGetAnycastConfigRequest` struct via the builder pattern


Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------


### Return type

[**AnycastConfigResponse**](AnycastConfigResponse.md)
Expand Down Expand Up @@ -462,16 +457,9 @@ import (
)

func main() {
accountId := int64(789) // int64 | (optional)
service := "service_example" // string | (optional)
hostId := int64(789) // int64 | (optional)
ophid := "ophid_example" // string | (optional)
isConfigured := true // bool | (optional)
tfilter := "tfilter_example" // string | (optional)
torderBy := "torderBy_example" // string | (optional)

apiClient := anycast.NewAPIClient()
resp, r, err := apiClient.OnPremAnycastManagerAPI.GetAnycastConfigList(context.Background()).AccountId(accountId).Service(service).HostId(hostId).Ophid(ophid).IsConfigured(isConfigured).Tfilter(tfilter).TorderBy(torderBy).Execute()
resp, r, err := apiClient.OnPremAnycastManagerAPI.GetAnycastConfigList(context.Background()).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `OnPremAnycastManagerAPI.GetAnycastConfigList``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
Expand All @@ -487,18 +475,18 @@ func main() {

### Other Parameters

Other parameters are passed through a pointer to a apiGetAnycastConfigListRequest struct via the builder pattern
Other parameters are passed through a pointer to a `OnPremAnycastManagerAPIGetAnycastConfigListRequest` struct via the builder pattern


Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**accountId** | **int64** | |
**service** | **string** | |
**hostId** | **int64** | |
**ophid** | **string** | |
**isConfigured** | **bool** | |
**tfilter** | **string** | |
**torderBy** | **string** | |
**accountId** | **int64** | |
**service** | **string** | |
**hostId** | **int64** | |
**ophid** | **string** | |
**isConfigured** | **bool** | |
**tfilter** | **string** | |
**torderBy** | **string** | |

### Return type

Expand Down Expand Up @@ -563,13 +551,12 @@ Name | Type | Description | Notes

### Other Parameters

Other parameters are passed through a pointer to a apiGetAnycastVersionRequest struct via the builder pattern
Other parameters are passed through a pointer to a `OnPremAnycastManagerAPIGetAnycastVersionRequest` struct via the builder pattern


Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------


### Return type

[**AnycastVersion**](AnycastVersion.md)
Expand Down Expand Up @@ -612,11 +599,9 @@ import (
func main() {
ophid := "ophid_example" // string |
version := "version_example" // string |
appName := "appName_example" // string | (optional)
appVersion := "appVersion_example" // string | (optional)

apiClient := anycast.NewAPIClient()
resp, r, err := apiClient.OnPremAnycastManagerAPI.GetOnpremConfig(context.Background(), ophid, version).AppName(appName).AppVersion(appVersion).Execute()
resp, r, err := apiClient.OnPremAnycastManagerAPI.GetOnpremConfig(context.Background(), ophid, version).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `OnPremAnycastManagerAPI.GetOnpremConfig``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
Expand All @@ -637,15 +622,13 @@ Name | Type | Description | Notes

### Other Parameters

Other parameters are passed through a pointer to a apiGetOnpremConfigRequest struct via the builder pattern
Other parameters are passed through a pointer to a `OnPremAnycastManagerAPIGetOnpremConfigRequest` struct via the builder pattern


Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------


**appName** | **string** | |
**appVersion** | **string** | |
**appName** | **string** | |
**appVersion** | **string** | |

### Return type

Expand Down Expand Up @@ -689,11 +672,9 @@ import (
func main() {
ophid := "ophid_example" // string |
version := "version_example" // string |
appName := "appName_example" // string | (optional)
appVersion := "appVersion_example" // string | (optional)

apiClient := anycast.NewAPIClient()
resp, r, err := apiClient.OnPremAnycastManagerAPI.GetOnpremConfig2(context.Background(), ophid, version).AppName(appName).AppVersion(appVersion).Execute()
resp, r, err := apiClient.OnPremAnycastManagerAPI.GetOnpremConfig2(context.Background(), ophid, version).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `OnPremAnycastManagerAPI.GetOnpremConfig2``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
Expand All @@ -714,15 +695,13 @@ Name | Type | Description | Notes

### Other Parameters

Other parameters are passed through a pointer to a apiGetOnpremConfig2Request struct via the builder pattern
Other parameters are passed through a pointer to a `OnPremAnycastManagerAPIGetOnpremConfig2Request` struct via the builder pattern


Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------


**appName** | **string** | |
**appVersion** | **string** | |
**appName** | **string** | |
**appVersion** | **string** | |

### Return type

Expand Down Expand Up @@ -787,13 +766,12 @@ Name | Type | Description | Notes

### Other Parameters

Other parameters are passed through a pointer to a apiGetOnpremHostRequest struct via the builder pattern
Other parameters are passed through a pointer to a `OnPremAnycastManagerAPIGetOnpremHostRequest` struct via the builder pattern


Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------


### Return type

[**OnpremHostResponse**](OnpremHostResponse.md)
Expand Down Expand Up @@ -857,13 +835,12 @@ Name | Type | Description | Notes

### Other Parameters

Other parameters are passed through a pointer to a apiGetStatusRequest struct via the builder pattern
Other parameters are passed through a pointer to a `OnPremAnycastManagerAPIGetStatusRequest` struct via the builder pattern


Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------


### Return type

[**ServiceStatusUpdateRequest**](ServiceStatusUpdateRequest.md)
Expand Down Expand Up @@ -927,13 +904,12 @@ Name | Type | Description | Notes

### Other Parameters

Other parameters are passed through a pointer to a apiGetStatus2Request struct via the builder pattern
Other parameters are passed through a pointer to a `OnPremAnycastManagerAPIGetStatus2Request` struct via the builder pattern


Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------


### Return type

[**ServiceStatusUpdateRequest**](ServiceStatusUpdateRequest.md)
Expand Down Expand Up @@ -974,16 +950,9 @@ import (
)

func main() {
accountId := int64(789) // int64 | (optional)
service := "service_example" // string | (optional)
hostId := int64(789) // int64 | (optional)
ophid := "ophid_example" // string | (optional)
isConfigured := true // bool | (optional)
tfilter := "tfilter_example" // string | (optional)
torderBy := "torderBy_example" // string | (optional)

apiClient := anycast.NewAPIClient()
resp, r, err := apiClient.OnPremAnycastManagerAPI.ListAnycastConfigsWithRuntimeStatus(context.Background()).AccountId(accountId).Service(service).HostId(hostId).Ophid(ophid).IsConfigured(isConfigured).Tfilter(tfilter).TorderBy(torderBy).Execute()
resp, r, err := apiClient.OnPremAnycastManagerAPI.ListAnycastConfigsWithRuntimeStatus(context.Background()).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `OnPremAnycastManagerAPI.ListAnycastConfigsWithRuntimeStatus``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
Expand All @@ -999,18 +968,18 @@ func main() {

### Other Parameters

Other parameters are passed through a pointer to a apiListAnycastConfigsWithRuntimeStatusRequest struct via the builder pattern
Other parameters are passed through a pointer to a `OnPremAnycastManagerAPIListAnycastConfigsWithRuntimeStatusRequest` struct via the builder pattern


Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**accountId** | **int64** | |
**service** | **string** | |
**hostId** | **int64** | |
**ophid** | **string** | |
**isConfigured** | **bool** | |
**tfilter** | **string** | |
**torderBy** | **string** | |
**accountId** | **int64** | |
**service** | **string** | |
**hostId** | **int64** | |
**ophid** | **string** | |
**isConfigured** | **bool** | |
**tfilter** | **string** | |
**torderBy** | **string** | |

### Return type

Expand Down Expand Up @@ -1075,13 +1044,12 @@ Name | Type | Description | Notes

### Other Parameters

Other parameters are passed through a pointer to a apiReadAnycastConfigWithRuntimeStatusRequest struct via the builder pattern
Other parameters are passed through a pointer to a `OnPremAnycastManagerAPIReadAnycastConfigWithRuntimeStatusRequest` struct via the builder pattern


Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------


### Return type

[**AnycastConfigResponse**](AnycastConfigResponse.md)
Expand Down Expand Up @@ -1146,13 +1114,12 @@ Name | Type | Description | Notes

### Other Parameters

Other parameters are passed through a pointer to a apiUpdateAnycastConfigRequest struct via the builder pattern
Other parameters are passed through a pointer to a `OnPremAnycastManagerAPIUpdateAnycastConfigRequest` struct via the builder pattern


Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------

**body** | [**AnycastConfig**](AnycastConfig.md) | |
**body** | [**AnycastConfig**](AnycastConfig.md) | |

### Return type

Expand Down Expand Up @@ -1218,13 +1185,12 @@ Name | Type | Description | Notes

### Other Parameters

Other parameters are passed through a pointer to a apiUpdateOnpremHostRequest struct via the builder pattern
Other parameters are passed through a pointer to a `OnPremAnycastManagerAPIUpdateOnpremHostRequest` struct via the builder pattern


Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------

**body** | [**OnpremHost**](OnpremHost.md) | |
**body** | [**OnpremHost**](OnpremHost.md) | |

### Return type

Expand Down
2 changes: 1 addition & 1 deletion dfp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat
- API version: v1
- Package version: 1.0.0
- Generator version: 7.5.0
- Build package: org.openapitools.codegen.languages.GoClientCodegen
- Build package: com.infoblox.codegen.BloxoneGoClientCodegen

## Installation

Expand Down
4 changes: 2 additions & 2 deletions dfp/docs/AccountsAPI.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ func main() {

### Other Parameters

Other parameters are passed through a pointer to a apiCheckConfigRequest struct via the builder pattern
Other parameters are passed through a pointer to a `AccountsAPICheckConfigRequest` struct via the builder pattern


Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**body** | [**TypesConfigCheckRequest**](TypesConfigCheckRequest.md) | |
**body** | [**TypesConfigCheckRequest**](TypesConfigCheckRequest.md) | |

### Return type

Expand Down
Loading

0 comments on commit b0791ce

Please sign in to comment.