1. Packages
  2. Outscale Provider
  3. API Docs
  4. getProductType
outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale

outscale.getProductType

Explore with Pulumi AI

outscale logo
outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale

    Provides information about a product type.

    For more information on this resource, see the User Guide.
    For more information on this resource actions, see the API documentation.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as outscale from "@pulumi/outscale";
    
    const productType01 = outscale.getProductType({
        filters: [{
            name: "product_type_ids",
            values: ["0001"],
        }],
    });
    
    import pulumi
    import pulumi_outscale as outscale
    
    product_type01 = outscale.get_product_type(filters=[{
        "name": "product_type_ids",
        "values": ["0001"],
    }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := outscale.GetProductType(ctx, &outscale.GetProductTypeArgs{
    			Filters: []outscale.GetProductTypeFilter{
    				{
    					Name: "product_type_ids",
    					Values: []string{
    						"0001",
    					},
    				},
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Outscale = Pulumi.Outscale;
    
    return await Deployment.RunAsync(() => 
    {
        var productType01 = Outscale.GetProductType.Invoke(new()
        {
            Filters = new[]
            {
                new Outscale.Inputs.GetProductTypeFilterInputArgs
                {
                    Name = "product_type_ids",
                    Values = new[]
                    {
                        "0001",
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.outscale.OutscaleFunctions;
    import com.pulumi.outscale.inputs.GetProductTypeArgs;
    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 productType01 = OutscaleFunctions.getProductType(GetProductTypeArgs.builder()
                .filters(GetProductTypeFilterArgs.builder()
                    .name("product_type_ids")
                    .values("0001")
                    .build())
                .build());
    
        }
    }
    
    variables:
      productType01:
        fn::invoke:
          function: outscale:getProductType
          arguments:
            filters:
              - name: product_type_ids
                values:
                  - '0001'
    

    Using getProductType

    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 getProductType(args: GetProductTypeArgs, opts?: InvokeOptions): Promise<GetProductTypeResult>
    function getProductTypeOutput(args: GetProductTypeOutputArgs, opts?: InvokeOptions): Output<GetProductTypeResult>
    def get_product_type(filters: Optional[Sequence[GetProductTypeFilter]] = None,
                         id: Optional[str] = None,
                         opts: Optional[InvokeOptions] = None) -> GetProductTypeResult
    def get_product_type_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetProductTypeFilterArgs]]]] = None,
                         id: Optional[pulumi.Input[str]] = None,
                         opts: Optional[InvokeOptions] = None) -> Output[GetProductTypeResult]
    func GetProductType(ctx *Context, args *GetProductTypeArgs, opts ...InvokeOption) (*GetProductTypeResult, error)
    func GetProductTypeOutput(ctx *Context, args *GetProductTypeOutputArgs, opts ...InvokeOption) GetProductTypeResultOutput

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

    public static class GetProductType 
    {
        public static Task<GetProductTypeResult> InvokeAsync(GetProductTypeArgs args, InvokeOptions? opts = null)
        public static Output<GetProductTypeResult> Invoke(GetProductTypeInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetProductTypeResult> getProductType(GetProductTypeArgs args, InvokeOptions options)
    public static Output<GetProductTypeResult> getProductType(GetProductTypeArgs args, InvokeOptions options)
    
    fn::invoke:
      function: outscale:index/getProductType:getProductType
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Filters List<GetProductTypeFilter>
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    Id string
    Filters []GetProductTypeFilter
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    Id string
    filters List<GetProductTypeFilter>
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    id String
    filters GetProductTypeFilter[]
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    id string
    filters Sequence[GetProductTypeFilter]
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    id str
    filters List<Property Map>
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    id String

    getProductType Result

    The following output properties are available:

    Description string
    The description of the product type.
    Id string
    ProductTypeId string
    The ID of the product type.
    RequestId string
    Vendor string
    The vendor of the product type.
    Filters List<GetProductTypeFilter>
    Description string
    The description of the product type.
    Id string
    ProductTypeId string
    The ID of the product type.
    RequestId string
    Vendor string
    The vendor of the product type.
    Filters []GetProductTypeFilter
    description String
    The description of the product type.
    id String
    productTypeId String
    The ID of the product type.
    requestId String
    vendor String
    The vendor of the product type.
    filters List<GetProductTypeFilter>
    description string
    The description of the product type.
    id string
    productTypeId string
    The ID of the product type.
    requestId string
    vendor string
    The vendor of the product type.
    filters GetProductTypeFilter[]
    description str
    The description of the product type.
    id str
    product_type_id str
    The ID of the product type.
    request_id str
    vendor str
    The vendor of the product type.
    filters Sequence[GetProductTypeFilter]
    description String
    The description of the product type.
    id String
    productTypeId String
    The ID of the product type.
    requestId String
    vendor String
    The vendor of the product type.
    filters List<Property Map>

    Supporting Types

    GetProductTypeFilter

    Name string
    Values List<string>
    Name string
    Values []string
    name String
    values List<String>
    name string
    values string[]
    name str
    values Sequence[str]
    name String
    values List<String>

    Package Details

    Repository
    outscale outscale/terraform-provider-outscale
    License
    Notes
    This Pulumi package is based on the outscale Terraform Provider.
    outscale logo
    outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale