// Copyright (c) 2016, 2018, 2025, Oracle and/or its affiliates. All rights reserved. // This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. // Code generated. DO NOT EDIT. package dns import ( "fmt" "net/http" "strings" "github.com/nrdcg/oci-go-sdk/common/v1065" ) // GetZoneRequest wrapper for the GetZone operation // // # See also // // Click https://docs.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/GetZone.go.html to see an example of how to use GetZoneRequest. type GetZoneRequest struct { // The name or OCID of the target zone. ZoneNameOrId *string `mandatory:"true" contributesTo:"path" name:"zoneNameOrId"` // The `If-None-Match` header field makes the request method conditional on // the absence of any current representation of the target resource, when // the field-value is `*`, or having a selected representation with an // entity-tag that does not match any of those listed in the field-value. IfNoneMatch *string `mandatory:"false" contributesTo:"header" name:"If-None-Match"` // The `If-Modified-Since` header field makes a GET or HEAD request method // conditional on the selected representation's modification date being more // recent than the date provided in the field-value. Transfer of the // selected representation's data is avoided if that data has not changed. IfModifiedSince *string `mandatory:"false" contributesTo:"header" name:"If-Modified-Since"` // 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"` // Specifies to operate only on resources that have a matching DNS scope. Scope GetZoneScopeEnum `mandatory:"false" contributesTo:"query" name:"scope" omitEmpty:"true"` // The OCID of the view the zone is associated with. Required when accessing a private zone by name. ViewId *string `mandatory:"false" contributesTo:"query" name:"viewId"` // The OCID of the compartment the zone belongs to. // This parameter is deprecated and should be omitted. CompartmentId *string `mandatory:"false" contributesTo:"query" name:"compartmentId"` // 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 GetZoneRequest) String() string { return common.PointerString(request) } // HTTPRequest implements the OCIRequest interface func (request GetZoneRequest) HTTPRequest(method, path string, binaryRequestBody *common.OCIReadSeekCloser, extraHeaders map[string]string) (http.Request, error) { _, err := request.ValidateEnumValue() if err != nil { return http.Request{}, err } return common.MakeDefaultHTTPRequestWithTaggedStructAndExtraHeaders(method, path, request, extraHeaders) } // BinaryRequestBody implements the OCIRequest interface func (request GetZoneRequest) BinaryRequestBody() (*common.OCIReadSeekCloser, bool) { return nil, false } // RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy. func (request GetZoneRequest) RetryPolicy() *common.RetryPolicy { return request.RequestMetadata.RetryPolicy } // ValidateEnumValue returns an error when providing an unsupported enum value // This function is being called during constructing API request process // Not recommended for calling this function directly func (request GetZoneRequest) ValidateEnumValue() (bool, error) { errMessage := []string{} if _, ok := GetMappingGetZoneScopeEnum(string(request.Scope)); !ok && request.Scope != "" { errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for Scope: %s. Supported values are: %s.", request.Scope, strings.Join(GetGetZoneScopeEnumStringValues(), ","))) } if len(errMessage) > 0 { return true, fmt.Errorf("%s", strings.Join(errMessage, "\n")) } return false, nil } // GetZoneResponse wrapper for the GetZone operation type GetZoneResponse struct { // The underlying http response RawResponse *http.Response // The Zone instance Zone `presentIn:"body"` // 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"` // The current version of the resource, ending with a // representation-specific suffix. This value may be used in If-Match // and If-None-Match headers for later requests of the same resource. ETag *string `presentIn:"header" name:"etag"` } func (response GetZoneResponse) String() string { return common.PointerString(response) } // HTTPResponse implements the OCIResponse interface func (response GetZoneResponse) HTTPResponse() *http.Response { return response.RawResponse } // GetZoneScopeEnum Enum with underlying type: string type GetZoneScopeEnum string // Set of constants representing the allowable values for GetZoneScopeEnum const ( GetZoneScopeGlobal GetZoneScopeEnum = "GLOBAL" GetZoneScopePrivate GetZoneScopeEnum = "PRIVATE" ) var mappingGetZoneScopeEnum = map[string]GetZoneScopeEnum{ "GLOBAL": GetZoneScopeGlobal, "PRIVATE": GetZoneScopePrivate, } var mappingGetZoneScopeEnumLowerCase = map[string]GetZoneScopeEnum{ "global": GetZoneScopeGlobal, "private": GetZoneScopePrivate, } // GetGetZoneScopeEnumValues Enumerates the set of values for GetZoneScopeEnum func GetGetZoneScopeEnumValues() []GetZoneScopeEnum { values := make([]GetZoneScopeEnum, 0) for _, v := range mappingGetZoneScopeEnum { values = append(values, v) } return values } // GetGetZoneScopeEnumStringValues Enumerates the set of values in String for GetZoneScopeEnum func GetGetZoneScopeEnumStringValues() []string { return []string{ "GLOBAL", "PRIVATE", } } // GetMappingGetZoneScopeEnum performs case Insensitive comparison on enum value and return the desired enum func GetMappingGetZoneScopeEnum(val string) (GetZoneScopeEnum, bool) { enum, ok := mappingGetZoneScopeEnumLowerCase[strings.ToLower(val)] return enum, ok }