Skip to content

Latest commit

 

History

History
2459 lines (1566 loc) · 69 KB

OwnerAPI.md

File metadata and controls

2459 lines (1566 loc) · 69 KB

\OwnerAPI

All URIs are relative to /candlepin

Method HTTP request Description
Claim Put /owners/{anonymous_owner_key}/claim
CountConsumers Get /owners/{owner_key}/consumers/count
CreateActivationKey Post /owners/{owner_key}/activation_keys
CreateEnvironment Post /owners/{owner_key}/environments
CreateOwner Post /owners
CreatePool Post /owners/{owner_key}/pools
CreateUeberCertificate Post /owners/{owner_key}/uebercert
DeleteLogLevel Delete /owners/{owner_key}/log
DeleteOwner Delete /owners/{owner_key}
GetConsumersSyspurpose Get /owners/{owner_key}/consumers_system_purpose
GetHypervisors Get /owners/{owner_key}/hypervisors
GetImports Get /owners/{owner_key}/imports
GetOwner Get /owners/{owner_key}
GetOwnerContentAccess Get /owners/{owner_key}/content_access
GetOwnerInfo Get /owners/{owner_key}/info
GetOwnerSubscriptions Get /owners/{owner_key}/subscriptions
GetSyspurpose Get /owners/{owner_key}/system_purpose
GetUeberCertificate Get /owners/{owner_key}/uebercert
GetUpstreamConsumers Get /owners/{owner_key}/upstream_consumers
HealEntire Post /owners/{owner_key}/entitlements
ImportManifestAsync Post /owners/{owner_key}/imports/async
ListConsumers Get /owners/{owner_key}/consumers
ListEnvironments Get /owners/{owner_key}/environments
ListOwnerPools Get /owners/{owner_key}/pools
ListOwners Get /owners
OwnerActivationKeys Get /owners/{owner_key}/activation_keys
OwnerEntitlements Get /owners/{owner_key}/entitlements
OwnerServiceLevels Get /owners/{owner_key}/servicelevels
RefreshPools Put /owners/{owner_key}/subscriptions
SetLogLevel Put /owners/{owner_key}/log
UndoImports Delete /owners/{owner_key}/imports
UpdateOwner Put /owners/{owner_key}
UpdatePool Put /owners/{owner_key}/pools

Claim

AsyncJobStatusDTO Claim(ctx, anonymousOwnerKey).ClaimantOwner(claimantOwner).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	anonymousOwnerKey := "anonymousOwnerKey_example" // string | The key of the owner
	claimantOwner := *openapiclient.NewClaimantOwner("ClaimantOwnerKey_example") // ClaimantOwner | Claimant owner

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.Claim(context.Background(), anonymousOwnerKey).ClaimantOwner(claimantOwner).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.Claim``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `Claim`: AsyncJobStatusDTO
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.Claim`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
anonymousOwnerKey string The key of the owner

Other Parameters

Other parameters are passed through a pointer to a apiClaimRequest struct via the builder pattern

Name Type Description Notes

claimantOwner | ClaimantOwner | Claimant owner |

Return type

AsyncJobStatusDTO

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

CountConsumers

int32 CountConsumers(ctx, ownerKey).Username(username).Type_(type_).Uuid(uuid).HypervisorId(hypervisorId).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The key of the owner
	username := "username_example" // string | The username of the consumer (optional)
	type_ := []string{"Inner_example"} // []string | The consumer type (optional)
	uuid := []string{"Inner_example"} // []string | The UUID of consumers (optional)
	hypervisorId := []string{"Inner_example"} // []string | The hypervisor IDs (optional)

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.CountConsumers(context.Background(), ownerKey).Username(username).Type_(type_).Uuid(uuid).HypervisorId(hypervisorId).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.CountConsumers``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `CountConsumers`: int32
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.CountConsumers`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The key of the owner

Other Parameters

Other parameters are passed through a pointer to a apiCountConsumersRequest struct via the builder pattern

Name Type Description Notes

username | string | The username of the consumer | type_ | []string | The consumer type | uuid | []string | The UUID of consumers | hypervisorId | []string | The hypervisor IDs |

Return type

int32

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

CreateActivationKey

