We recommend using Azure Native.
Azure v6.10.0 published on Tuesday, Nov 19, 2024 by Pulumi
azure.oracle.getAdbsCharacterSets
Explore with Pulumi AI
Gets a list of supported character sets.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
export = async () => {
const example = await azure.oracle.getAdbsCharacterSets({
location: "West Europe",
});
return {
example: example,
};
}
import pulumi
import pulumi_azure as azure
example = azure.oracle.get_adbs_character_sets(location="West Europe")
pulumi.export("example", example)
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/oracle"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := oracle.GetAdbsCharacterSets(ctx, &oracle.GetAdbsCharacterSetsArgs{
Location: "West Europe",
}, nil)
if err != nil {
return err
}
ctx.Export("example", example)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var example = Azure.Oracle.GetAdbsCharacterSets.Invoke(new()
{
Location = "West Europe",
});
return new Dictionary<string, object?>
{
["example"] = example,
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.oracle.OracleFunctions;
import com.pulumi.azure.oracle.inputs.GetAdbsCharacterSetsArgs;
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 example = OracleFunctions.getAdbsCharacterSets(GetAdbsCharacterSetsArgs.builder()
.location("West Europe")
.build());
ctx.export("example", example.applyValue(getAdbsCharacterSetsResult -> getAdbsCharacterSetsResult));
}
}
variables:
example:
fn::invoke:
Function: azure:oracle:getAdbsCharacterSets
Arguments:
location: West Europe
outputs:
example: ${example}
Using getAdbsCharacterSets
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 getAdbsCharacterSets(args: GetAdbsCharacterSetsArgs, opts?: InvokeOptions): Promise<GetAdbsCharacterSetsResult>
function getAdbsCharacterSetsOutput(args: GetAdbsCharacterSetsOutputArgs, opts?: InvokeOptions): Output<GetAdbsCharacterSetsResult>
def get_adbs_character_sets(location: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetAdbsCharacterSetsResult
def get_adbs_character_sets_output(location: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetAdbsCharacterSetsResult]
func GetAdbsCharacterSets(ctx *Context, args *GetAdbsCharacterSetsArgs, opts ...InvokeOption) (*GetAdbsCharacterSetsResult, error)
func GetAdbsCharacterSetsOutput(ctx *Context, args *GetAdbsCharacterSetsOutputArgs, opts ...InvokeOption) GetAdbsCharacterSetsResultOutput
> Note: This function is named GetAdbsCharacterSets
in the Go SDK.
public static class GetAdbsCharacterSets
{
public static Task<GetAdbsCharacterSetsResult> InvokeAsync(GetAdbsCharacterSetsArgs args, InvokeOptions? opts = null)
public static Output<GetAdbsCharacterSetsResult> Invoke(GetAdbsCharacterSetsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetAdbsCharacterSetsResult> getAdbsCharacterSets(GetAdbsCharacterSetsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: azure:oracle/getAdbsCharacterSets:getAdbsCharacterSets
arguments:
# arguments dictionary
The following arguments are supported:
- Location string
- The Azure Region to query for the character sets in.
- Location string
- The Azure Region to query for the character sets in.
- location String
- The Azure Region to query for the character sets in.
- location string
- The Azure Region to query for the character sets in.
- location str
- The Azure Region to query for the character sets in.
- location String
- The Azure Region to query for the character sets in.
getAdbsCharacterSets Result
The following output properties are available:
- Character
Sets List<GetAdbs Character Sets Character Set> - A
character_sets
block as defined below. - Id string
- The provider-assigned unique ID for this managed resource.
- Location string
- Character
Sets []GetAdbs Character Sets Character Set - A
character_sets
block as defined below. - Id string
- The provider-assigned unique ID for this managed resource.
- Location string
- character
Sets List<GetAdbs Character Sets Character Set> - A
character_sets
block as defined below. - id String
- The provider-assigned unique ID for this managed resource.
- location String
- character
Sets GetAdbs Character Sets Character Set[] - A
character_sets
block as defined below. - id string
- The provider-assigned unique ID for this managed resource.
- location string
- character_
sets Sequence[GetAdbs Character Sets Character Set] - A
character_sets
block as defined below. - id str
- The provider-assigned unique ID for this managed resource.
- location str
- character
Sets List<Property Map> - A
character_sets
block as defined below. - id String
- The provider-assigned unique ID for this managed resource.
- location String
Supporting Types
GetAdbsCharacterSetsCharacterSet
- Character
Set string - A valid Oracle character set.
- Character
Set string - A valid Oracle character set.
- character
Set String - A valid Oracle character set.
- character
Set string - A valid Oracle character set.
- character_
set str - A valid Oracle character set.
- character
Set String - A valid Oracle character set.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.