alicloud.servicemesh.getExtensionProviders
Explore with Pulumi AI
This data source provides the Service Mesh Extension Providers of the current Alibaba Cloud user.
NOTE: Available in v1.191.0+.
Example Usage
Basic Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var ids = AliCloud.ServiceMesh.GetExtensionProviders.Invoke(new()
{
Ids = new[]
{
"example_id",
},
ServiceMeshId = "example_service_mesh_id",
Type = "httpextauth",
});
var nameRegex = AliCloud.ServiceMesh.GetExtensionProviders.Invoke(new()
{
NameRegex = "^my-ServiceMeshExtensionProvider",
ServiceMeshId = "example_service_mesh_id",
Type = "httpextauth",
});
return new Dictionary<string, object?>
{
["serviceMeshExtensionProvidersId1"] = ids.Apply(getExtensionProvidersResult => getExtensionProvidersResult.Providers[0]?.Id),
["serviceMeshExtensionProvidersId2"] = nameRegex.Apply(getExtensionProvidersResult => getExtensionProvidersResult.Providers[0]?.Id),
};
});
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/servicemesh"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
ids, err := servicemesh.GetExtensionProviders(ctx, &servicemesh.GetExtensionProvidersArgs{
Ids: []string{
"example_id",
},
ServiceMeshId: "example_service_mesh_id",
Type: "httpextauth",
}, nil)
if err != nil {
return err
}
ctx.Export("serviceMeshExtensionProvidersId1", ids.Providers[0].Id)
nameRegex, err := servicemesh.GetExtensionProviders(ctx, &servicemesh.GetExtensionProvidersArgs{
NameRegex: pulumi.StringRef("^my-ServiceMeshExtensionProvider"),
ServiceMeshId: "example_service_mesh_id",
Type: "httpextauth",
}, nil)
if err != nil {
return err
}
ctx.Export("serviceMeshExtensionProvidersId2", nameRegex.Providers[0].Id)
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.servicemesh.ServicemeshFunctions;
import com.pulumi.alicloud.servicemesh.inputs.GetExtensionProvidersArgs;
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 ids = ServicemeshFunctions.getExtensionProviders(GetExtensionProvidersArgs.builder()
.ids("example_id")
.serviceMeshId("example_service_mesh_id")
.type("httpextauth")
.build());
ctx.export("serviceMeshExtensionProvidersId1", ids.applyValue(getExtensionProvidersResult -> getExtensionProvidersResult.providers()[0].id()));
final var nameRegex = ServicemeshFunctions.getExtensionProviders(GetExtensionProvidersArgs.builder()
.nameRegex("^my-ServiceMeshExtensionProvider")
.serviceMeshId("example_service_mesh_id")
.type("httpextauth")
.build());
ctx.export("serviceMeshExtensionProvidersId2", nameRegex.applyValue(getExtensionProvidersResult -> getExtensionProvidersResult.providers()[0].id()));
}
}
import pulumi
import pulumi_alicloud as alicloud
ids = alicloud.servicemesh.get_extension_providers(ids=["example_id"],
service_mesh_id="example_service_mesh_id",
type="httpextauth")
pulumi.export("serviceMeshExtensionProvidersId1", ids.providers[0].id)
name_regex = alicloud.servicemesh.get_extension_providers(name_regex="^my-ServiceMeshExtensionProvider",
service_mesh_id="example_service_mesh_id",
type="httpextauth")
pulumi.export("serviceMeshExtensionProvidersId2", name_regex.providers[0].id)
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const ids = alicloud.servicemesh.getExtensionProviders({
ids: ["example_id"],
serviceMeshId: "example_service_mesh_id",
type: "httpextauth",
});
export const serviceMeshExtensionProvidersId1 = ids.then(ids => ids.providers?.[0]?.id);
const nameRegex = alicloud.servicemesh.getExtensionProviders({
nameRegex: "^my-ServiceMeshExtensionProvider",
serviceMeshId: "example_service_mesh_id",
type: "httpextauth",
});
export const serviceMeshExtensionProvidersId2 = nameRegex.then(nameRegex => nameRegex.providers?.[0]?.id);
variables:
ids:
fn::invoke:
Function: alicloud:servicemesh:getExtensionProviders
Arguments:
ids:
- example_id
serviceMeshId: example_service_mesh_id
type: httpextauth
nameRegex:
fn::invoke:
Function: alicloud:servicemesh:getExtensionProviders
Arguments:
nameRegex: ^my-ServiceMeshExtensionProvider
serviceMeshId: example_service_mesh_id
type: httpextauth
outputs:
serviceMeshExtensionProvidersId1: ${ids.providers[0].id}
serviceMeshExtensionProvidersId2: ${nameRegex.providers[0].id}
Using getExtensionProviders
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 getExtensionProviders(args: GetExtensionProvidersArgs, opts?: InvokeOptions): Promise<GetExtensionProvidersResult>
function getExtensionProvidersOutput(args: GetExtensionProvidersOutputArgs, opts?: InvokeOptions): Output<GetExtensionProvidersResult>
def get_extension_providers(ids: Optional[Sequence[str]] = None,
name_regex: Optional[str] = None,
output_file: Optional[str] = None,
service_mesh_id: Optional[str] = None,
type: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetExtensionProvidersResult
def get_extension_providers_output(ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
name_regex: Optional[pulumi.Input[str]] = None,
output_file: Optional[pulumi.Input[str]] = None,
service_mesh_id: Optional[pulumi.Input[str]] = None,
type: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetExtensionProvidersResult]
func GetExtensionProviders(ctx *Context, args *GetExtensionProvidersArgs, opts ...InvokeOption) (*GetExtensionProvidersResult, error)
func GetExtensionProvidersOutput(ctx *Context, args *GetExtensionProvidersOutputArgs, opts ...InvokeOption) GetExtensionProvidersResultOutput
> Note: This function is named GetExtensionProviders
in the Go SDK.
public static class GetExtensionProviders
{
public static Task<GetExtensionProvidersResult> InvokeAsync(GetExtensionProvidersArgs args, InvokeOptions? opts = null)
public static Output<GetExtensionProvidersResult> Invoke(GetExtensionProvidersInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetExtensionProvidersResult> getExtensionProviders(GetExtensionProvidersArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: alicloud:servicemesh/getExtensionProviders:getExtensionProviders
arguments:
# arguments dictionary
The following arguments are supported:
- Service
Mesh stringId The ID of the Service Mesh.
- Type string
The type of the Service Mesh Extension Provider. Valid values:
httpextauth
,grpcextauth
.- Ids List<string>
A list of Service Mesh Extension Provider IDs.
- Name
Regex string A regex string to filter results by Service Mesh Extension Provider name.
- Output
File string File name where to save data source results (after running
pulumi preview
).
- Service
Mesh stringId The ID of the Service Mesh.
- Type string
The type of the Service Mesh Extension Provider. Valid values:
httpextauth
,grpcextauth
.- Ids []string
A list of Service Mesh Extension Provider IDs.
- Name
Regex string A regex string to filter results by Service Mesh Extension Provider name.
- Output
File string File name where to save data source results (after running
pulumi preview
).
- service
Mesh StringId The ID of the Service Mesh.
- type String
The type of the Service Mesh Extension Provider. Valid values:
httpextauth
,grpcextauth
.- ids List<String>
A list of Service Mesh Extension Provider IDs.
- name
Regex String A regex string to filter results by Service Mesh Extension Provider name.
- output
File String File name where to save data source results (after running
pulumi preview
).
- service
Mesh stringId The ID of the Service Mesh.
- type string
The type of the Service Mesh Extension Provider. Valid values:
httpextauth
,grpcextauth
.- ids string[]
A list of Service Mesh Extension Provider IDs.
- name
Regex string A regex string to filter results by Service Mesh Extension Provider name.
- output
File string File name where to save data source results (after running
pulumi preview
).
- service_
mesh_ strid The ID of the Service Mesh.
- type str
The type of the Service Mesh Extension Provider. Valid values:
httpextauth
,grpcextauth
.- ids Sequence[str]
A list of Service Mesh Extension Provider IDs.
- name_
regex str A regex string to filter results by Service Mesh Extension Provider name.
- output_
file str File name where to save data source results (after running
pulumi preview
).
- service
Mesh StringId The ID of the Service Mesh.
- type String
The type of the Service Mesh Extension Provider. Valid values:
httpextauth
,grpcextauth
.- ids List<String>
A list of Service Mesh Extension Provider IDs.
- name
Regex String A regex string to filter results by Service Mesh Extension Provider name.
- output
File String File name where to save data source results (after running
pulumi preview
).
getExtensionProviders Result
The following output properties are available:
- Id string
The provider-assigned unique ID for this managed resource.
- Ids List<string>
- Names List<string>
A list of Extension Provider names.
- Providers
List<Pulumi.
Ali Cloud. Service Mesh. Outputs. Get Extension Providers Provider> A list of Service Mesh Extension Providers. Each element contains the following attributes:
- Service
Mesh stringId The ID of the Service Mesh.
- Type string
The type of the Service Mesh Extension Provider.
- Name
Regex string - Output
File string
- Id string
The provider-assigned unique ID for this managed resource.
- Ids []string
- Names []string
A list of Extension Provider names.
- Providers
[]Get
Extension Providers Provider A list of Service Mesh Extension Providers. Each element contains the following attributes:
- Service
Mesh stringId The ID of the Service Mesh.
- Type string
The type of the Service Mesh Extension Provider.
- Name
Regex string - Output
File string
- id String
The provider-assigned unique ID for this managed resource.
- ids List<String>
- names List<String>
A list of Extension Provider names.
- providers
List<Get
Extension Providers Provider> A list of Service Mesh Extension Providers. Each element contains the following attributes:
- service
Mesh StringId The ID of the Service Mesh.
- type String
The type of the Service Mesh Extension Provider.
- name
Regex String - output
File String
- id string
The provider-assigned unique ID for this managed resource.
- ids string[]
- names string[]
A list of Extension Provider names.
- providers
Get
Extension Providers Provider[] A list of Service Mesh Extension Providers. Each element contains the following attributes:
- service
Mesh stringId The ID of the Service Mesh.
- type string
The type of the Service Mesh Extension Provider.
- name
Regex string - output
File string
- id str
The provider-assigned unique ID for this managed resource.
- ids Sequence[str]
- names Sequence[str]
A list of Extension Provider names.
- providers
Sequence[Get
Extension Providers Provider] A list of Service Mesh Extension Providers. Each element contains the following attributes:
- service_
mesh_ strid The ID of the Service Mesh.
- type str
The type of the Service Mesh Extension Provider.
- name_
regex str - output_
file str
- id String
The provider-assigned unique ID for this managed resource.
- ids List<String>
- names List<String>
A list of Extension Provider names.
- providers List<Property Map>
A list of Service Mesh Extension Providers. Each element contains the following attributes:
- service
Mesh StringId The ID of the Service Mesh.
- type String
The type of the Service Mesh Extension Provider.
- name
Regex String - output
File String
Supporting Types
GetExtensionProvidersProvider
- Config string
The config of the Service Mesh Extension Provider.
- Extension
Provider stringName The name of the Service Mesh Extension Provider.
- Id string
The ID of the Service Mesh Extension Provider. It formats as
<service_mesh_id>:<type>:<extension_provider_name>
.- Service
Mesh stringId The ID of the Service Mesh.
- Type string
The type of the Service Mesh Extension Provider. Valid values:
httpextauth
,grpcextauth
.
- Config string
The config of the Service Mesh Extension Provider.
- Extension
Provider stringName The name of the Service Mesh Extension Provider.
- Id string
The ID of the Service Mesh Extension Provider. It formats as
<service_mesh_id>:<type>:<extension_provider_name>
.- Service
Mesh stringId The ID of the Service Mesh.
- Type string
The type of the Service Mesh Extension Provider. Valid values:
httpextauth
,grpcextauth
.
- config String
The config of the Service Mesh Extension Provider.
- extension
Provider StringName The name of the Service Mesh Extension Provider.
- id String
The ID of the Service Mesh Extension Provider. It formats as
<service_mesh_id>:<type>:<extension_provider_name>
.- service
Mesh StringId The ID of the Service Mesh.
- type String
The type of the Service Mesh Extension Provider. Valid values:
httpextauth
,grpcextauth
.
- config string
The config of the Service Mesh Extension Provider.
- extension
Provider stringName The name of the Service Mesh Extension Provider.
- id string
The ID of the Service Mesh Extension Provider. It formats as
<service_mesh_id>:<type>:<extension_provider_name>
.- service
Mesh stringId The ID of the Service Mesh.
- type string
The type of the Service Mesh Extension Provider. Valid values:
httpextauth
,grpcextauth
.
- config str
The config of the Service Mesh Extension Provider.
- extension_
provider_ strname The name of the Service Mesh Extension Provider.
- id str
The ID of the Service Mesh Extension Provider. It formats as
<service_mesh_id>:<type>:<extension_provider_name>
.- service_
mesh_ strid The ID of the Service Mesh.
- type str
The type of the Service Mesh Extension Provider. Valid values:
httpextauth
,grpcextauth
.
- config String
The config of the Service Mesh Extension Provider.
- extension
Provider StringName The name of the Service Mesh Extension Provider.
- id String
The ID of the Service Mesh Extension Provider. It formats as
<service_mesh_id>:<type>:<extension_provider_name>
.- service
Mesh StringId The ID of the Service Mesh.
- type String
The type of the Service Mesh Extension Provider. Valid values:
httpextauth
,grpcextauth
.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
alicloud
Terraform Provider.