databricks logo
Databricks v1.14.0, May 23 23

databricks.getShares

Explore with Pulumi AI

The following resources are used in the same context:

  • databricks.Share to create Delta Sharing shares.
  • databricks.Recipient to create Delta Sharing recipients.
  • databricks.Grants to manage Delta Sharing permissions.

Example Usage

Getting all existing shares in the metastore

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Databricks = Pulumi.Databricks;

return await Deployment.RunAsync(() => 
{
    var @this = Databricks.GetShares.Invoke();

    return new Dictionary<string, object?>
    {
        ["shareName"] = @this.Apply(@this => @this.Apply(getSharesResult => getSharesResult.Shares)),
    };
});
package main

import (
	"github.com/pulumi/pulumi-databricks/sdk/go/databricks"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		this, err := databricks.GetShares(ctx, nil, nil)
		if err != nil {
			return err
		}
		ctx.Export("shareName", this.Shares)
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.databricks.DatabricksFunctions;
import com.pulumi.databricks.inputs.GetSharesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var this = DatabricksFunctions.getShares();

        ctx.export("shareName", this_.shares());
    }
}
import pulumi
import pulumi_databricks as databricks

this = databricks.get_shares()
pulumi.export("shareName", this.shares)
import * as pulumi from "@pulumi/pulumi";
import * as databricks from "@pulumi/databricks";

const this = databricks.getShares({});
export const shareName = _this.then(_this => _this.shares);
variables:
  this:
    fn::invoke:
      Function: databricks:getShares
      Arguments: {}
outputs:
  shareName: ${this.shares}

Using getShares

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getShares(args: GetSharesArgs, opts?: InvokeOptions): Promise<GetSharesResult>
function getSharesOutput(args: GetSharesOutputArgs, opts?: InvokeOptions): Output<GetSharesResult>
def get_shares(shares: Optional[Sequence[str]] = None,
               opts: Optional[InvokeOptions] = None) -> GetSharesResult
def get_shares_output(shares: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
               opts: Optional[InvokeOptions] = None) -> Output[GetSharesResult]
func GetShares(ctx *Context, args *GetSharesArgs, opts ...InvokeOption) (*GetSharesResult, error)
func GetSharesOutput(ctx *Context, args *GetSharesOutputArgs, opts ...InvokeOption) GetSharesResultOutput

> Note: This function is named GetShares in the Go SDK.

public static class GetShares 
{
    public static Task<GetSharesResult> InvokeAsync(GetSharesArgs args, InvokeOptions? opts = null)
    public static Output<GetSharesResult> Invoke(GetSharesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetSharesResult> getShares(GetSharesArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
  function: databricks:index/getShares:getShares
  arguments:
    # arguments dictionary

The following arguments are supported:

Shares List<string>

list of databricks.Share names.

Shares []string

list of databricks.Share names.

shares List<String>

list of databricks.Share names.

shares string[]

list of databricks.Share names.

shares Sequence[str]

list of databricks.Share names.

shares List<String>

list of databricks.Share names.

getShares Result

The following output properties are available:

Id string

The provider-assigned unique ID for this managed resource.

Shares List<string>

list of databricks.Share names.

Id string

The provider-assigned unique ID for this managed resource.

Shares []string

list of databricks.Share names.

id String

The provider-assigned unique ID for this managed resource.

shares List<String>

list of databricks.Share names.

id string

The provider-assigned unique ID for this managed resource.

shares string[]

list of databricks.Share names.

id str

The provider-assigned unique ID for this managed resource.

shares Sequence[str]

list of databricks.Share names.

id String

The provider-assigned unique ID for this managed resource.

shares List<String>

list of databricks.Share names.

Package Details

Repository
databricks pulumi/pulumi-databricks
License
Apache-2.0
Notes

This Pulumi package is based on the databricks Terraform Provider.