ActivationKeyDTO CreateActivationKey(ctx, ownerKey).ActivationKeyDTO(activationKeyDTO).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The key of the owner
	activationKeyDTO := *openapiclient.NewActivationKeyDTO() // ActivationKeyDTO | Activation key to be created

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.CreateActivationKey(context.Background(), ownerKey).ActivationKeyDTO(activationKeyDTO).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.CreateActivationKey``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `CreateActivationKey`: ActivationKeyDTO
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.CreateActivationKey`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The key of the owner

Other Parameters

Other parameters are passed through a pointer to a apiCreateActivationKeyRequest struct via the builder pattern

Name Type Description Notes

activationKeyDTO | ActivationKeyDTO | Activation key to be created |

Return type

ActivationKeyDTO

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

CreateEnvironment

EnvironmentDTO CreateEnvironment(ctx, ownerKey).EnvironmentDTO(environmentDTO).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The key of the owner
	environmentDTO := *openapiclient.NewEnvironmentDTO() // EnvironmentDTO | Environment to be created

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.CreateEnvironment(context.Background(), ownerKey).EnvironmentDTO(environmentDTO).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.CreateEnvironment``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `CreateEnvironment`: EnvironmentDTO
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.CreateEnvironment`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The key of the owner

Other Parameters

Other parameters are passed through a pointer to a apiCreateEnvironmentRequest struct via the builder pattern

Name Type Description Notes

environmentDTO | EnvironmentDTO | Environment to be created |

Return type

EnvironmentDTO

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

CreateOwner

OwnerDTO CreateOwner(ctx).OwnerDTO(ownerDTO).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerDTO := *openapiclient.NewOwnerDTO() // OwnerDTO | Owner to be created

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.CreateOwner(context.Background()).OwnerDTO(ownerDTO).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.CreateOwner``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `CreateOwner`: OwnerDTO
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.CreateOwner`: %v\n", resp)
}

Path Parameters

Other Parameters

Other parameters are passed through a pointer to a apiCreateOwnerRequest struct via the builder pattern

Name Type Description Notes
ownerDTO OwnerDTO Owner to be created

Return type

OwnerDTO

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

CreatePool

PoolDTO CreatePool(ctx, ownerKey).PoolDTO(poolDTO).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The key of the owner
	poolDTO := *openapiclient.NewPoolDTO() // PoolDTO | A pool to be created

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.CreatePool(context.Background(), ownerKey).PoolDTO(poolDTO).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.CreatePool``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `CreatePool`: PoolDTO
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.CreatePool`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The key of the owner

Other Parameters

Other parameters are passed through a pointer to a apiCreatePoolRequest struct via the builder pattern

Name Type Description Notes

poolDTO | PoolDTO | A pool to be created |

Return type

PoolDTO

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

CreateUeberCertificate

UeberCertificateDTO CreateUeberCertificate(ctx, ownerKey).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The key of the owner

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.CreateUeberCertificate(context.Background(), ownerKey).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.CreateUeberCertificate``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `CreateUeberCertificate`: UeberCertificateDTO
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.CreateUeberCertificate`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The key of the owner

Other Parameters

Other parameters are passed through a pointer to a apiCreateUeberCertificateRequest struct via the builder pattern

Name Type Description Notes

Return type

UeberCertificateDTO

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

DeleteLogLevel

DeleteLogLevel(ctx, ownerKey).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The owner key

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	r, err := apiClient.OwnerAPI.DeleteLogLevel(context.Background(), ownerKey).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.DeleteLogLevel``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The owner key

Other Parameters

Other parameters are passed through a pointer to a apiDeleteLogLevelRequest struct via the builder pattern

Name Type Description Notes

Return type

(empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

DeleteOwner

DeleteOwner(ctx, ownerKey).Revoke(revoke).Force(force).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The owner key
	revoke := true // bool | Boolean value to revoke an owner (optional) (default to true)
	force := true // bool | Boolean value to forcefully delete an owner. This is not in use. (optional) (default to false)

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	r, err := apiClient.OwnerAPI.DeleteOwner(context.Background(), ownerKey).Revoke(revoke).Force(force).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.DeleteOwner``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The owner key

Other Parameters

Other parameters are passed through a pointer to a apiDeleteOwnerRequest struct via the builder pattern

Name Type Description Notes

revoke | bool | Boolean value to revoke an owner | [default to true] force | bool | Boolean value to forcefully delete an owner. This is not in use. | [default to false]

Return type

(empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

GetConsumersSyspurpose

SystemPurposeAttributesDTO GetConsumersSyspurpose(ctx, ownerKey).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The key of the owner

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.GetConsumersSyspurpose(context.Background(), ownerKey).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.GetConsumersSyspurpose``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `GetConsumersSyspurpose`: SystemPurposeAttributesDTO
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.GetConsumersSyspurpose`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The key of the owner

