Skip to content

Commit

Permalink
Merge pull request #750 from gdbranco/feat/sda-6704
Browse files Browse the repository at this point in the history
[SDA-6704] feat: bump api model and add delete protection example
  • Loading branch information
gdbranco authored Mar 30, 2023
2 parents b872f76 + e713cc1 commit f6d24b9
Show file tree
Hide file tree
Showing 32 changed files with 22,099 additions and 19,114 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
This document describes the relevant changes between releases of the OCM API
SDK.

## 0.1.328
- Update model to v0.0.269
- Add `DeleteProtection` resource to `Cluster` resource.

## 0.1.327
- Update model to v0.0.268
- Replace `OidcConfigId` for `OidcConfig` in `STS` resource.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
export CGO_ENABLED=0

# Details of the model to use:
model_version:=v0.0.268
model_version:=v0.0.269
model_url:=https://github.com/openshift-online/ocm-api-model.git

# Details of the metamodel to use:
Expand Down
2,988 changes: 1,530 additions & 1,458 deletions accountsmgmt/v1/openapi.go

Large diffs are not rendered by default.

147 changes: 147 additions & 0 deletions accountsmgmt/v1/quota_authorization_request_builder.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,147 @@
/*
Copyright (c) 2020 Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

// IMPORTANT: This file has been generated automatically, refrain from modifying it manually as all
// your changes will be lost when the file is generated again.

package v1 // github.com/openshift-online/ocm-sdk-go/accountsmgmt/v1

// QuotaAuthorizationRequestBuilder contains the data and logic needed to build 'quota_authorization_request' objects.
type QuotaAuthorizationRequestBuilder struct {
bitmap_ uint32
accountUsername string
availabilityZone string
displayName string
productID string
productCategory string
quotaVersion string
resources []*ReservedResourceBuilder
reserve bool
}

// NewQuotaAuthorizationRequest creates a new builder of 'quota_authorization_request' objects.
func NewQuotaAuthorizationRequest() *QuotaAuthorizationRequestBuilder {
return &QuotaAuthorizationRequestBuilder{}
}

// Empty returns true if the builder is empty, i.e. no attribute has a value.
func (b *QuotaAuthorizationRequestBuilder) Empty() bool {
return b == nil || b.bitmap_ == 0
}

// AccountUsername sets the value of the 'account_username' attribute to the given value.
func (b *QuotaAuthorizationRequestBuilder) AccountUsername(value string) *QuotaAuthorizationRequestBuilder {
b.accountUsername = value
b.bitmap_ |= 1
return b
}

// AvailabilityZone sets the value of the 'availability_zone' attribute to the given value.
func (b *QuotaAuthorizationRequestBuilder) AvailabilityZone(value string) *QuotaAuthorizationRequestBuilder {
b.availabilityZone = value
b.bitmap_ |= 2
return b
}

// DisplayName sets the value of the 'display_name' attribute to the given value.
func (b *QuotaAuthorizationRequestBuilder) DisplayName(value string) *QuotaAuthorizationRequestBuilder {
b.displayName = value
b.bitmap_ |= 4
return b
}

// ProductID sets the value of the 'product_ID' attribute to the given value.
func (b *QuotaAuthorizationRequestBuilder) ProductID(value string) *QuotaAuthorizationRequestBuilder {
b.productID = value
b.bitmap_ |= 8
return b
}

// ProductCategory sets the value of the 'product_category' attribute to the given value.
func (b *QuotaAuthorizationRequestBuilder) ProductCategory(value string) *QuotaAuthorizationRequestBuilder {
b.productCategory = value
b.bitmap_ |= 16
return b
}

// QuotaVersion sets the value of the 'quota_version' attribute to the given value.
func (b *QuotaAuthorizationRequestBuilder) QuotaVersion(value string) *QuotaAuthorizationRequestBuilder {
b.quotaVersion = value
b.bitmap_ |= 32
return b
}

// Reserve sets the value of the 'reserve' attribute to the given value.
func (b *QuotaAuthorizationRequestBuilder) Reserve(value bool) *QuotaAuthorizationRequestBuilder {
b.reserve = value
b.bitmap_ |= 64
return b
}

// Resources sets the value of the 'resources' attribute to the given values.
func (b *QuotaAuthorizationRequestBuilder) Resources(values ...*ReservedResourceBuilder) *QuotaAuthorizationRequestBuilder {
b.resources = make([]*ReservedResourceBuilder, len(values))
copy(b.resources, values)
b.bitmap_ |= 128
return b
}

// Copy copies the attributes of the given object into this builder, discarding any previous values.
func (b *QuotaAuthorizationRequestBuilder) Copy(object *QuotaAuthorizationRequest) *QuotaAuthorizationRequestBuilder {
if object == nil {
return b
}
b.bitmap_ = object.bitmap_
b.accountUsername = object.accountUsername
b.availabilityZone = object.availabilityZone
b.displayName = object.displayName
b.productID = object.productID
b.productCategory = object.productCategory
b.quotaVersion = object.quotaVersion
b.reserve = object.reserve
if object.resources != nil {
b.resources = make([]*ReservedResourceBuilder, len(object.resources))
for i, v := range object.resources {
b.resources[i] = NewReservedResource().Copy(v)
}
} else {
b.resources = nil
}
return b
}

// Build creates a 'quota_authorization_request' object using the configuration stored in the builder.
func (b *QuotaAuthorizationRequestBuilder) Build() (object *QuotaAuthorizationRequest, err error) {
object = new(QuotaAuthorizationRequest)
object.bitmap_ = b.bitmap_
object.accountUsername = b.accountUsername
object.availabilityZone = b.availabilityZone
object.displayName = b.displayName
object.productID = b.productID
object.productCategory = b.productCategory
object.quotaVersion = b.quotaVersion
object.reserve = b.reserve
if b.resources != nil {
object.resources = make([]*ReservedResource, len(b.resources))
for i, v := range b.resources {
object.resources[i], err = v.Build()
if err != nil {
return
}
}
}
return
}
71 changes: 71 additions & 0 deletions accountsmgmt/v1/quota_authorization_request_list_builder.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
/*
Copyright (c) 2020 Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

// IMPORTANT: This file has been generated automatically, refrain from modifying it manually as all
// your changes will be lost when the file is generated again.

package v1 // github.com/openshift-online/ocm-sdk-go/accountsmgmt/v1

// QuotaAuthorizationRequestListBuilder contains the data and logic needed to build
// 'quota_authorization_request' objects.
type QuotaAuthorizationRequestListBuilder struct {
items []*QuotaAuthorizationRequestBuilder
}

// NewQuotaAuthorizationRequestList creates a new builder of 'quota_authorization_request' objects.
func NewQuotaAuthorizationRequestList() *QuotaAuthorizationRequestListBuilder {
return new(QuotaAuthorizationRequestListBuilder)
}

// Items sets the items of the list.
func (b *QuotaAuthorizationRequestListBuilder) Items(values ...*QuotaAuthorizationRequestBuilder) *QuotaAuthorizationRequestListBuilder {
b.items = make([]*QuotaAuthorizationRequestBuilder, len(values))
copy(b.items, values)
return b
}

// Empty returns true if the list is empty.
func (b *QuotaAuthorizationRequestListBuilder) Empty() bool {
return b == nil || len(b.items) == 0
}

// Copy copies the items of the given list into this builder, discarding any previous items.
func (b *QuotaAuthorizationRequestListBuilder) Copy(list *QuotaAuthorizationRequestList) *QuotaAuthorizationRequestListBuilder {
if list == nil || list.items == nil {
b.items = nil
} else {
b.items = make([]*QuotaAuthorizationRequestBuilder, len(list.items))
for i, v := range list.items {
b.items[i] = NewQuotaAuthorizationRequest().Copy(v)
}
}
return b
}

// Build creates a list of 'quota_authorization_request' objects using the
// configuration stored in the builder.
func (b *QuotaAuthorizationRequestListBuilder) Build() (list *QuotaAuthorizationRequestList, err error) {
items := make([]*QuotaAuthorizationRequest, len(b.items))
for i, item := range b.items {
items[i], err = item.Build()
if err != nil {
return
}
}
list = new(QuotaAuthorizationRequestList)
list.items = items
return
}
75 changes: 75 additions & 0 deletions accountsmgmt/v1/quota_authorization_request_list_type_json.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
/*
Copyright (c) 2020 Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

// IMPORTANT: This file has been generated automatically, refrain from modifying it manually as all
// your changes will be lost when the file is generated again.

package v1 // github.com/openshift-online/ocm-sdk-go/accountsmgmt/v1

import (
"io"

jsoniter "github.com/json-iterator/go"
"github.com/openshift-online/ocm-sdk-go/helpers"
)

// MarshalQuotaAuthorizationRequestList writes a list of values of the 'quota_authorization_request' type to
// the given writer.
func MarshalQuotaAuthorizationRequestList(list []*QuotaAuthorizationRequest, writer io.Writer) error {
stream := helpers.NewStream(writer)
writeQuotaAuthorizationRequestList(list, stream)
err := stream.Flush()
if err != nil {
return err
}
return stream.Error
}

// writeQuotaAuthorizationRequestList writes a list of value of the 'quota_authorization_request' type to
// the given stream.
func writeQuotaAuthorizationRequestList(list []*QuotaAuthorizationRequest, stream *jsoniter.Stream) {
stream.WriteArrayStart()
for i, value := range list {
if i > 0 {
stream.WriteMore()
}
writeQuotaAuthorizationRequest(value, stream)
}
stream.WriteArrayEnd()
}

// UnmarshalQuotaAuthorizationRequestList reads a list of values of the 'quota_authorization_request' type
// from the given source, which can be a slice of bytes, a string or a reader.
func UnmarshalQuotaAuthorizationRequestList(source interface{}) (items []*QuotaAuthorizationRequest, err error) {
iterator, err := helpers.NewIterator(source)
if err != nil {
return
}
items = readQuotaAuthorizationRequestList(iterator)
err = iterator.Error
return
}

// readQuotaAuthorizationRequestList reads list of values of the ”quota_authorization_request' type from
// the given iterator.
func readQuotaAuthorizationRequestList(iterator *jsoniter.Iterator) []*QuotaAuthorizationRequest {
list := []*QuotaAuthorizationRequest{}
for iterator.ReadArray() {
item := readQuotaAuthorizationRequest(iterator)
list = append(list, item)
}
return list
}
Loading

0 comments on commit f6d24b9

Please sign in to comment.