Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump to ocm-api-model 0.0.385 #980

Merged
merged 1 commit into from
Jul 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export PATH := $(LOCAL_BIN_PATH):$(PATH)
export CGO_ENABLED=0

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

# Details of the metamodel to use:
Expand Down
53 changes: 53 additions & 0 deletions clustersmgmt/v1/gcp_client.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
/*
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/clustersmgmt/v1

import (
"net/http"
"path"
)

// GCPClient is the client of the 'GCP' resource.
//
// Manages the collection of gcp endpoints.
type GCPClient struct {
transport http.RoundTripper
path string
}

// NewGCPClient creates a new client for the 'GCP'
// resource using the given transport to send the requests and receive the
// responses.
func NewGCPClient(transport http.RoundTripper, path string) *GCPClient {
return &GCPClient{
transport: transport,
path: path,
}
}

// WifConfigs returns the target 'wif_configs' resource.
//
// Reference to the resource that manages wif_configs
func (c *GCPClient) WifConfigs() *WifConfigsClient {
return NewWifConfigsClient(
c.transport,
path.Join(c.path, "wif_configs"),
)
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,3 @@ limitations under the License.
// your changes will be lost when the file is generated again.

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

import "io"

func writeWifTemplateGetRequest(request *WifTemplateGetRequest, writer io.Writer) error {
return nil
}
func readWifTemplateGetResponse(response *WifTemplateGetResponse, reader io.Reader) error {
var err error
response.body, err = UnmarshalWifTemplate(reader)
return err
}
34,167 changes: 17,033 additions & 17,134 deletions clustersmgmt/v1/openapi.go

Large diffs are not rendered by default.

30 changes: 10 additions & 20 deletions clustersmgmt/v1/root_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,16 @@ func (c *Client) DNSDomains() *DNSDomainsClient {
)
}

// GCP returns the target 'GCP' resource.
//
// Reference to the resource that manages the collection of gcp endpoints.
func (c *Client) GCP() *GCPClient {
return NewGCPClient(
c.transport,
path.Join(c.path, "gcp"),
)
}

// GCPInquiries returns the target 'GCP_inquiries' resource.
//
// Reference to the resource that manages the collection of gcp inquiries.
Expand Down Expand Up @@ -270,23 +280,3 @@ func (c *Client) Versions() *VersionsClient {
path.Join(c.path, "versions"),
)
}

// WifConfigs returns the target 'wif_configs' resource.
//
// Reference to the resource that manages wif_configs
func (c *Client) WifConfigs() *WifConfigsClient {
return NewWifConfigsClient(
c.transport,
path.Join(c.path, "wif_configs"),
)
}

// WifTemplates returns the target 'wif_template' resource.
//
// Reference to the resource that manages wif_templates
func (c *Client) WifTemplates() *WifTemplateClient {
return NewWifTemplateClient(
c.transport,
path.Join(c.path, "wif_templates"),
)
}
105 changes: 0 additions & 105 deletions clustersmgmt/v1/wif_template_builder.go

This file was deleted.

Loading
Loading