Other Parameters

Other parameters are passed through a pointer to a apiGetConsumersSyspurposeRequest struct via the builder pattern

Name Type Description Notes

Return type

SystemPurposeAttributesDTO

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

GetHypervisors

[]ConsumerDTOArrayElement GetHypervisors(ctx, ownerKey).HypervisorId(hypervisorId).Page(page).PerPage(perPage).Order(order).SortBy(sortBy).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The key of the owner
	hypervisorId := []string{"Inner_example"} // []string | The list of hypervisor Ids (optional)
	page := int32(2) // int32 | Page index to return (optional)
	perPage := int32(10) // int32 | Number of items to return per page (optional)
	order := "asc" // string | Direction of ordering (optional)
	sortBy := "name" // string | Property to use for ordering (optional)

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.GetHypervisors(context.Background(), ownerKey).HypervisorId(hypervisorId).Page(page).PerPage(perPage).Order(order).SortBy(sortBy).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.GetHypervisors``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `GetHypervisors`: []ConsumerDTOArrayElement
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.GetHypervisors`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The key of the owner

Other Parameters

Other parameters are passed through a pointer to a apiGetHypervisorsRequest struct via the builder pattern

Name Type Description Notes

hypervisorId | []string | The list of hypervisor Ids | page | int32 | Page index to return | perPage | int32 | Number of items to return per page | order | string | Direction of ordering | sortBy | string | Property to use for ordering |

Return type

[]ConsumerDTOArrayElement

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

GetImports

[]ImportRecordDTO GetImports(ctx, ownerKey).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The key of the owner

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.GetImports(context.Background(), ownerKey).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.GetImports``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `GetImports`: []ImportRecordDTO
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.GetImports`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The key of the owner

Other Parameters

Other parameters are passed through a pointer to a apiGetImportsRequest struct via the builder pattern

Name Type Description Notes

Return type

[]ImportRecordDTO

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

GetOwner

OwnerDTO GetOwner(ctx, ownerKey).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The key of the owner

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.GetOwner(context.Background(), ownerKey).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.GetOwner``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `GetOwner`: OwnerDTO
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.GetOwner`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The key of the owner

Other Parameters

Other parameters are passed through a pointer to a apiGetOwnerRequest struct via the builder pattern

Name Type Description Notes

Return type

OwnerDTO

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

GetOwnerContentAccess

ContentAccessDTO GetOwnerContentAccess(ctx, ownerKey).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The key of the owner

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.GetOwnerContentAccess(context.Background(), ownerKey).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.GetOwnerContentAccess``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `GetOwnerContentAccess`: ContentAccessDTO
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.GetOwnerContentAccess`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The key of the owner

Other Parameters

Other parameters are passed through a pointer to a apiGetOwnerContentAccessRequest struct via the builder pattern

Name Type Description Notes

Return type

ContentAccessDTO

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

GetOwnerInfo

OwnerInfo GetOwnerInfo(ctx, ownerKey).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The key of the owner

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.GetOwnerInfo(context.Background(), ownerKey).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.GetOwnerInfo``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `GetOwnerInfo`: OwnerInfo
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.GetOwnerInfo`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The key of the owner

Other Parameters

Other parameters are passed through a pointer to a apiGetOwnerInfoRequest struct via the builder pattern

Name Type Description Notes

Return type

OwnerInfo

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

GetOwnerSubscriptions

[]SubscriptionDTO GetOwnerSubscriptions(ctx, ownerKey).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The key of the owner

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.GetOwnerSubscriptions(context.Background(), ownerKey).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.GetOwnerSubscriptions``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `GetOwnerSubscriptions`: []SubscriptionDTO
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.GetOwnerSubscriptions`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The key of the owner

Other Parameters

