-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: bump to ocm-api-model 0.0.385
- Loading branch information
Showing
27 changed files
with
34,611 additions
and
37,516 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"), | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.