outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale
outscale.getNetAccessPoints
Explore with Pulumi AI
Provides information about Net access points.
For more information on this resource, see the User Guide.
For more information on this resource actions, see the API documentation.
Example Usage
List Net access points
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const netAccessPoints01 = outscale.getNetAccessPoints({
filters: [{
name: "net_access_point_ids",
values: [
"vpce-12345678",
"vpce-12345679",
],
}],
});
import pulumi
import pulumi_outscale as outscale
net_access_points01 = outscale.get_net_access_points(filters=[{
"name": "net_access_point_ids",
"values": [
"vpce-12345678",
"vpce-12345679",
],
}])
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.GetNetAccessPoints(ctx, &outscale.GetNetAccessPointsArgs{
Filters: []outscale.GetNetAccessPointsFilter{
{
Name: "net_access_point_ids",
Values: []string{
"vpce-12345678",
"vpce-12345679",
},
},
},
}, 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 netAccessPoints01 = Outscale.GetNetAccessPoints.Invoke(new()
{
Filters = new[]
{
new Outscale.Inputs.GetNetAccessPointsFilterInputArgs
{
Name = "net_access_point_ids",
Values = new[]
{
"vpce-12345678",
"vpce-12345679",
},
},
},
});
});
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.GetNetAccessPointsArgs;
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 netAccessPoints01 = OutscaleFunctions.getNetAccessPoints(GetNetAccessPointsArgs.builder()
.filters(GetNetAccessPointsFilterArgs.builder()
.name("net_access_point_ids")
.values(
"vpce-12345678",
"vpce-12345679")
.build())
.build());
}
}
variables:
netAccessPoints01:
fn::invoke:
function: outscale:getNetAccessPoints
arguments:
filters:
- name: net_access_point_ids
values:
- vpce-12345678
- vpce-12345679
List Net access points according to their Net and state
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const netAccessPoints02 = outscale.getNetAccessPoints({
filters: [
{
name: "net_ids",
values: ["vpc-12345678"],
},
{
name: "states",
values: ["available"],
},
],
});
import pulumi
import pulumi_outscale as outscale
net_access_points02 = outscale.get_net_access_points(filters=[
{
"name": "net_ids",
"values": ["vpc-12345678"],
},
{
"name": "states",
"values": ["available"],
},
])
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.GetNetAccessPoints(ctx, &outscale.GetNetAccessPointsArgs{
Filters: []outscale.GetNetAccessPointsFilter{
{
Name: "net_ids",
Values: []string{
"vpc-12345678",
},
},
{
Name: "states",
Values: []string{
"available",
},
},
},
}, 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 netAccessPoints02 = Outscale.GetNetAccessPoints.Invoke(new()
{
Filters = new[]
{
new Outscale.Inputs.GetNetAccessPointsFilterInputArgs
{
Name = "net_ids",
Values = new[]
{
"vpc-12345678",
},
},
new Outscale.Inputs.GetNetAccessPointsFilterInputArgs
{
Name = "states",
Values = new[]
{
"available",
},
},
},
});
});
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.GetNetAccessPointsArgs;
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 netAccessPoints02 = OutscaleFunctions.getNetAccessPoints(GetNetAccessPointsArgs.builder()
.filters(
GetNetAccessPointsFilterArgs.builder()
.name("net_ids")
.values("vpc-12345678")
.build(),
GetNetAccessPointsFilterArgs.builder()
.name("states")
.values("available")
.build())
.build());
}
}
variables:
netAccessPoints02:
fn::invoke:
function: outscale:getNetAccessPoints
arguments:
filters:
- name: net_ids
values:
- vpc-12345678
- name: states
values:
- available
Using getNetAccessPoints
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 getNetAccessPoints(args: GetNetAccessPointsArgs, opts?: InvokeOptions): Promise<GetNetAccessPointsResult>
function getNetAccessPointsOutput(args: GetNetAccessPointsOutputArgs, opts?: InvokeOptions): Output<GetNetAccessPointsResult>
def get_net_access_points(filters: Optional[Sequence[GetNetAccessPointsFilter]] = None,
id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetNetAccessPointsResult
def get_net_access_points_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetNetAccessPointsFilterArgs]]]] = None,
id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetNetAccessPointsResult]
func GetNetAccessPoints(ctx *Context, args *GetNetAccessPointsArgs, opts ...InvokeOption) (*GetNetAccessPointsResult, error)
func GetNetAccessPointsOutput(ctx *Context, args *GetNetAccessPointsOutputArgs, opts ...InvokeOption) GetNetAccessPointsResultOutput
> Note: This function is named GetNetAccessPoints
in the Go SDK.
public static class GetNetAccessPoints
{
public static Task<GetNetAccessPointsResult> InvokeAsync(GetNetAccessPointsArgs args, InvokeOptions? opts = null)
public static Output<GetNetAccessPointsResult> Invoke(GetNetAccessPointsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetNetAccessPointsResult> getNetAccessPoints(GetNetAccessPointsArgs args, InvokeOptions options)
public static Output<GetNetAccessPointsResult> getNetAccessPoints(GetNetAccessPointsArgs args, InvokeOptions options)
fn::invoke:
function: outscale:index/getNetAccessPoints:getNetAccessPoints
arguments:
# arguments dictionary
The following arguments are supported:
- Filters
List<Get
Net Access Points Filter> - 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
[]Get
Net Access Points Filter - 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<Get
Net Access Points Filter> - 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
Get
Net Access Points Filter[] - 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[Get
Net Access Points Filter] - 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
getNetAccessPoints Result
The following output properties are available:
- Id string
- Net
Access List<GetPoints Net Access Points Net Access Point> - One or more Net access points.
- Request
Id string - Filters
List<Get
Net Access Points Filter>
- Id string
- Net
Access []GetPoints Net Access Points Net Access Point - One or more Net access points.
- Request
Id string - Filters
[]Get
Net Access Points Filter
- id String
- net
Access List<GetPoints Net Access Points Net Access Point> - One or more Net access points.
- request
Id String - filters
List<Get
Net Access Points Filter>
- id string
- net
Access GetPoints Net Access Points Net Access Point[] - One or more Net access points.
- request
Id string - filters
Get
Net Access Points Filter[]
- id str
- net_
access_ Sequence[Getpoints Net Access Points Net Access Point] - One or more Net access points.
- request_
id str - filters
Sequence[Get
Net Access Points Filter]
- id String
- net
Access List<Property Map>Points - One or more Net access points.
- request
Id String - filters List<Property Map>
Supporting Types
GetNetAccessPointsFilter
GetNetAccessPointsNetAccessPoint
- Net
Access stringPoint Id - The ID of the Net access point.
- Net
Id string - The ID of the Net with which the Net access point is associated.
- Route
Table List<string>Ids - The ID of the route tables associated with the Net access point.
- Service
Name string - The name of the service with which the Net access point is associated.
- State string
- The state of the Net access point (
pending
|available
|deleting
|deleted
). - List<Get
Net Access Points Net Access Point Tag> - One or more tags associated with the Net access point.
- Net
Access stringPoint Id - The ID of the Net access point.
- Net
Id string - The ID of the Net with which the Net access point is associated.
- Route
Table []stringIds - The ID of the route tables associated with the Net access point.
- Service
Name string - The name of the service with which the Net access point is associated.
- State string
- The state of the Net access point (
pending
|available
|deleting
|deleted
). - []Get
Net Access Points Net Access Point Tag - One or more tags associated with the Net access point.
- net
Access StringPoint Id - The ID of the Net access point.
- net
Id String - The ID of the Net with which the Net access point is associated.
- route
Table List<String>Ids - The ID of the route tables associated with the Net access point.
- service
Name String - The name of the service with which the Net access point is associated.
- state String
- The state of the Net access point (
pending
|available
|deleting
|deleted
). - List<Get
Net Access Points Net Access Point Tag> - One or more tags associated with the Net access point.
- net
Access stringPoint Id - The ID of the Net access point.
- net
Id string - The ID of the Net with which the Net access point is associated.
- route
Table string[]Ids - The ID of the route tables associated with the Net access point.
- service
Name string - The name of the service with which the Net access point is associated.
- state string
- The state of the Net access point (
pending
|available
|deleting
|deleted
). - Get
Net Access Points Net Access Point Tag[] - One or more tags associated with the Net access point.
- net_
access_ strpoint_ id - The ID of the Net access point.
- net_
id str - The ID of the Net with which the Net access point is associated.
- route_
table_ Sequence[str]ids - The ID of the route tables associated with the Net access point.
- service_
name str - The name of the service with which the Net access point is associated.
- state str
- The state of the Net access point (
pending
|available
|deleting
|deleted
). - Sequence[Get
Net Access Points Net Access Point Tag] - One or more tags associated with the Net access point.
- net
Access StringPoint Id - The ID of the Net access point.
- net
Id String - The ID of the Net with which the Net access point is associated.
- route
Table List<String>Ids - The ID of the route tables associated with the Net access point.
- service
Name String - The name of the service with which the Net access point is associated.
- state String
- The state of the Net access point (
pending
|available
|deleting
|deleted
). - List<Property Map>
- One or more tags associated with the Net access point.
GetNetAccessPointsNetAccessPointTag
Package Details
- Repository
- outscale outscale/terraform-provider-outscale
- License
- Notes
- This Pulumi package is based on the
outscale
Terraform Provider.