Other parameters are passed through a pointer to a apiGetOwnerSubscriptionsRequest struct via the builder pattern

Name Type Description Notes

Return type

[]SubscriptionDTO

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

GetSyspurpose

SystemPurposeAttributesDTO GetSyspurpose(ctx, ownerKey).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The key of the owner

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.GetSyspurpose(context.Background(), ownerKey).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.GetSyspurpose``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `GetSyspurpose`: SystemPurposeAttributesDTO
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.GetSyspurpose`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The key of the owner

Other Parameters

Other parameters are passed through a pointer to a apiGetSyspurposeRequest struct via the builder pattern

Name Type Description Notes

Return type

SystemPurposeAttributesDTO

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

GetUeberCertificate

UeberCertificateDTO GetUeberCertificate(ctx, ownerKey).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The key of the owner

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.GetUeberCertificate(context.Background(), ownerKey).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.GetUeberCertificate``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `GetUeberCertificate`: UeberCertificateDTO
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.GetUeberCertificate`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The key of the owner

Other Parameters

Other parameters are passed through a pointer to a apiGetUeberCertificateRequest struct via the builder pattern

Name Type Description Notes

Return type

UeberCertificateDTO

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

GetUpstreamConsumers

[]UpstreamConsumerDTOArrayElement GetUpstreamConsumers(ctx, ownerKey).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The key of the owner

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.GetUpstreamConsumers(context.Background(), ownerKey).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.GetUpstreamConsumers``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `GetUpstreamConsumers`: []UpstreamConsumerDTOArrayElement
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.GetUpstreamConsumers`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The key of the owner

Other Parameters

Other parameters are passed through a pointer to a apiGetUpstreamConsumersRequest struct via the builder pattern

Name Type Description Notes

Return type

[]UpstreamConsumerDTOArrayElement

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

HealEntire

AsyncJobStatusDTO HealEntire(ctx, ownerKey).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The key of the owner

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.HealEntire(context.Background(), ownerKey).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.HealEntire``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `HealEntire`: AsyncJobStatusDTO
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.HealEntire`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The key of the owner

Other Parameters

Other parameters are passed through a pointer to a apiHealEntireRequest struct via the builder pattern

Name Type Description Notes

Return type

AsyncJobStatusDTO

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ImportManifestAsync

AsyncJobStatusDTO ImportManifestAsync(ctx, ownerKey).Force(force).Input(input).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The key of the owner
	force := []string{"Inner_example"} // []string | This is used to override the conflicts (optional)
	input := os.NewFile(1234, "some_file") // *os.File |  (optional)

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.ImportManifestAsync(context.Background(), ownerKey).Force(force).Input(input).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.ImportManifestAsync``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `ImportManifestAsync`: AsyncJobStatusDTO
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.ImportManifestAsync`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The key of the owner

Other Parameters

Other parameters are passed through a pointer to a apiImportManifestAsyncRequest struct via the builder pattern

Name Type Description Notes

force | []string | This is used to override the conflicts | input | *os.File | |

Return type

AsyncJobStatusDTO

Authorization

No authorization required

HTTP request headers

  • Content-Type: multipart/form-data
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ListConsumers

[]ConsumerDTOArrayElement ListConsumers(ctx, ownerKey).Username(username).Type_(type_).Uuid(uuid).HypervisorId(hypervisorId).Fact(fact).Page(page).PerPage(perPage).Order(order).SortBy(sortBy).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The key of the owner
	username := "username_example" // string | The username of the consumer (optional)
	type_ := []string{"Inner_example"} // []string | The consumer type (optional)
	uuid := []string{"Inner_example"} // []string | The UUID of consumers (optional)
	hypervisorId := []string{"Inner_example"} // []string | The hypervisor IDs (optional)
	fact := []string{"Inner_example"} // []string | The consumer facts (optional)
	page := int32(2) // int32 | Page index to return (optional)
	perPage := int32(10) // int32 | Number of items to return per page (optional)
	order := "asc" // string | Direction of ordering (optional)
	sortBy := "name" // string | Property to use for ordering (optional)

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.ListConsumers(context.Background(), ownerKey).Username(username).Type_(type_).Uuid(uuid).HypervisorId(hypervisorId).Fact(fact).Page(page).PerPage(perPage).Order(order).SortBy(sortBy).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.ListConsumers``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `ListConsumers`: []ConsumerDTOArrayElement
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.ListConsumers`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The key of the owner

