diff --git a/go.mod b/go.mod index caef8ad3a4..e952a3483c 100644 --- a/go.mod +++ b/go.mod @@ -29,7 +29,7 @@ require ( github.com/nathan-fiscaletti/consolesize-go v0.0.0-20210105204122-a87d9f614b9d github.com/onsi/ginkgo/v2 v2.17.1 github.com/onsi/gomega v1.30.0 - github.com/openshift-online/ocm-api-model/clientapi v0.0.438 + github.com/openshift-online/ocm-api-model/clientapi v0.0.440 github.com/openshift-online/ocm-common v0.0.31 github.com/openshift-online/ocm-sdk-go v0.1.483 github.com/pkg/errors v0.9.1 diff --git a/go.sum b/go.sum index 7194e5a724..4220b5de4e 100644 --- a/go.sum +++ b/go.sum @@ -274,8 +274,8 @@ github.com/onsi/ginkgo/v2 v2.17.1 h1:V++EzdbhI4ZV4ev0UTIj0PzhzOcReJFyJaLjtSF55M8 github.com/onsi/ginkgo/v2 v2.17.1/go.mod h1:llBI3WDLL9Z6taip6f33H76YcWtJv+7R3HigUjbIBOs= github.com/onsi/gomega v1.30.0 h1:hvMK7xYz4D3HapigLTeGdId/NcfQx1VHMJc60ew99+8= github.com/onsi/gomega v1.30.0/go.mod h1:9sxs+SwGrKI0+PWe4Fxa9tFQQBG5xSsSbMXOI8PPpoQ= -github.com/openshift-online/ocm-api-model/clientapi v0.0.438 h1:FEVoF5wpsb82XI+u8yrTBBe+RmwrwKK5lL4ldw4v9v4= -github.com/openshift-online/ocm-api-model/clientapi v0.0.438/go.mod h1:fZwy5HY2URG9nrExvQeXrDU/08TGqZ16f8oymVEN5lo= +github.com/openshift-online/ocm-api-model/clientapi v0.0.440 h1:BGWikczo8UuSvzEkoTf6q9iodg/pC7ibfvn5bvuD5c0= +github.com/openshift-online/ocm-api-model/clientapi v0.0.440/go.mod h1:fZwy5HY2URG9nrExvQeXrDU/08TGqZ16f8oymVEN5lo= github.com/openshift-online/ocm-api-model/model v0.0.438 h1:etxY6kxlLv8OJ+LXsMPAe/q8BaovLY1BJMzTNbcwGpI= github.com/openshift-online/ocm-api-model/model v0.0.438/go.mod h1:PQIoq6P8Vlb7goOdRMLK8nJY+B7HH0RTqYAa4kyidTE= github.com/openshift-online/ocm-common v0.0.31 h1:csxB4UQAUhwhDOVBmOzUKgtemuwV9rhCkzMoeFX8zCQ= diff --git a/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_application_builder.go b/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_application_builder.go index a634ed7759..5ab4bc4fdd 100644 --- a/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_application_builder.go +++ b/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_application_builder.go @@ -22,8 +22,8 @@ package v1 // github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v // Represents an application that can be configured for log forwarding. type LogForwarderApplicationBuilder struct { fieldSet_ []bool - id string - state string + name string + enabled bool } // NewLogForwarderApplication creates a new builder of 'log_forwarder_application' objects. @@ -46,22 +46,22 @@ func (b *LogForwarderApplicationBuilder) Empty() bool { return true } -// ID sets the value of the 'ID' attribute to the given value. -func (b *LogForwarderApplicationBuilder) ID(value string) *LogForwarderApplicationBuilder { +// Enabled sets the value of the 'enabled' attribute to the given value. +func (b *LogForwarderApplicationBuilder) Enabled(value bool) *LogForwarderApplicationBuilder { if len(b.fieldSet_) == 0 { b.fieldSet_ = make([]bool, 2) } - b.id = value + b.enabled = value b.fieldSet_[0] = true return b } -// State sets the value of the 'state' attribute to the given value. -func (b *LogForwarderApplicationBuilder) State(value string) *LogForwarderApplicationBuilder { +// Name sets the value of the 'name' attribute to the given value. +func (b *LogForwarderApplicationBuilder) Name(value string) *LogForwarderApplicationBuilder { if len(b.fieldSet_) == 0 { b.fieldSet_ = make([]bool, 2) } - b.state = value + b.name = value b.fieldSet_[1] = true return b } @@ -75,8 +75,8 @@ func (b *LogForwarderApplicationBuilder) Copy(object *LogForwarderApplication) * b.fieldSet_ = make([]bool, len(object.fieldSet_)) copy(b.fieldSet_, object.fieldSet_) } - b.id = object.id - b.state = object.state + b.enabled = object.enabled + b.name = object.name return b } @@ -87,7 +87,7 @@ func (b *LogForwarderApplicationBuilder) Build() (object *LogForwarderApplicatio object.fieldSet_ = make([]bool, len(b.fieldSet_)) copy(object.fieldSet_, b.fieldSet_) } - object.id = b.id - object.state = b.state + object.enabled = b.enabled + object.name = b.name return } diff --git a/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_application_type.go b/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_application_type.go index 24e43c5a0c..c9924d4b89 100644 --- a/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_application_type.go +++ b/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_application_type.go @@ -24,8 +24,8 @@ package v1 // github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v // Represents an application that can be configured for log forwarding. type LogForwarderApplication struct { fieldSet_ []bool - id string - state string + name string + enabled bool } // Empty returns true if the object is empty, i.e. no attribute has a value. @@ -41,48 +41,48 @@ func (o *LogForwarderApplication) Empty() bool { return true } -// ID returns the value of the 'ID' attribute, or +// Enabled returns the value of the 'enabled' attribute, or // the zero value of the type if the attribute doesn't have a value. // -// The identifier of the application. -func (o *LogForwarderApplication) ID() string { +// Indicates whether this application is available for use for log forwarding. +func (o *LogForwarderApplication) Enabled() bool { if o != nil && len(o.fieldSet_) > 0 && o.fieldSet_[0] { - return o.id + return o.enabled } - return "" + return false } -// GetID returns the value of the 'ID' attribute and +// GetEnabled returns the value of the 'enabled' attribute and // a flag indicating if the attribute has a value. // -// The identifier of the application. -func (o *LogForwarderApplication) GetID() (value string, ok bool) { +// Indicates whether this application is available for use for log forwarding. +func (o *LogForwarderApplication) GetEnabled() (value bool, ok bool) { ok = o != nil && len(o.fieldSet_) > 0 && o.fieldSet_[0] if ok { - value = o.id + value = o.enabled } return } -// State returns the value of the 'state' attribute, or +// Name returns the value of the 'name' attribute, or // the zero value of the type if the attribute doesn't have a value. // -// Indicates whether this application is available for use for log forwarding. -func (o *LogForwarderApplication) State() string { +// The name of the application. +func (o *LogForwarderApplication) Name() string { if o != nil && len(o.fieldSet_) > 1 && o.fieldSet_[1] { - return o.state + return o.name } return "" } -// GetState returns the value of the 'state' attribute and +// GetName returns the value of the 'name' attribute and // a flag indicating if the attribute has a value. // -// Indicates whether this application is available for use for log forwarding. -func (o *LogForwarderApplication) GetState() (value string, ok bool) { +// The name of the application. +func (o *LogForwarderApplication) GetName() (value string, ok bool) { ok = o != nil && len(o.fieldSet_) > 1 && o.fieldSet_[1] if ok { - value = o.state + value = o.name } return } diff --git a/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_application_type_json.go b/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_application_type_json.go index f2ed71fd64..67ba851f88 100644 --- a/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_application_type_json.go +++ b/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_application_type_json.go @@ -47,8 +47,8 @@ func WriteLogForwarderApplication(object *LogForwarderApplication, stream *jsoni if count > 0 { stream.WriteMore() } - stream.WriteObjectField("id") - stream.WriteString(object.id) + stream.WriteObjectField("enabled") + stream.WriteBool(object.enabled) count++ } present_ = len(object.fieldSet_) > 1 && object.fieldSet_[1] @@ -56,8 +56,8 @@ func WriteLogForwarderApplication(object *LogForwarderApplication, stream *jsoni if count > 0 { stream.WriteMore() } - stream.WriteObjectField("state") - stream.WriteString(object.state) + stream.WriteObjectField("name") + stream.WriteString(object.name) } stream.WriteObjectEnd() } @@ -85,13 +85,13 @@ func ReadLogForwarderApplication(iterator *jsoniter.Iterator) *LogForwarderAppli break } switch field { - case "id": - value := iterator.ReadString() - object.id = value + case "enabled": + value := iterator.ReadBool() + object.enabled = value object.fieldSet_[0] = true - case "state": + case "name": value := iterator.ReadString() - object.state = value + object.name = value object.fieldSet_[1] = true default: iterator.ReadAny() diff --git a/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_builder.go b/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_builder.go index f268f0f288..b99d19d6d9 100644 --- a/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_builder.go +++ b/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_builder.go @@ -26,7 +26,7 @@ type LogForwarderBuilder struct { href string s3 *LogForwarderS3ConfigBuilder applications []string - cloudWatch *LogForwarderCloudWatchConfigBuilder + cloudwatch *LogForwarderCloudWatchConfigBuilder clusterID string groups []*LogForwarderGroupBuilder status *LogForwarderStatusBuilder @@ -109,14 +109,14 @@ func (b *LogForwarderBuilder) Applications(values ...string) *LogForwarderBuilde return b } -// CloudWatch sets the value of the 'cloud_watch' attribute to the given value. +// Cloudwatch sets the value of the 'cloudwatch' attribute to the given value. // // CloudWatch configuration for log forwarding. -func (b *LogForwarderBuilder) CloudWatch(value *LogForwarderCloudWatchConfigBuilder) *LogForwarderBuilder { +func (b *LogForwarderBuilder) Cloudwatch(value *LogForwarderCloudWatchConfigBuilder) *LogForwarderBuilder { if len(b.fieldSet_) == 0 { b.fieldSet_ = make([]bool, 9) } - b.cloudWatch = value + b.cloudwatch = value if value != nil { b.fieldSet_[5] = true } else { @@ -184,10 +184,10 @@ func (b *LogForwarderBuilder) Copy(object *LogForwarder) *LogForwarderBuilder { } else { b.applications = nil } - if object.cloudWatch != nil { - b.cloudWatch = NewLogForwarderCloudWatchConfig().Copy(object.cloudWatch) + if object.cloudwatch != nil { + b.cloudwatch = NewLogForwarderCloudWatchConfig().Copy(object.cloudwatch) } else { - b.cloudWatch = nil + b.cloudwatch = nil } b.clusterID = object.clusterID if object.groups != nil { @@ -225,8 +225,8 @@ func (b *LogForwarderBuilder) Build() (object *LogForwarder, err error) { object.applications = make([]string, len(b.applications)) copy(object.applications, b.applications) } - if b.cloudWatch != nil { - object.cloudWatch, err = b.cloudWatch.Build() + if b.cloudwatch != nil { + object.cloudwatch, err = b.cloudwatch.Build() if err != nil { return } diff --git a/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_group_versions_builder.go b/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_group_versions_builder.go index 5aa1c38a0d..9092ee270a 100644 --- a/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_group_versions_builder.go +++ b/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_group_versions_builder.go @@ -22,9 +22,9 @@ package v1 // github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v // Represents a log forwarder group versions configuration. type LogForwarderGroupVersionsBuilder struct { fieldSet_ []bool - id string - state string + name string versions []*LogForwarderGroupVersionBuilder + enabled bool } // NewLogForwarderGroupVersions creates a new builder of 'log_forwarder_group_versions' objects. @@ -47,22 +47,22 @@ func (b *LogForwarderGroupVersionsBuilder) Empty() bool { return true } -// ID sets the value of the 'ID' attribute to the given value. -func (b *LogForwarderGroupVersionsBuilder) ID(value string) *LogForwarderGroupVersionsBuilder { +// Enabled sets the value of the 'enabled' attribute to the given value. +func (b *LogForwarderGroupVersionsBuilder) Enabled(value bool) *LogForwarderGroupVersionsBuilder { if len(b.fieldSet_) == 0 { b.fieldSet_ = make([]bool, 3) } - b.id = value + b.enabled = value b.fieldSet_[0] = true return b } -// State sets the value of the 'state' attribute to the given value. -func (b *LogForwarderGroupVersionsBuilder) State(value string) *LogForwarderGroupVersionsBuilder { +// Name sets the value of the 'name' attribute to the given value. +func (b *LogForwarderGroupVersionsBuilder) Name(value string) *LogForwarderGroupVersionsBuilder { if len(b.fieldSet_) == 0 { b.fieldSet_ = make([]bool, 3) } - b.state = value + b.name = value b.fieldSet_[1] = true return b } @@ -87,8 +87,8 @@ func (b *LogForwarderGroupVersionsBuilder) Copy(object *LogForwarderGroupVersion b.fieldSet_ = make([]bool, len(object.fieldSet_)) copy(b.fieldSet_, object.fieldSet_) } - b.id = object.id - b.state = object.state + b.enabled = object.enabled + b.name = object.name if object.versions != nil { b.versions = make([]*LogForwarderGroupVersionBuilder, len(object.versions)) for i, v := range object.versions { @@ -107,8 +107,8 @@ func (b *LogForwarderGroupVersionsBuilder) Build() (object *LogForwarderGroupVer object.fieldSet_ = make([]bool, len(b.fieldSet_)) copy(object.fieldSet_, b.fieldSet_) } - object.id = b.id - object.state = b.state + object.enabled = b.enabled + object.name = b.name if b.versions != nil { object.versions = make([]*LogForwarderGroupVersion, len(b.versions)) for i, v := range b.versions { diff --git a/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_group_versions_type.go b/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_group_versions_type.go index b47b943618..89851422dc 100644 --- a/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_group_versions_type.go +++ b/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_group_versions_type.go @@ -24,9 +24,9 @@ package v1 // github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v // Represents a log forwarder group versions configuration. type LogForwarderGroupVersions struct { fieldSet_ []bool - id string - state string + name string versions []*LogForwarderGroupVersion + enabled bool } // Empty returns true if the object is empty, i.e. no attribute has a value. @@ -42,48 +42,48 @@ func (o *LogForwarderGroupVersions) Empty() bool { return true } -// ID returns the value of the 'ID' attribute, or +// Enabled returns the value of the 'enabled' attribute, or // the zero value of the type if the attribute doesn't have a value. // -// The identifier of the log forwarder group. -func (o *LogForwarderGroupVersions) ID() string { +// Indicates whether this group is available for use for log forwarding. +func (o *LogForwarderGroupVersions) Enabled() bool { if o != nil && len(o.fieldSet_) > 0 && o.fieldSet_[0] { - return o.id + return o.enabled } - return "" + return false } -// GetID returns the value of the 'ID' attribute and +// GetEnabled returns the value of the 'enabled' attribute and // a flag indicating if the attribute has a value. // -// The identifier of the log forwarder group. -func (o *LogForwarderGroupVersions) GetID() (value string, ok bool) { +// Indicates whether this group is available for use for log forwarding. +func (o *LogForwarderGroupVersions) GetEnabled() (value bool, ok bool) { ok = o != nil && len(o.fieldSet_) > 0 && o.fieldSet_[0] if ok { - value = o.id + value = o.enabled } return } -// State returns the value of the 'state' attribute, or +// Name returns the value of the 'name' attribute, or // the zero value of the type if the attribute doesn't have a value. // -// Indicates whether this group is available for use for log forwarding. -func (o *LogForwarderGroupVersions) State() string { +// The name of the log forwarder group. +func (o *LogForwarderGroupVersions) Name() string { if o != nil && len(o.fieldSet_) > 1 && o.fieldSet_[1] { - return o.state + return o.name } return "" } -// GetState returns the value of the 'state' attribute and +// GetName returns the value of the 'name' attribute and // a flag indicating if the attribute has a value. // -// Indicates whether this group is available for use for log forwarding. -func (o *LogForwarderGroupVersions) GetState() (value string, ok bool) { +// The name of the log forwarder group. +func (o *LogForwarderGroupVersions) GetName() (value string, ok bool) { ok = o != nil && len(o.fieldSet_) > 1 && o.fieldSet_[1] if ok { - value = o.state + value = o.name } return } diff --git a/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_group_versions_type_json.go b/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_group_versions_type_json.go index caab98a1f3..6730c6d98a 100644 --- a/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_group_versions_type_json.go +++ b/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_group_versions_type_json.go @@ -47,8 +47,8 @@ func WriteLogForwarderGroupVersions(object *LogForwarderGroupVersions, stream *j if count > 0 { stream.WriteMore() } - stream.WriteObjectField("id") - stream.WriteString(object.id) + stream.WriteObjectField("enabled") + stream.WriteBool(object.enabled) count++ } present_ = len(object.fieldSet_) > 1 && object.fieldSet_[1] @@ -56,8 +56,8 @@ func WriteLogForwarderGroupVersions(object *LogForwarderGroupVersions, stream *j if count > 0 { stream.WriteMore() } - stream.WriteObjectField("state") - stream.WriteString(object.state) + stream.WriteObjectField("name") + stream.WriteString(object.name) count++ } present_ = len(object.fieldSet_) > 2 && object.fieldSet_[2] && object.versions != nil @@ -94,13 +94,13 @@ func ReadLogForwarderGroupVersions(iterator *jsoniter.Iterator) *LogForwarderGro break } switch field { - case "id": - value := iterator.ReadString() - object.id = value + case "enabled": + value := iterator.ReadBool() + object.enabled = value object.fieldSet_[0] = true - case "state": + case "name": value := iterator.ReadString() - object.state = value + object.name = value object.fieldSet_[1] = true case "versions": value := ReadLogForwarderGroupVersionList(iterator) diff --git a/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_type.go b/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_type.go index a467d43c57..aec3aaad15 100644 --- a/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_type.go +++ b/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_type.go @@ -40,7 +40,7 @@ type LogForwarder struct { href string s3 *LogForwarderS3Config applications []string - cloudWatch *LogForwarderCloudWatchConfig + cloudwatch *LogForwarderCloudWatchConfig clusterID string groups []*LogForwarderGroup status *LogForwarderStatus @@ -159,25 +159,25 @@ func (o *LogForwarder) GetApplications() (value []string, ok bool) { return } -// CloudWatch returns the value of the 'cloud_watch' attribute, or +// Cloudwatch returns the value of the 'cloudwatch' attribute, or // the zero value of the type if the attribute doesn't have a value. // // CloudWatch configuration for log forwarding destination. -func (o *LogForwarder) CloudWatch() *LogForwarderCloudWatchConfig { +func (o *LogForwarder) Cloudwatch() *LogForwarderCloudWatchConfig { if o != nil && len(o.fieldSet_) > 5 && o.fieldSet_[5] { - return o.cloudWatch + return o.cloudwatch } return nil } -// GetCloudWatch returns the value of the 'cloud_watch' attribute and +// GetCloudwatch returns the value of the 'cloudwatch' attribute and // a flag indicating if the attribute has a value. // // CloudWatch configuration for log forwarding destination. -func (o *LogForwarder) GetCloudWatch() (value *LogForwarderCloudWatchConfig, ok bool) { +func (o *LogForwarder) GetCloudwatch() (value *LogForwarderCloudWatchConfig, ok bool) { ok = o != nil && len(o.fieldSet_) > 5 && o.fieldSet_[5] if ok { - value = o.cloudWatch + value = o.cloudwatch } return } diff --git a/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_type_json.go b/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_type_json.go index 6db08e58ee..2da23b31b5 100644 --- a/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_type_json.go +++ b/vendor/github.com/openshift-online/ocm-api-model/clientapi/clustersmgmt/v1/log_forwarder_type_json.go @@ -83,13 +83,13 @@ func WriteLogForwarder(object *LogForwarder, stream *jsoniter.Stream) { WriteStringList(object.applications, stream) count++ } - present_ = len(object.fieldSet_) > 5 && object.fieldSet_[5] && object.cloudWatch != nil + present_ = len(object.fieldSet_) > 5 && object.fieldSet_[5] && object.cloudwatch != nil if present_ { if count > 0 { stream.WriteMore() } - stream.WriteObjectField("cloud_watch") - WriteLogForwarderCloudWatchConfig(object.cloudWatch, stream) + stream.WriteObjectField("cloudwatch") + WriteLogForwarderCloudWatchConfig(object.cloudwatch, stream) count++ } present_ = len(object.fieldSet_) > 6 && object.fieldSet_[6] @@ -163,9 +163,9 @@ func ReadLogForwarder(iterator *jsoniter.Iterator) *LogForwarder { value := ReadStringList(iterator) object.applications = value object.fieldSet_[4] = true - case "cloud_watch": + case "cloudwatch": value := ReadLogForwarderCloudWatchConfig(iterator) - object.cloudWatch = value + object.cloudwatch = value object.fieldSet_[5] = true case "cluster_id": value := iterator.ReadString() diff --git a/vendor/modules.txt b/vendor/modules.txt index 69020fc375..5326381e66 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -416,7 +416,7 @@ github.com/onsi/gomega/matchers/support/goraph/edge github.com/onsi/gomega/matchers/support/goraph/node github.com/onsi/gomega/matchers/support/goraph/util github.com/onsi/gomega/types -# github.com/openshift-online/ocm-api-model/clientapi v0.0.438 +# github.com/openshift-online/ocm-api-model/clientapi v0.0.440 ## explicit; go 1.23.0 github.com/openshift-online/ocm-api-model/clientapi/accesstransparency/v1 github.com/openshift-online/ocm-api-model/clientapi/accountsmgmt/v1