1. Packages
  2. Splight
  3. API Docs
  4. getTags
splight v1.2.13 published on Friday, Feb 14, 2025 by splightplatform

splight.getTags

Explore with Pulumi AI

splight v1.2.13 published on Friday, Feb 14, 2025 by splightplatform

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as splight from "@pulumi/splight";

const tags = splight.getTags({});
Copy
import pulumi
import pulumi_splight as splight

tags = splight.get_tags()
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := splight.GetTags(ctx, map[string]interface{}{}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Splight = Pulumi.Splight;

return await Deployment.RunAsync(() => 
{
    var tags = Splight.GetTags.Invoke();

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.splight.SplightFunctions;
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 tags = SplightFunctions.getTags();

    }
}
Copy
variables:
  tags:
    fn::invoke:
      Function: splight:getTags
      Arguments: {}
Copy

Using getTags

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 getTags(opts?: InvokeOptions): Promise<GetTagsResult>
function getTagsOutput(opts?: InvokeOptions): Output<GetTagsResult>
Copy
def get_tags(opts: Optional[InvokeOptions] = None) -> GetTagsResult
def get_tags_output(opts: Optional[InvokeOptions] = None) -> Output[GetTagsResult]
Copy
func GetTags(ctx *Context, opts ...InvokeOption) (*GetTagsResult, error)
func GetTagsOutput(ctx *Context, opts ...InvokeOption) GetTagsResultOutput
Copy

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

public static class GetTags 
{
    public static Task<GetTagsResult> InvokeAsync(InvokeOptions? opts = null)
    public static Output<GetTagsResult> Invoke(InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetTagsResult> getTags(InvokeOptions options)
public static Output<GetTagsResult> getTags(InvokeOptions options)
Copy
fn::invoke:
  function: splight:index/getTags:getTags
  arguments:
    # arguments dictionary
Copy

getTags Result

The following output properties are available:

Id string
The provider-assigned unique ID for this managed resource.
Tags List<Splight.Splight.Outputs.GetTagsTag>
Id string
The provider-assigned unique ID for this managed resource.
Tags []GetTagsTag
id String
The provider-assigned unique ID for this managed resource.
tags List<GetTagsTag>
id string
The provider-assigned unique ID for this managed resource.
tags GetTagsTag[]
id str
The provider-assigned unique ID for this managed resource.
tags Sequence[GetTagsTag]
id String
The provider-assigned unique ID for this managed resource.
tags List<Property Map>

Supporting Types

GetTagsTag

Id This property is required. string
Id of the resource
Name This property is required. string
name of the resource
Id This property is required. string
Id of the resource
Name This property is required. string
name of the resource
id This property is required. String
Id of the resource
name This property is required. String
name of the resource
id This property is required. string
Id of the resource
name This property is required. string
name of the resource
id This property is required. str
Id of the resource
name This property is required. str
name of the resource
id This property is required. String
Id of the resource
name This property is required. String
name of the resource

Package Details

Repository
splight splightplatform/pulumi-splight
License
Apache-2.0
Notes
This Pulumi package is based on the splight Terraform Provider.
splight v1.2.13 published on Friday, Feb 14, 2025 by splightplatform