Other Parameters

Other parameters are passed through a pointer to a apiListConsumersRequest struct via the builder pattern

Name Type Description Notes

username | string | The username of the consumer | type_ | []string | The consumer type | uuid | []string | The UUID of consumers | hypervisorId | []string | The hypervisor IDs | fact | []string | The consumer facts | page | int32 | Page index to return | perPage | int32 | Number of items to return per page | order | string | Direction of ordering | sortBy | string | Property to use for ordering |

Return type

[]ConsumerDTOArrayElement

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ListEnvironments

[]EnvironmentDTO ListEnvironments(ctx, ownerKey).Name(name).Type_(type_).ListAll(listAll).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The key of the owner
	name := "name_example" // string | The name of the environment (optional)
	type_ := []string{"Inner_example"} // []string | The type of the environments (optional)
	listAll := true // bool | List all boolean for environments of all types (optional) (default to false)

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.ListEnvironments(context.Background(), ownerKey).Name(name).Type_(type_).ListAll(listAll).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.ListEnvironments``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `ListEnvironments`: []EnvironmentDTO
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.ListEnvironments`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The key of the owner

Other Parameters

Other parameters are passed through a pointer to a apiListEnvironmentsRequest struct via the builder pattern

Name Type Description Notes

name | string | The name of the environment | type_ | []string | The type of the environments | listAll | bool | List all boolean for environments of all types | [default to false]

Return type

[]EnvironmentDTO

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ListOwnerPools

[]PoolDTO ListOwnerPools(ctx, ownerKey).Consumer(consumer).ActivationKey(activationKey).Product(product).Subscription(subscription).Listall(listall).Activeon(activeon).Matches(matches).Attribute(attribute).AddFuture(addFuture).OnlyFuture(onlyFuture).After(after).Poolid(poolid).Page(page).PerPage(perPage).Order(order).SortBy(sortBy).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The key of the owner
	consumer := "consumer_example" // string | The consumer UUID (optional)
	activationKey := "activationKey_example" // string | The activation key name (optional)
	product := "product_example" // string | The product id (optional)
	subscription := "subscription_example" // string | The subscription id (optional)
	listall := true // bool | Includes pools which are not applicable based on some of the consumer's current system facts (i.e. system architecture, sockets, cores, ram, storage_band, instance_multiplier), but will still filter pools based on other factors, such as pools restricted to a consumer of specific types, usernames, or uuids; pools restricted to guests of specific hosts; non-multi-entitlement pools that the consumer has already attached; unmapped guest pools for which the consumer is ineligible; and expired pools.  (optional) (default to false)
	activeon := "activeon_example" // string | Active on date (optional)
	matches := []string{"Inner_example"} // []string | Find pools matching the given pattern in a variety of fields * and ? wildcards are supported; may be specified multiple times  (optional)
	attribute := []string{"Inner_example"} // []string | The attributes to return based on the specified types (optional)
	addFuture := true // bool | When set to true, it will add future dated pools to the result, based on the activeon date  (optional) (default to false)
	onlyFuture := true // bool | When set to true, it will return only future dated pools to the result, based on the activeon date  (optional) (default to false)
	after := "after_example" // string | Will only return pools with a start date after the supplied date. Overrides the activeOn date  (optional)
	poolid := []string{"Inner_example"} // []string | One or more pool IDs to use to filter the output; only pools with IDs matching those provided will be returned; may be specified multiple times  (optional)
	page := int32(2) // int32 | Page index to return (optional)
	perPage := int32(10) // int32 | Number of items to return per page (optional)
	order := "asc" // string | Direction of ordering (optional)
	sortBy := "name" // string | Property to use for ordering (optional)

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.ListOwnerPools(context.Background(), ownerKey).Consumer(consumer).ActivationKey(activationKey).Product(product).Subscription(subscription).Listall(listall).Activeon(activeon).Matches(matches).Attribute(attribute).AddFuture(addFuture).OnlyFuture(onlyFuture).After(after).Poolid(poolid).Page(page).PerPage(perPage).Order(order).SortBy(sortBy).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.ListOwnerPools``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `ListOwnerPools`: []PoolDTO
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.ListOwnerPools`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The key of the owner

