junipermist.org.getDeviceprofilesAp
Explore with Pulumi AI
This data source provides the list of AP Device Profiles. AP Device profiles for aps are used to specify a configuration that can be applied to a select set of aps from any site in the organization. They allow for efficient application of configurations based on ap groups, wlan groups, RF settings, and sites. Device profiles enable various use cases such as activating ethernet passthrough, applying different rf settings, applying mesh configuration, activating specific features like esl or vble, and more.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as junipermist from "@pulumi/junipermist";
const deviceprofile = junipermist.org.getDeviceprofilesAp({
orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
});
import pulumi
import pulumi_junipermist as junipermist
deviceprofile = junipermist.org.get_deviceprofiles_ap(org_id="15fca2ac-b1a6-47cc-9953-cc6906281550")
package main
import (
"github.com/pulumi/pulumi-junipermist/sdk/go/junipermist/org"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := org.GetDeviceprofilesAp(ctx, &org.GetDeviceprofilesApArgs{
OrgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using JuniperMist = Pulumi.JuniperMist;
return await Deployment.RunAsync(() =>
{
var deviceprofile = JuniperMist.Org.GetDeviceprofilesAp.Invoke(new()
{
OrgId = "15fca2ac-b1a6-47cc-9953-cc6906281550",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.junipermist.org.OrgFunctions;
import com.pulumi.junipermist.org.inputs.GetDeviceprofilesApArgs;
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 deviceprofile = OrgFunctions.getDeviceprofilesAp(GetDeviceprofilesApArgs.builder()
.orgId("15fca2ac-b1a6-47cc-9953-cc6906281550")
.build());
}
}
variables:
deviceprofile:
fn::invoke:
Function: junipermist:org:getDeviceprofilesAp
Arguments:
orgId: 15fca2ac-b1a6-47cc-9953-cc6906281550
Using getDeviceprofilesAp
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 getDeviceprofilesAp(args: GetDeviceprofilesApArgs, opts?: InvokeOptions): Promise<GetDeviceprofilesApResult>
function getDeviceprofilesApOutput(args: GetDeviceprofilesApOutputArgs, opts?: InvokeOptions): Output<GetDeviceprofilesApResult>
def get_deviceprofiles_ap(org_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetDeviceprofilesApResult
def get_deviceprofiles_ap_output(org_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDeviceprofilesApResult]
func GetDeviceprofilesAp(ctx *Context, args *GetDeviceprofilesApArgs, opts ...InvokeOption) (*GetDeviceprofilesApResult, error)
func GetDeviceprofilesApOutput(ctx *Context, args *GetDeviceprofilesApOutputArgs, opts ...InvokeOption) GetDeviceprofilesApResultOutput
> Note: This function is named GetDeviceprofilesAp
in the Go SDK.
public static class GetDeviceprofilesAp
{
public static Task<GetDeviceprofilesApResult> InvokeAsync(GetDeviceprofilesApArgs args, InvokeOptions? opts = null)
public static Output<GetDeviceprofilesApResult> Invoke(GetDeviceprofilesApInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetDeviceprofilesApResult> getDeviceprofilesAp(GetDeviceprofilesApArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: junipermist:org/getDeviceprofilesAp:getDeviceprofilesAp
arguments:
# arguments dictionary
The following arguments are supported:
- Org
Id string
- Org
Id string
- org
Id String
- org
Id string
- org_
id str
- org
Id String
getDeviceprofilesAp Result
The following output properties are available:
- Deviceprofiles
List<Pulumi.
Juniper Mist. Org. Outputs. Get Deviceprofiles Ap Deviceprofile> - Id string
- The provider-assigned unique ID for this managed resource.
- Org
Id string
- Deviceprofiles
[]Get
Deviceprofiles Ap Deviceprofile - Id string
- The provider-assigned unique ID for this managed resource.
- Org
Id string
- deviceprofiles
List<Get
Deviceprofiles Ap Deviceprofile> - id String
- The provider-assigned unique ID for this managed resource.
- org
Id String
- deviceprofiles
Get
Deviceprofiles Ap Deviceprofile[] - id string
- The provider-assigned unique ID for this managed resource.
- org
Id string
- deviceprofiles
Sequence[Get
Deviceprofiles Ap Deviceprofile] - id str
- The provider-assigned unique ID for this managed resource.
- org_
id str
- deviceprofiles List<Property Map>
- id String
- The provider-assigned unique ID for this managed resource.
- org
Id String
Supporting Types
GetDeviceprofilesApDeviceprofile
- Created
Time double - Id string
- Modified
Time double - Name string
- Org
Id string
- Created
Time float64 - Id string
- Modified
Time float64 - Name string
- Org
Id string
- created
Time Double - id String
- modified
Time Double - name String
- org
Id String
- created
Time number - id string
- modified
Time number - name string
- org
Id string
- created_
time float - id str
- modified_
time float - name str
- org_
id str
- created
Time Number - id String
- modified
Time Number - name String
- org
Id String
Package Details
- Repository
- junipermist pulumi/pulumi-junipermist
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
mist
Terraform Provider.