Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
Signed-off-by: Tamal Saha <[email protected]>
  • Loading branch information
tamalsaha committed Jun 28, 2024
1 parent c72f450 commit 4f7bce2
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 74 deletions.
25 changes: 0 additions & 25 deletions charts/ace/values.openapiv3_schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21413,33 +21413,8 @@ properties:
properties:
applicationId:
type: string
billingDetails:
properties:
resourceUsageId:
type: string
required:
- resourceUsageId
type: object
plan:
properties:
name:
type: string
product:
type: string
publisher:
type: string
version:
type: string
required:
- name
- product
- publisher
- version
type: object
required:
- applicationId
- billingDetails
- plan
type: object
gcp:
type: object
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.22.1
toolchain go1.22.4

require (
go.bytebuilders.dev/resource-model v0.0.11-0.20240627134137-bedc6f0fb031
go.bytebuilders.dev/resource-model v0.0.11-0.20240628053759-24d56e4753c4
go.openviz.dev/installer v0.0.0-20230802073927-bc7c337886e9
gomodules.xyz/go-sh v0.1.0
k8s.io/api v0.30.1
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,8 @@ github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ=
github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0=
github.com/zeebo/xxh3 v1.0.2 h1:xZmwmqxHZA8AI603jOQ0tMqmBr9lPeFwGg6d+xy9DC0=
github.com/zeebo/xxh3 v1.0.2/go.mod h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA=
go.bytebuilders.dev/resource-model v0.0.11-0.20240627134137-bedc6f0fb031 h1:3yuRQCwfA7wBqj8EEifR38WFwNWJOeQ3PQ9U8doIknw=
go.bytebuilders.dev/resource-model v0.0.11-0.20240627134137-bedc6f0fb031/go.mod h1:Jvdo0kmQ3gJuwjfDL3GEt4YFDqsFgenqP9jZrs0+cnw=
go.bytebuilders.dev/resource-model v0.0.11-0.20240628053759-24d56e4753c4 h1:mVSwHYdYVVqVC6DXCFclaOqxMXvEh+3VAOWLpVsdS0A=
go.bytebuilders.dev/resource-model v0.0.11-0.20240628053759-24d56e4753c4/go.mod h1:Jvdo0kmQ3gJuwjfDL3GEt4YFDqsFgenqP9jZrs0+cnw=
go.openviz.dev/installer v0.0.0-20230802073927-bc7c337886e9 h1:1JgvOtxky9aqaLA+yzrszl+m4ymF96dK18J++sa/C5c=
go.openviz.dev/installer v0.0.0-20230802073927-bc7c337886e9/go.mod h1:kC3TEo+NqZPmxlpiIOcMkg2w4516gFFVYmo2rjwjslg=
go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto=
Expand Down
26 changes: 1 addition & 25 deletions schema/ace-options/values.openapiv3_schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1205,36 +1205,12 @@ properties:
- product-code
type: object
azure:
description: https://learn.microsoft.com/en-us/azure/azure-resource-manager/managed-applications/publish-notifications
properties:
applicationId:
type: string
billingDetails:
properties:
resourceUsageId:
type: string
required:
- resourceUsageId
type: object
plan:
properties:
name:
type: string
product:
type: string
publisher:
type: string
version:
type: string
required:
- name
- product
- publisher
- version
type: object
required:
- applicationId
- billingDetails
- plan
type: object
gcp:
type: object
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ type AceSetupInlineConfig struct {
// +optional
SelfManagement SelfManagement `json:"selfManagement"`
// +optional
CloudCredential cloudv1alpha1.Credential `json:"cloudCredential"`
CloudCredential *cloudv1alpha1.Credential `json:"cloudCredential,omitempty"`
// +optional
Cluster CAPIClusterConfig `json:"cluster,omitempty"`
Cluster *CAPIClusterConfig `json:"cluster,omitempty"`
// +optional
Subscription MarketplaceSubscriptionInfo `json:"subscription,omitempty"`
Subscription *MarketplaceSubscriptionInfo `json:"subscription,omitempty"`
}

type AcePlatformAdmin struct {
Expand Down Expand Up @@ -106,21 +106,12 @@ type AWSMarSubscriptionInfo struct {
OfferIdentifier string `json:"offer-identifier"`
}

// https://learn.microsoft.com/en-us/azure/azure-resource-manager/managed-applications/publish-notifications
type AzureSubscriptionInfo struct {
ApplicationID string `json:"applicationId"`
BillingDetails AzureBillingDetails `json:"billingDetails"`
Plan AzurePlan `json:"plan"`
}

type AzureBillingDetails struct {
ResourceUsageID string `json:"resourceUsageId"`
}

type AzurePlan struct {
Publisher string `json:"publisher"`
Product string `json:"product"`
Name string `json:"name"`
Version string `json:"version"`
ApplicationID string `json:"applicationId"`
// SubscriptionID string `json:"subscriptionId"`
// ResourceGroupName string `json:"resourceGroupName"`
// ApplicationName string `json:"applicationName"`
}

type GCPSubscriptionInfo struct{}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ github.com/yudai/golcs
# github.com/zeebo/xxh3 v1.0.2
## explicit; go 1.17
github.com/zeebo/xxh3
# go.bytebuilders.dev/resource-model v0.0.11-0.20240627134137-bedc6f0fb031
# go.bytebuilders.dev/resource-model v0.0.11-0.20240628053759-24d56e4753c4
## explicit; go 1.22.1
go.bytebuilders.dev/resource-model/apis/cloud
go.bytebuilders.dev/resource-model/apis/cloud/v1alpha1
Expand Down

0 comments on commit 4f7bce2

Please sign in to comment.