Other Parameters

Other parameters are passed through a pointer to a apiListOwnerPoolsRequest struct via the builder pattern

Name Type Description Notes

consumer | string | The consumer UUID | activationKey | string | The activation key name | product | string | The product id | subscription | string | The subscription id | listall | bool | Includes pools which are not applicable based on some of the consumer's current system facts (i.e. system architecture, sockets, cores, ram, storage_band, instance_multiplier), but will still filter pools based on other factors, such as pools restricted to a consumer of specific types, usernames, or uuids; pools restricted to guests of specific hosts; non-multi-entitlement pools that the consumer has already attached; unmapped guest pools for which the consumer is ineligible; and expired pools. | [default to false] activeon | string | Active on date | matches | []string | Find pools matching the given pattern in a variety of fields * and ? wildcards are supported; may be specified multiple times | attribute | []string | The attributes to return based on the specified types | addFuture | bool | When set to true, it will add future dated pools to the result, based on the activeon date | [default to false] onlyFuture | bool | When set to true, it will return only future dated pools to the result, based on the activeon date | [default to false] after | string | Will only return pools with a start date after the supplied date. Overrides the activeOn date | poolid | []string | One or more pool IDs to use to filter the output; only pools with IDs matching those provided will be returned; may be specified multiple times | page | int32 | Page index to return | perPage | int32 | Number of items to return per page | order | string | Direction of ordering | sortBy | string | Property to use for ordering |

Return type

[]PoolDTO

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ListOwners

[]OwnerDTO ListOwners(ctx).Key(key).Page(page).PerPage(perPage).Order(order).SortBy(sortBy).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	key := "key_example" // string | The owner key (optional)
	page := int32(2) // int32 | Page index to return (optional)
	perPage := int32(10) // int32 | Number of items to return per page (optional)
	order := "asc" // string | Direction of ordering (optional)
	sortBy := "name" // string | Property to use for ordering (optional)

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.ListOwners(context.Background()).Key(key).Page(page).PerPage(perPage).Order(order).SortBy(sortBy).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.ListOwners``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `ListOwners`: []OwnerDTO
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.ListOwners`: %v\n", resp)
}

Path Parameters

Other Parameters

Other parameters are passed through a pointer to a apiListOwnersRequest struct via the builder pattern

Name Type Description Notes
key string The owner key
page int32 Page index to return
perPage int32 Number of items to return per page
order string Direction of ordering
sortBy string Property to use for ordering

Return type

[]OwnerDTO

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

OwnerActivationKeys

[]ActivationKeyDTO OwnerActivationKeys(ctx, ownerKey).Name(name).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The key of the owner
	name := "name_example" // string | The name of the activation key (optional)

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.OwnerActivationKeys(context.Background(), ownerKey).Name(name).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.OwnerActivationKeys``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `OwnerActivationKeys`: []ActivationKeyDTO
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.OwnerActivationKeys`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The key of the owner

Other Parameters

Other parameters are passed through a pointer to a apiOwnerActivationKeysRequest struct via the builder pattern

Name Type Description Notes

name | string | The name of the activation key |

Return type

[]ActivationKeyDTO

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

OwnerEntitlements

[]EntitlementDTO OwnerEntitlements(ctx, ownerKey).Product(product).Attribute(attribute).Page(page).PerPage(perPage).Order(order).SortBy(sortBy).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The key of the owner
	product := "product_example" // string | The product id (optional)
	attribute := []string{"Inner_example"} // []string | Attribute filters (optional)
	page := int32(2) // int32 | Page index to return (optional)
	perPage := int32(10) // int32 | Number of items to return per page (optional)
	order := "asc" // string | Direction of ordering (optional)
	sortBy := "name" // string | Property to use for ordering (optional)

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.OwnerEntitlements(context.Background(), ownerKey).Product(product).Attribute(attribute).Page(page).PerPage(perPage).Order(order).SortBy(sortBy).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.OwnerEntitlements``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `OwnerEntitlements`: []EntitlementDTO
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.OwnerEntitlements`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The key of the owner

Other Parameters

Other parameters are passed through a pointer to a apiOwnerEntitlementsRequest struct via the builder pattern

Name Type Description Notes

product | string | The product id | attribute | []string | Attribute filters | page | int32 | Page index to return | perPage | int32 | Number of items to return per page | order | string | Direction of ordering | sortBy | string | Property to use for ordering |

Return type

[]EntitlementDTO

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

OwnerServiceLevels

[]string OwnerServiceLevels(ctx, ownerKey).Exempt(exempt).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The key of the owner
	exempt := "exempt_example" // string | exempt (optional) (default to "false")

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.OwnerServiceLevels(context.Background(), ownerKey).Exempt(exempt).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.OwnerServiceLevels``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `OwnerServiceLevels`: []string
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.OwnerServiceLevels`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The key of the owner

