mirror of https://github.com/databricks/cli.git
168 lines
4.7 KiB
Go
Executable File
168 lines
4.7 KiB
Go
Executable File
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.
|
|
|
|
package recipient_activation
|
|
|
|
import (
|
|
"github.com/databricks/cli/cmd/root"
|
|
"github.com/databricks/cli/libs/cmdio"
|
|
"github.com/databricks/databricks-sdk-go/service/sharing"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// Slice with functions to override default command behavior.
|
|
// Functions can be added from the `init()` function in manually curated files in this directory.
|
|
var cmdOverrides []func(*cobra.Command)
|
|
|
|
func New() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "recipient-activation",
|
|
Short: `The Recipient Activation API is only applicable in the open sharing model where the recipient object has the authentication type of TOKEN.`,
|
|
Long: `The Recipient Activation API is only applicable in the open sharing model
|
|
where the recipient object has the authentication type of TOKEN. The data
|
|
recipient follows the activation link shared by the data provider to download
|
|
the credential file that includes the access token. The recipient will then
|
|
use the credential file to establish a secure connection with the provider to
|
|
receive the shared data.
|
|
|
|
Note that you can download the credential file only once. Recipients should
|
|
treat the downloaded credential as a secret and must not share it outside of
|
|
their organization.`,
|
|
GroupID: "sharing",
|
|
Annotations: map[string]string{
|
|
"package": "sharing",
|
|
},
|
|
}
|
|
|
|
// Apply optional overrides to this command.
|
|
for _, fn := range cmdOverrides {
|
|
fn(cmd)
|
|
}
|
|
|
|
return cmd
|
|
}
|
|
|
|
// start get-activation-url-info command
|
|
|
|
// Slice with functions to override default command behavior.
|
|
// Functions can be added from the `init()` function in manually curated files in this directory.
|
|
var getActivationUrlInfoOverrides []func(
|
|
*cobra.Command,
|
|
*sharing.GetActivationUrlInfoRequest,
|
|
)
|
|
|
|
func newGetActivationUrlInfo() *cobra.Command {
|
|
cmd := &cobra.Command{}
|
|
|
|
var getActivationUrlInfoReq sharing.GetActivationUrlInfoRequest
|
|
|
|
// TODO: short flags
|
|
|
|
cmd.Use = "get-activation-url-info ACTIVATION_URL"
|
|
cmd.Short = `Get a share activation URL.`
|
|
cmd.Long = `Get a share activation URL.
|
|
|
|
Gets an activation URL for a share.`
|
|
|
|
cmd.Annotations = make(map[string]string)
|
|
|
|
cmd.Args = func(cmd *cobra.Command, args []string) error {
|
|
check := cobra.ExactArgs(1)
|
|
return check(cmd, args)
|
|
}
|
|
|
|
cmd.PreRunE = root.MustWorkspaceClient
|
|
cmd.RunE = func(cmd *cobra.Command, args []string) (err error) {
|
|
ctx := cmd.Context()
|
|
w := root.WorkspaceClient(ctx)
|
|
|
|
getActivationUrlInfoReq.ActivationUrl = args[0]
|
|
|
|
err = w.RecipientActivation.GetActivationUrlInfo(ctx, getActivationUrlInfoReq)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Disable completions since they are not applicable.
|
|
// Can be overridden by manual implementation in `override.go`.
|
|
cmd.ValidArgsFunction = cobra.NoFileCompletions
|
|
|
|
// Apply optional overrides to this command.
|
|
for _, fn := range getActivationUrlInfoOverrides {
|
|
fn(cmd, &getActivationUrlInfoReq)
|
|
}
|
|
|
|
return cmd
|
|
}
|
|
|
|
func init() {
|
|
cmdOverrides = append(cmdOverrides, func(cmd *cobra.Command) {
|
|
cmd.AddCommand(newGetActivationUrlInfo())
|
|
})
|
|
}
|
|
|
|
// start retrieve-token command
|
|
|
|
// Slice with functions to override default command behavior.
|
|
// Functions can be added from the `init()` function in manually curated files in this directory.
|
|
var retrieveTokenOverrides []func(
|
|
*cobra.Command,
|
|
*sharing.RetrieveTokenRequest,
|
|
)
|
|
|
|
func newRetrieveToken() *cobra.Command {
|
|
cmd := &cobra.Command{}
|
|
|
|
var retrieveTokenReq sharing.RetrieveTokenRequest
|
|
|
|
// TODO: short flags
|
|
|
|
cmd.Use = "retrieve-token ACTIVATION_URL"
|
|
cmd.Short = `Get an access token.`
|
|
cmd.Long = `Get an access token.
|
|
|
|
Retrieve access token with an activation url. This is a public API without any
|
|
authentication.`
|
|
|
|
cmd.Annotations = make(map[string]string)
|
|
|
|
cmd.Args = func(cmd *cobra.Command, args []string) error {
|
|
check := cobra.ExactArgs(1)
|
|
return check(cmd, args)
|
|
}
|
|
|
|
cmd.PreRunE = root.MustWorkspaceClient
|
|
cmd.RunE = func(cmd *cobra.Command, args []string) (err error) {
|
|
ctx := cmd.Context()
|
|
w := root.WorkspaceClient(ctx)
|
|
|
|
retrieveTokenReq.ActivationUrl = args[0]
|
|
|
|
response, err := w.RecipientActivation.RetrieveToken(ctx, retrieveTokenReq)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return cmdio.Render(ctx, response)
|
|
}
|
|
|
|
// Disable completions since they are not applicable.
|
|
// Can be overridden by manual implementation in `override.go`.
|
|
cmd.ValidArgsFunction = cobra.NoFileCompletions
|
|
|
|
// Apply optional overrides to this command.
|
|
for _, fn := range retrieveTokenOverrides {
|
|
fn(cmd, &retrieveTokenReq)
|
|
}
|
|
|
|
return cmd
|
|
}
|
|
|
|
func init() {
|
|
cmdOverrides = append(cmdOverrides, func(cmd *cobra.Command) {
|
|
cmd.AddCommand(newRetrieveToken())
|
|
})
|
|
}
|
|
|
|
// end service RecipientActivation
|