outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale
outscale.getCas
Explore with Pulumi AI
Provides information about Certificate Authorities (CAs).
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 cas01 = outscale.getCas({
filters: [{
name: "ca_ids",
values: [
"ca-12345678",
"ca-87654321",
],
}],
});
import pulumi
import pulumi_outscale as outscale
cas01 = outscale.get_cas(filters=[{
"name": "ca_ids",
"values": [
"ca-12345678",
"ca-87654321",
],
}])
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.GetCas(ctx, &outscale.GetCasArgs{
Filters: []outscale.GetCasFilter{
{
Name: "ca_ids",
Values: []string{
"ca-12345678",
"ca-87654321",
},
},
},
}, 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 cas01 = Outscale.GetCas.Invoke(new()
{
Filters = new[]
{
new Outscale.Inputs.GetCasFilterInputArgs
{
Name = "ca_ids",
Values = new[]
{
"ca-12345678",
"ca-87654321",
},
},
},
});
});
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.GetCasArgs;
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 cas01 = OutscaleFunctions.getCas(GetCasArgs.builder()
.filters(GetCasFilterArgs.builder()
.name("ca_ids")
.values(
"ca-12345678",
"ca-87654321")
.build())
.build());
}
}
variables:
cas01:
fn::invoke:
function: outscale:getCas
arguments:
filters:
- name: ca_ids
values:
- ca-12345678
- ca-87654321
Using getCas
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 getCas(args: GetCasArgs, opts?: InvokeOptions): Promise<GetCasResult>
function getCasOutput(args: GetCasOutputArgs, opts?: InvokeOptions): Output<GetCasResult>
def get_cas(filters: Optional[Sequence[GetCasFilter]] = None,
id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetCasResult
def get_cas_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetCasFilterArgs]]]] = None,
id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetCasResult]
func GetCas(ctx *Context, args *GetCasArgs, opts ...InvokeOption) (*GetCasResult, error)
func GetCasOutput(ctx *Context, args *GetCasOutputArgs, opts ...InvokeOption) GetCasResultOutput
> Note: This function is named GetCas
in the Go SDK.
public static class GetCas
{
public static Task<GetCasResult> InvokeAsync(GetCasArgs args, InvokeOptions? opts = null)
public static Output<GetCasResult> Invoke(GetCasInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetCasResult> getCas(GetCasArgs args, InvokeOptions options)
public static Output<GetCasResult> getCas(GetCasArgs args, InvokeOptions options)
fn::invoke:
function: outscale:index/getCas:getCas
arguments:
# arguments dictionary
The following arguments are supported:
- Filters
List<Get
Cas 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
Cas 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
Cas 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
Cas 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
Cas 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
getCas Result
The following output properties are available:
- Cas
List<Get
Cas Ca> - Information about one or more CAs.
- Id string
- Request
Id string - Filters
List<Get
Cas Filter>
- Cas
[]Get
Cas Ca - Information about one or more CAs.
- Id string
- Request
Id string - Filters
[]Get
Cas Filter
- cas
List<Get
Cas Ca> - Information about one or more CAs.
- id String
- request
Id String - filters
List<Get
Cas Filter>
- cas
Get
Cas Ca[] - Information about one or more CAs.
- id string
- request
Id string - filters
Get
Cas Filter[]
- cas
Sequence[Get
Cas Ca] - Information about one or more CAs.
- id str
- request_
id str - filters
Sequence[Get
Cas Filter]
- cas List<Property Map>
- Information about one or more CAs.
- id String
- request
Id String - filters List<Property Map>
Supporting Types
GetCasCa
- Ca
Fingerprint string - The fingerprint of the CA.
- Ca
Id string - The ID of the CA.
- Description string
- The description of the CA.
- Ca
Fingerprint string - The fingerprint of the CA.
- Ca
Id string - The ID of the CA.
- Description string
- The description of the CA.
- ca
Fingerprint String - The fingerprint of the CA.
- ca
Id String - The ID of the CA.
- description String
- The description of the CA.
- ca
Fingerprint string - The fingerprint of the CA.
- ca
Id string - The ID of the CA.
- description string
- The description of the CA.
- ca_
fingerprint str - The fingerprint of the CA.
- ca_
id str - The ID of the CA.
- description str
- The description of the CA.
- ca
Fingerprint String - The fingerprint of the CA.
- ca
Id String - The ID of the CA.
- description String
- The description of the CA.
GetCasFilter
Package Details
- Repository
- outscale outscale/terraform-provider-outscale
- License
- Notes
- This Pulumi package is based on the
outscale
Terraform Provider.