1. Packages
  2. Splight
  3. API Docs
  4. getGenerators
splight v1.2.2 published on Friday, Nov 8, 2024 by splightplatform

splight.getGenerators

Explore with Pulumi AI

splight logo
splight v1.2.2 published on Friday, Nov 8, 2024 by splightplatform

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as splight from "@pulumi/splight";
    
    const generators = splight.getGenerators({});
    
    import pulumi
    import pulumi_splight as splight
    
    generators = splight.get_generators()
    
    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.GetGenerators(ctx, map[string]interface{}{}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Splight = Pulumi.Splight;
    
    return await Deployment.RunAsync(() => 
    {
        var generators = Splight.GetGenerators.Invoke();
    
    });
    
    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 generators = SplightFunctions.getGenerators();
    
        }
    }
    
    variables:
      generators:
        fn::invoke:
          Function: splight:getGenerators
          Arguments: {}
    

    Using getGenerators

    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 getGenerators(opts?: InvokeOptions): Promise<GetGeneratorsResult>
    function getGeneratorsOutput(opts?: InvokeOptions): Output<GetGeneratorsResult>
    def get_generators(opts: Optional[InvokeOptions] = None) -> GetGeneratorsResult
    def get_generators_output(opts: Optional[InvokeOptions] = None) -> Output[GetGeneratorsResult]
    func GetGenerators(ctx *Context, opts ...InvokeOption) (*GetGeneratorsResult, error)
    func GetGeneratorsOutput(ctx *Context, opts ...InvokeOption) GetGeneratorsResultOutput

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

    public static class GetGenerators 
    {
        public static Task<GetGeneratorsResult> InvokeAsync(InvokeOptions? opts = null)
        public static Output<GetGeneratorsResult> Invoke(InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetGeneratorsResult> getGenerators(InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: splight:index/getGenerators:getGenerators
      arguments:
        # arguments dictionary

    getGenerators Result

    The following output properties are available:

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

    Supporting Types

    GetGeneratorsTag

    Id string
    Id of the resource
    Name string
    name of the resource
    Id string
    Id of the resource
    Name string
    name of the resource
    id String
    Id of the resource
    name String
    name of the resource
    id string
    Id of the resource
    name string
    name of the resource
    id str
    Id of the resource
    name str
    name of the resource
    id String
    Id of the resource
    name 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 logo
    splight v1.2.2 published on Friday, Nov 8, 2024 by splightplatform