linode.getAccountSettings
Explore with Pulumi AI
Provides information about Linode account settings.
Example Usage
The following example shows how one might use this data source to access information about Linode account settings.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Linode = Pulumi.Linode;
return await Deployment.RunAsync(() =>
{
var example = Linode.GetAccountSettings.Invoke();
});
package main
import (
"github.com/pulumi/pulumi-linode/sdk/v4/go/linode"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := linode.LookupAccountSettings(ctx, nil, nil)
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.linode.LinodeFunctions;
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 = LinodeFunctions.getAccountSettings();
}
}
import pulumi
import pulumi_linode as linode
example = linode.get_account_settings()
import * as pulumi from "@pulumi/pulumi";
import * as linode from "@pulumi/linode";
const example = linode.getAccountSettings({});
variables:
example:
fn::invoke:
Function: linode:getAccountSettings
Arguments: {}
Using getAccountSettings
function getAccountSettings(opts?: InvokeOptions): Promise<GetAccountSettingsResult>
def get_account_settings(opts: Optional[InvokeOptions] = None) -> GetAccountSettingsResult
func LookupAccountSettings(ctx *Context, opts ...InvokeOption) (*LookupAccountSettingsResult, error)
> Note: This function is named LookupAccountSettings
in the Go SDK.
public static class GetAccountSettings
{
public static Task<GetAccountSettingsResult> InvokeAsync(InvokeOptions? opts = null)
}
public static CompletableFuture<GetAccountSettingsResult> getAccountSettings(InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: linode:index/getAccountSettings:getAccountSettings
arguments:
# arguments dictionary
getAccountSettings Result
The following output properties are available:
- Backups
Enabled bool Account-wide backups default.
- Id string
- Longview
Subscription string The Longview Pro tier you are currently subscribed to.
- Managed bool
Enables monitoring for connectivity, response, and total request time.
- Network
Helper bool Enables network helper across all users by default for new Linodes and Linode Configs.
- Object
Storage string A string describing the status of this account’s Object Storage service enrollment.
- Backups
Enabled bool Account-wide backups default.
- Id string
- Longview
Subscription string The Longview Pro tier you are currently subscribed to.
- Managed bool
Enables monitoring for connectivity, response, and total request time.
- Network
Helper bool Enables network helper across all users by default for new Linodes and Linode Configs.
- Object
Storage string A string describing the status of this account’s Object Storage service enrollment.
- backups
Enabled Boolean Account-wide backups default.
- id String
- longview
Subscription String The Longview Pro tier you are currently subscribed to.
- managed Boolean
Enables monitoring for connectivity, response, and total request time.
- network
Helper Boolean Enables network helper across all users by default for new Linodes and Linode Configs.
- object
Storage String A string describing the status of this account’s Object Storage service enrollment.
- backups
Enabled boolean Account-wide backups default.
- id string
- longview
Subscription string The Longview Pro tier you are currently subscribed to.
- managed boolean
Enables monitoring for connectivity, response, and total request time.
- network
Helper boolean Enables network helper across all users by default for new Linodes and Linode Configs.
- object
Storage string A string describing the status of this account’s Object Storage service enrollment.
- backups_
enabled bool Account-wide backups default.
- id str
- longview_
subscription str The Longview Pro tier you are currently subscribed to.
- managed bool
Enables monitoring for connectivity, response, and total request time.
- network_
helper bool Enables network helper across all users by default for new Linodes and Linode Configs.
- object_
storage str A string describing the status of this account’s Object Storage service enrollment.
- backups
Enabled Boolean Account-wide backups default.
- id String
- longview
Subscription String The Longview Pro tier you are currently subscribed to.
- managed Boolean
Enables monitoring for connectivity, response, and total request time.
- network
Helper Boolean Enables network helper across all users by default for new Linodes and Linode Configs.
- object
Storage String A string describing the status of this account’s Object Storage service enrollment.
Package Details
- Repository
- Linode pulumi/pulumi-linode
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
linode
Terraform Provider.