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

outscale.getInternetService

Explore with Pulumi AI

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

    Provides information about an Internet service.

    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 internetService01 = outscale.getInternetService({
        filters: [{
            name: "internet_service_ids",
            values: ["igw-12345678"],
        }],
    });
    
    import pulumi
    import pulumi_outscale as outscale
    
    internet_service01 = outscale.get_internet_service(filters=[{
        "name": "internet_service_ids",
        "values": ["igw-12345678"],
    }])
    
    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.LookupInternetService(ctx, &outscale.LookupInternetServiceArgs{
    			Filters: []outscale.GetInternetServiceFilter{
    				{
    					Name: "internet_service_ids",
    					Values: []string{
    						"igw-12345678",
    					},
    				},
    			},
    		}, 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 internetService01 = Outscale.GetInternetService.Invoke(new()
        {
            Filters = new[]
            {
                new Outscale.Inputs.GetInternetServiceFilterInputArgs
                {
                    Name = "internet_service_ids",
                    Values = new[]
                    {
                        "igw-12345678",
                    },
                },
            },
        });
    
    });
    
    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.GetInternetServiceArgs;
    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 internetService01 = OutscaleFunctions.getInternetService(GetInternetServiceArgs.builder()
                .filters(GetInternetServiceFilterArgs.builder()
                    .name("internet_service_ids")
                    .values("igw-12345678")
                    .build())
                .build());
    
        }
    }
    
    variables:
      internetService01:
        fn::invoke:
          function: outscale:getInternetService
          arguments:
            filters:
              - name: internet_service_ids
                values:
                  - igw-12345678
    

    Using getInternetService

    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 getInternetService(args: GetInternetServiceArgs, opts?: InvokeOptions): Promise<GetInternetServiceResult>
    function getInternetServiceOutput(args: GetInternetServiceOutputArgs, opts?: InvokeOptions): Output<GetInternetServiceResult>
    def get_internet_service(filters: Optional[Sequence[GetInternetServiceFilter]] = None,
                             id: Optional[str] = None,
                             opts: Optional[InvokeOptions] = None) -> GetInternetServiceResult
    def get_internet_service_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetInternetServiceFilterArgs]]]] = None,
                             id: Optional[pulumi.Input[str]] = None,
                             opts: Optional[InvokeOptions] = None) -> Output[GetInternetServiceResult]
    func LookupInternetService(ctx *Context, args *LookupInternetServiceArgs, opts ...InvokeOption) (*LookupInternetServiceResult, error)
    func LookupInternetServiceOutput(ctx *Context, args *LookupInternetServiceOutputArgs, opts ...InvokeOption) LookupInternetServiceResultOutput

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

    public static class GetInternetService 
    {
        public static Task<GetInternetServiceResult> InvokeAsync(GetInternetServiceArgs args, InvokeOptions? opts = null)
        public static Output<GetInternetServiceResult> Invoke(GetInternetServiceInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetInternetServiceResult> getInternetService(GetInternetServiceArgs args, InvokeOptions options)
    public static Output<GetInternetServiceResult> getInternetService(GetInternetServiceArgs args, InvokeOptions options)
    
    fn::invoke:
      function: outscale:index/getInternetService:getInternetService
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Filters List<GetInternetServiceFilter>
    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 []GetInternetServiceFilter
    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<GetInternetServiceFilter>
    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 GetInternetServiceFilter[]
    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[GetInternetServiceFilter]
    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

    getInternetService Result

    The following output properties are available:

    Id string
    InternetServiceId string
    The ID of the Internet service.
    NetId string
    The ID of the Net attached to the Internet service.
    RequestId string
    State string
    The state of the attachment of the Internet service to the Net (always available).
    Tags List<GetInternetServiceTag>
    One or more tags associated with the Internet service.
    Filters List<GetInternetServiceFilter>
    Id string
    InternetServiceId string
    The ID of the Internet service.
    NetId string
    The ID of the Net attached to the Internet service.
    RequestId string
    State string
    The state of the attachment of the Internet service to the Net (always available).
    Tags []GetInternetServiceTag
    One or more tags associated with the Internet service.
    Filters []GetInternetServiceFilter
    id String
    internetServiceId String
    The ID of the Internet service.
    netId String
    The ID of the Net attached to the Internet service.
    requestId String
    state String
    The state of the attachment of the Internet service to the Net (always available).
    tags List<GetInternetServiceTag>
    One or more tags associated with the Internet service.
    filters List<GetInternetServiceFilter>
    id string
    internetServiceId string
    The ID of the Internet service.
    netId string
    The ID of the Net attached to the Internet service.
    requestId string
    state string
    The state of the attachment of the Internet service to the Net (always available).
    tags GetInternetServiceTag[]
    One or more tags associated with the Internet service.
    filters GetInternetServiceFilter[]
    id str
    internet_service_id str
    The ID of the Internet service.
    net_id str
    The ID of the Net attached to the Internet service.
    request_id str
    state str
    The state of the attachment of the Internet service to the Net (always available).
    tags Sequence[GetInternetServiceTag]
    One or more tags associated with the Internet service.
    filters Sequence[GetInternetServiceFilter]
    id String
    internetServiceId String
    The ID of the Internet service.
    netId String
    The ID of the Net attached to the Internet service.
    requestId String
    state String
    The state of the attachment of the Internet service to the Net (always available).
    tags List<Property Map>
    One or more tags associated with the Internet service.
    filters List<Property Map>

    Supporting Types

    GetInternetServiceFilter

    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>

    GetInternetServiceTag

    Key string
    The key of the tag, with a minimum of 1 character.
    Value string
    The value of the tag, between 0 and 255 characters.
    Key string
    The key of the tag, with a minimum of 1 character.
    Value string
    The value of the tag, between 0 and 255 characters.
    key String
    The key of the tag, with a minimum of 1 character.
    value String
    The value of the tag, between 0 and 255 characters.
    key string
    The key of the tag, with a minimum of 1 character.
    value string
    The value of the tag, between 0 and 255 characters.
    key str
    The key of the tag, with a minimum of 1 character.
    value str
    The value of the tag, between 0 and 255 characters.
    key String
    The key of the tag, with a minimum of 1 character.
    value String
    The value of the tag, between 0 and 255 characters.

    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