traefik/vendor/github.com/oracle/oci-go-sdk/dns/list_steering_policies_request_response.go
2019-03-14 11:04:04 +01:00

160 lines
6.7 KiB
Go

// Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
// Code generated. DO NOT EDIT.
package dns
import (
"github.com/oracle/oci-go-sdk/common"
"net/http"
)
// ListSteeringPoliciesRequest wrapper for the ListSteeringPolicies operation
type ListSteeringPoliciesRequest struct {
// The OCID of the compartment the resource belongs to.
CompartmentId *string `mandatory:"true" contributesTo:"query" name:"compartmentId"`
// The maximum number of items to return in a page of the collection.
Limit *int64 `mandatory:"false" contributesTo:"query" name:"limit"`
// The value of the `opc-next-page` response header from the previous "List" call.
Page *string `mandatory:"false" contributesTo:"query" name:"page"`
// The OCID of a resource.
Id *string `mandatory:"false" contributesTo:"query" name:"id"`
// The displayName of a resource.
DisplayName *string `mandatory:"false" contributesTo:"query" name:"displayName"`
// The partial displayName of a resource. Will match any resource whose name
// (case-insensitive) contains the provided value.
DisplayNameContains *string `mandatory:"false" contributesTo:"query" name:"displayNameContains"`
// Search by health check monitor OCID.
// Will match any resource whose health check monitor id matches the provided value.
HealthCheckMonitorId *string `mandatory:"false" contributesTo:"query" name:"healthCheckMonitorId"`
// An RFC 3339 (https://www.ietf.org/rfc/rfc3339.txt) timestamp that states
// all returned resources were created on or after the indicated time.
TimeCreatedGreaterThanOrEqualTo *common.SDKTime `mandatory:"false" contributesTo:"query" name:"timeCreatedGreaterThanOrEqualTo"`
// An RFC 3339 (https://www.ietf.org/rfc/rfc3339.txt) timestamp that states
// all returned resources were created before the indicated time.
TimeCreatedLessThan *common.SDKTime `mandatory:"false" contributesTo:"query" name:"timeCreatedLessThan"`
// Search by template type.
// Will match any resource whose template type matches the provided value.
Template *string `mandatory:"false" contributesTo:"query" name:"template"`
// The state of a resource.
LifecycleState SteeringPolicySummaryLifecycleStateEnum `mandatory:"false" contributesTo:"query" name:"lifecycleState" omitEmpty:"true"`
// The field by which to sort steering policies.
SortBy ListSteeringPoliciesSortByEnum `mandatory:"false" contributesTo:"query" name:"sortBy" omitEmpty:"true"`
// The order to sort the resources.
SortOrder ListSteeringPoliciesSortOrderEnum `mandatory:"false" contributesTo:"query" name:"sortOrder" omitEmpty:"true"`
// Unique Oracle-assigned identifier for the request.
// If you need to contact Oracle about a particular request, please provide the request ID.
OpcRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-request-id"`
// Metadata about the request. This information will not be transmitted to the service, but
// represents information that the SDK will consume to drive retry behavior.
RequestMetadata common.RequestMetadata
}
func (request ListSteeringPoliciesRequest) String() string {
return common.PointerString(request)
}
// HTTPRequest implements the OCIRequest interface
func (request ListSteeringPoliciesRequest) HTTPRequest(method, path string) (http.Request, error) {
return common.MakeDefaultHTTPRequestWithTaggedStruct(method, path, request)
}
// RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy.
func (request ListSteeringPoliciesRequest) RetryPolicy() *common.RetryPolicy {
return request.RequestMetadata.RetryPolicy
}
// ListSteeringPoliciesResponse wrapper for the ListSteeringPolicies operation
type ListSteeringPoliciesResponse struct {
// The underlying http response
RawResponse *http.Response
// A list of []SteeringPolicySummary instances
Items []SteeringPolicySummary `presentIn:"body"`
// For list pagination. When this header appears in the response, additional pages
// of results remain. For important details about how pagination works,
// see List Pagination (https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
OpcNextPage *string `presentIn:"header" name:"opc-next-page"`
// The total number of items that match the query.
OpcTotalItems *int `presentIn:"header" name:"opc-total-items"`
// Unique Oracle-assigned identifier for the request. If you need to
// contact Oracle about a particular request, please provide the request
// ID.
OpcRequestId *string `presentIn:"header" name:"opc-request-id"`
}
func (response ListSteeringPoliciesResponse) String() string {
return common.PointerString(response)
}
// HTTPResponse implements the OCIResponse interface
func (response ListSteeringPoliciesResponse) HTTPResponse() *http.Response {
return response.RawResponse
}
// ListSteeringPoliciesSortByEnum Enum with underlying type: string
type ListSteeringPoliciesSortByEnum string
// Set of constants representing the allowable values for ListSteeringPoliciesSortByEnum
const (
ListSteeringPoliciesSortByDisplayname ListSteeringPoliciesSortByEnum = "displayName"
ListSteeringPoliciesSortByTimecreated ListSteeringPoliciesSortByEnum = "timeCreated"
ListSteeringPoliciesSortByTemplate ListSteeringPoliciesSortByEnum = "template"
)
var mappingListSteeringPoliciesSortBy = map[string]ListSteeringPoliciesSortByEnum{
"displayName": ListSteeringPoliciesSortByDisplayname,
"timeCreated": ListSteeringPoliciesSortByTimecreated,
"template": ListSteeringPoliciesSortByTemplate,
}
// GetListSteeringPoliciesSortByEnumValues Enumerates the set of values for ListSteeringPoliciesSortByEnum
func GetListSteeringPoliciesSortByEnumValues() []ListSteeringPoliciesSortByEnum {
values := make([]ListSteeringPoliciesSortByEnum, 0)
for _, v := range mappingListSteeringPoliciesSortBy {
values = append(values, v)
}
return values
}
// ListSteeringPoliciesSortOrderEnum Enum with underlying type: string
type ListSteeringPoliciesSortOrderEnum string
// Set of constants representing the allowable values for ListSteeringPoliciesSortOrderEnum
const (
ListSteeringPoliciesSortOrderAsc ListSteeringPoliciesSortOrderEnum = "ASC"
ListSteeringPoliciesSortOrderDesc ListSteeringPoliciesSortOrderEnum = "DESC"
)
var mappingListSteeringPoliciesSortOrder = map[string]ListSteeringPoliciesSortOrderEnum{
"ASC": ListSteeringPoliciesSortOrderAsc,
"DESC": ListSteeringPoliciesSortOrderDesc,
}
// GetListSteeringPoliciesSortOrderEnumValues Enumerates the set of values for ListSteeringPoliciesSortOrderEnum
func GetListSteeringPoliciesSortOrderEnumValues() []ListSteeringPoliciesSortOrderEnum {
values := make([]ListSteeringPoliciesSortOrderEnum, 0)
for _, v := range mappingListSteeringPoliciesSortOrder {
values = append(values, v)
}
return values
}