Other Parameters

Other parameters are passed through a pointer to a apiOwnerServiceLevelsRequest struct via the builder pattern

Name Type Description Notes

exempt | string | exempt | [default to "false"]

Return type

[]string

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

RefreshPools

AsyncJobStatusDTO RefreshPools(ctx, ownerKey).AutoCreateOwner(autoCreateOwner).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The key of the owner
	autoCreateOwner := true // bool | Specify whether or not to create an owner automatically. Default is false. (optional) (default to false)

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.RefreshPools(context.Background(), ownerKey).AutoCreateOwner(autoCreateOwner).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.RefreshPools``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `RefreshPools`: AsyncJobStatusDTO
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.RefreshPools`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The key of the owner

Other Parameters

Other parameters are passed through a pointer to a apiRefreshPoolsRequest struct via the builder pattern

Name Type Description Notes

autoCreateOwner | bool | Specify whether or not to create an owner automatically. Default is false. | [default to false]

Return type

AsyncJobStatusDTO

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

SetLogLevel

OwnerDTO SetLogLevel(ctx, ownerKey).Level(level).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The key of the owner
	level := "level_example" // string | The log level (optional) (default to "DEBUG")

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.SetLogLevel(context.Background(), ownerKey).Level(level).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.SetLogLevel``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `SetLogLevel`: OwnerDTO
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.SetLogLevel`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The key of the owner

Other Parameters

Other parameters are passed through a pointer to a apiSetLogLevelRequest struct via the builder pattern

Name Type Description Notes

level | string | The log level | [default to "DEBUG"]

Return type

OwnerDTO

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

UndoImports

AsyncJobStatusDTO UndoImports(ctx, ownerKey).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The key of the owner

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.UndoImports(context.Background(), ownerKey).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.UndoImports``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `UndoImports`: AsyncJobStatusDTO
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.UndoImports`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The key of the owner

Other Parameters

Other parameters are passed through a pointer to a apiUndoImportsRequest struct via the builder pattern

Name Type Description Notes

Return type

AsyncJobStatusDTO

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

UpdateOwner

OwnerDTO UpdateOwner(ctx, ownerKey).OwnerDTO(ownerDTO).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | The key of the owner
	ownerDTO := *openapiclient.NewOwnerDTO() // OwnerDTO | Owner to be updated

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.OwnerAPI.UpdateOwner(context.Background(), ownerKey).OwnerDTO(ownerDTO).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.UpdateOwner``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `UpdateOwner`: OwnerDTO
	fmt.Fprintf(os.Stdout, "Response from `OwnerAPI.UpdateOwner`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string The key of the owner

Other Parameters

Other parameters are passed through a pointer to a apiUpdateOwnerRequest struct via the builder pattern

Name Type Description Notes

ownerDTO | OwnerDTO | Owner to be updated |

Return type

OwnerDTO

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

UpdatePool

UpdatePool(ctx, ownerKey).PoolDTO(poolDTO).Execute()

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/content-services/caliri/release/v4"
)

func main() {
	ownerKey := "ownerKey_example" // string | Owner key
	poolDTO := *openapiclient.NewPoolDTO() // PoolDTO | A pool to be updated

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	r, err := apiClient.OwnerAPI.UpdatePool(context.Background(), ownerKey).PoolDTO(poolDTO).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `OwnerAPI.UpdatePool``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ownerKey string Owner key

Other Parameters

Other parameters are passed through a pointer to a apiUpdatePoolRequest struct via the builder pattern

Name Type Description Notes

poolDTO | PoolDTO | A pool to be updated |

Return type

(empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]