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

CB-22456 Filling FreeIPa attribute in aws env response #79

Merged
merged 1 commit into from
Feb 12, 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 cdp-sdk-go/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
GO_FLAGS:=""

SWAGGER_REPO_RAW=https://raw.githubusercontent.com/cloudera/cdp-dev-docs/
API_DEFINITION_TAG ?= cdp-api-0.9.104
API_DEFINITION_TAG ?= cdp-api-0.9.105
SWAGGER=$(SWAGGER_REPO_RAW)/$(API_DEFINITION_TAG)/api-docs-beta/swagger

all: check-go test build
Expand Down
2 changes: 1 addition & 1 deletion cdp-sdk-go/resources/swagger/datahub.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ x-form-factors: public
x-cdp-releases: PUBLIC
x-audit: true
info:
version: 0.9.103 (BETA)
version: 0.9.104 (BETA)
title: Cloudera Data hub Service
license:
name: Apache 2.0
Expand Down
2 changes: 1 addition & 1 deletion cdp-sdk-go/resources/swagger/datalake.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ x-form-factors: public
x-cdp-releases: PUBLIC
x-audit: true
info:
version: 0.9.103 (BETA)
version: 0.9.104 (BETA)
title: Cloudera Datalake Service
license:
name: Apache 2.0
Expand Down
2 changes: 1 addition & 1 deletion cdp-sdk-go/resources/swagger/dw.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ x-products: CDP
x-form-factors: public,private
x-cdp-releases: PUBLIC
info:
version: 0.9.103 (BETA)
version: 0.9.104 (BETA)
title: Cloudera Data Warehouse [EXPERIMENTAL]
license:
name: Apache 2.0
Expand Down
2 changes: 1 addition & 1 deletion cdp-sdk-go/resources/swagger/environments.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ x-form-factors: public,private
x-cdp-releases: PUBLIC
x-audit: true
info:
version: 0.9.103 (BETA)
version: 0.9.104 (BETA)
title: Cloudera Environments Service
license:
name: Apache 2.0
Expand Down
2 changes: 1 addition & 1 deletion cdp-sdk-go/resources/swagger/iam.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ x-cdp-releases: PUBLIC
x-audit: true
x-extensions: pvcapipath
info:
version: 0.9.103 (BETA)
version: 0.9.104 (BETA)
title: Cloudera IAM Service
license:
name: Apache 2.0
Expand Down
2 changes: 1 addition & 1 deletion cdp-sdk-go/resources/swagger/ml.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ x-products: CDP
x-form-factors: public,private
x-cdp-releases: PUBLIC
info:
version: 0.9.103 (BETA)
version: 0.9.104 (BETA)
title: Cloudera Machine Learning
license:
name: Apache 2.0
Expand Down
19 changes: 19 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,21 @@ require (
github.com/bgentry/speakeasy v0.1.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/color v1.13.0 // indirect
github.com/felixge/httpsnoop v1.0.3 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/go-logr/logr v1.2.3 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/go-openapi/analysis v0.21.4 // indirect
github.com/go-openapi/inflect v0.19.0 // indirect
github.com/go-openapi/jsonpointer v0.19.6 // indirect
github.com/go-openapi/jsonreference v0.20.2 // indirect
github.com/go-openapi/loads v0.21.2 // indirect
github.com/go-openapi/spec v0.20.9 // indirect
github.com/go-swagger/go-swagger v0.30.5 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/gorilla/handlers v1.5.1 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-checkpoint v0.5.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
Expand All @@ -54,6 +59,7 @@ require (
github.com/hashicorp/go-uuid v1.0.3 // indirect
github.com/hashicorp/go-version v1.6.0 // indirect
github.com/hashicorp/hc-install v0.5.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/hashicorp/hcl/v2 v2.16.2 // indirect
github.com/hashicorp/logutils v1.0.0 // indirect
github.com/hashicorp/terraform-exec v0.18.1 // indirect
Expand All @@ -63,7 +69,11 @@ require (
github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d // indirect
github.com/huandu/xstrings v1.3.3 // indirect
github.com/imdario/mergo v0.3.13 // indirect
github.com/jessevdk/go-flags v1.5.0 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
Expand All @@ -76,12 +86,20 @@ require (
github.com/oklog/run v1.0.0 // indirect
github.com/oklog/ulid v1.3.1 // indirect
github.com/opentracing/opentracing-go v1.2.0 // indirect
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/posener/complete v1.2.3 // indirect
github.com/rogpeppe/go-internal v1.9.0 // indirect
github.com/russross/blackfriday v1.6.0 // indirect
github.com/shopspring/decimal v1.3.1 // indirect
github.com/spf13/afero v1.9.5 // indirect
github.com/spf13/cast v1.5.1 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/spf13/viper v1.16.0 // indirect
github.com/stretchr/objx v0.5.0 // indirect
github.com/subosito/gotenv v1.4.2 // indirect
github.com/toqueteos/webbrowser v1.2.0 // indirect
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
github.com/vmihailenco/msgpack/v4 v4.3.12 // indirect
github.com/vmihailenco/tagparser v0.1.1 // indirect
Expand All @@ -91,6 +109,7 @@ require (
go.opentelemetry.io/otel/trace v1.14.0 // indirect
golang.org/x/mod v0.10.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/tools v0.9.3 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
google.golang.org/grpc v1.55.0 // indirect
Expand Down
Loading
Loading