Initial code for the a1 implementation for go
[ric-plt/a1.git] / a1-go / pkg / restapi / operations / a1_mediator / a1_controller_delete_policy_type_urlbuilder.go
1 /*
2 ==================================================================================
3   Copyright (c) 2021 Samsung
4
5    Licensed under the Apache License, Version 2.0 (the "License");
6    you may not use this file except in compliance with the License.
7    You may obtain a copy of the License at
8
9        http://www.apache.org/licenses/LICENSE-2.0
10
11    Unless required by applicable law or agreed to in writing, software
12    distributed under the License is distributed on an "AS IS" BASIS,
13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14    See the License for the specific language governing permissions and
15    limitations under the License.
16
17    This source code is part of the near-RT RIC (RAN Intelligent Controller)
18    platform project (RICP).
19 ==================================================================================
20 */
21 // Code generated by go-swagger; DO NOT EDIT.
22
23 package a1_mediator
24
25 // This file was generated by the swagger tool.
26 // Editing this file might prove futile when you re-run the generate command
27
28 import (
29         "errors"
30         "net/url"
31         golangswaggerpaths "path"
32         "strings"
33
34         "github.com/go-openapi/swag"
35 )
36
37 // A1ControllerDeletePolicyTypeURL generates an URL for the a1 controller delete policy type operation
38 type A1ControllerDeletePolicyTypeURL struct {
39         PolicyTypeID int64
40
41         _basePath string
42         // avoid unkeyed usage
43         _ struct{}
44 }
45
46 // WithBasePath sets the base path for this url builder, only required when it's different from the
47 // base path specified in the swagger spec.
48 // When the value of the base path is an empty string
49 func (o *A1ControllerDeletePolicyTypeURL) WithBasePath(bp string) *A1ControllerDeletePolicyTypeURL {
50         o.SetBasePath(bp)
51         return o
52 }
53
54 // SetBasePath sets the base path for this url builder, only required when it's different from the
55 // base path specified in the swagger spec.
56 // When the value of the base path is an empty string
57 func (o *A1ControllerDeletePolicyTypeURL) SetBasePath(bp string) {
58         o._basePath = bp
59 }
60
61 // Build a url path and query string
62 func (o *A1ControllerDeletePolicyTypeURL) Build() (*url.URL, error) {
63         var _result url.URL
64
65         var _path = "/a1-p/policytypes/{policy_type_id}"
66
67         policyTypeID := swag.FormatInt64(o.PolicyTypeID)
68         if policyTypeID != "" {
69                 _path = strings.Replace(_path, "{policy_type_id}", policyTypeID, -1)
70         } else {
71                 return nil, errors.New("policyTypeId is required on A1ControllerDeletePolicyTypeURL")
72         }
73
74         _basePath := o._basePath
75         _result.Path = golangswaggerpaths.Join(_basePath, _path)
76
77         return &_result, nil
78 }
79
80 // Must is a helper function to panic when the url builder returns an error
81 func (o *A1ControllerDeletePolicyTypeURL) Must(u *url.URL, err error) *url.URL {
82         if err != nil {
83                 panic(err)
84         }
85         if u == nil {
86                 panic("url can't be nil")
87         }
88         return u
89 }
90
91 // String returns the string representation of the path with query string
92 func (o *A1ControllerDeletePolicyTypeURL) String() string {
93         return o.Must(o.Build()).String()
94 }
95
96 // BuildFull builds a full url with scheme, host, path and query string
97 func (o *A1ControllerDeletePolicyTypeURL) BuildFull(scheme, host string) (*url.URL, error) {
98         if scheme == "" {
99                 return nil, errors.New("scheme is required for a full url on A1ControllerDeletePolicyTypeURL")
100         }
101         if host == "" {
102                 return nil, errors.New("host is required for a full url on A1ControllerDeletePolicyTypeURL")
103         }
104
105         base, err := o.Build()
106         if err != nil {
107                 return nil, err
108         }
109
110         base.Scheme = scheme
111         base.Host = host
112         return base, nil
113 }
114
115 // StringFull returns the string representation of a complete url
116 func (o *A1ControllerDeletePolicyTypeURL) StringFull(scheme, host string) string {
117         return o.Must(o.BuildFull(scheme, host)).String()
118 }