1. Packages
  2. Grafana Cloud
  3. API Docs
  4. ServiceAccount
Grafana v0.4.2 published on Monday, Apr 15, 2024 by pulumiverse

grafana.ServiceAccount

Explore with Pulumi AI

grafana logo
Grafana v0.4.2 published on Monday, Apr 15, 2024 by pulumiverse

    Create ServiceAccount Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ServiceAccount(name: string, args?: ServiceAccountArgs, opts?: CustomResourceOptions);
    @overload
    def ServiceAccount(resource_name: str,
                       args: Optional[ServiceAccountArgs] = None,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def ServiceAccount(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       is_disabled: Optional[bool] = None,
                       name: Optional[str] = None,
                       org_id: Optional[str] = None,
                       role: Optional[str] = None)
    func NewServiceAccount(ctx *Context, name string, args *ServiceAccountArgs, opts ...ResourceOption) (*ServiceAccount, error)
    public ServiceAccount(string name, ServiceAccountArgs? args = null, CustomResourceOptions? opts = null)
    public ServiceAccount(String name, ServiceAccountArgs args)
    public ServiceAccount(String name, ServiceAccountArgs args, CustomResourceOptions options)
    
    type: grafana:ServiceAccount
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ServiceAccountArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ServiceAccountArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ServiceAccountArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ServiceAccountArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ServiceAccountArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var serviceAccountResource = new Grafana.ServiceAccount("serviceAccountResource", new()
    {
        IsDisabled = false,
        Name = "string",
        OrgId = "string",
        Role = "string",
    });
    
    example, err := grafana.NewServiceAccount(ctx, "serviceAccountResource", &grafana.ServiceAccountArgs{
    	IsDisabled: pulumi.Bool(false),
    	Name:       pulumi.String("string"),
    	OrgId:      pulumi.String("string"),
    	Role:       pulumi.String("string"),
    })
    
    var serviceAccountResource = new ServiceAccount("serviceAccountResource", ServiceAccountArgs.builder()        
        .isDisabled(false)
        .name("string")
        .orgId("string")
        .role("string")
        .build());
    
    service_account_resource = grafana.ServiceAccount("serviceAccountResource",
        is_disabled=False,
        name="string",
        org_id="string",
        role="string")
    
    const serviceAccountResource = new grafana.ServiceAccount("serviceAccountResource", {
        isDisabled: false,
        name: "string",
        orgId: "string",
        role: "string",
    });
    
    type: grafana:ServiceAccount
    properties:
        isDisabled: false
        name: string
        orgId: string
        role: string
    

    ServiceAccount Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The ServiceAccount resource accepts the following input properties:

    IsDisabled bool
    The disabled status for the service account.
    Name string
    The name of the service account.
    OrgId string
    The Organization ID. If not set, the Org ID defined in the provider block will be used.
    Role string
    The basic role of the service account in the organization.
    IsDisabled bool
    The disabled status for the service account.
    Name string
    The name of the service account.
    OrgId string
    The Organization ID. If not set, the Org ID defined in the provider block will be used.
    Role string
    The basic role of the service account in the organization.
    isDisabled Boolean
    The disabled status for the service account.
    name String
    The name of the service account.
    orgId String
    The Organization ID. If not set, the Org ID defined in the provider block will be used.
    role String
    The basic role of the service account in the organization.
    isDisabled boolean
    The disabled status for the service account.
    name string
    The name of the service account.
    orgId string
    The Organization ID. If not set, the Org ID defined in the provider block will be used.
    role string
    The basic role of the service account in the organization.
    is_disabled bool
    The disabled status for the service account.
    name str
    The name of the service account.
    org_id str
    The Organization ID. If not set, the Org ID defined in the provider block will be used.
    role str
    The basic role of the service account in the organization.
    isDisabled Boolean
    The disabled status for the service account.
    name String
    The name of the service account.
    orgId String
    The Organization ID. If not set, the Org ID defined in the provider block will be used.
    role String
    The basic role of the service account in the organization.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ServiceAccount resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing ServiceAccount Resource

    Get an existing ServiceAccount resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ServiceAccountState, opts?: CustomResourceOptions): ServiceAccount
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            is_disabled: Optional[bool] = None,
            name: Optional[str] = None,
            org_id: Optional[str] = None,
            role: Optional[str] = None) -> ServiceAccount
    func GetServiceAccount(ctx *Context, name string, id IDInput, state *ServiceAccountState, opts ...ResourceOption) (*ServiceAccount, error)
    public static ServiceAccount Get(string name, Input<string> id, ServiceAccountState? state, CustomResourceOptions? opts = null)
    public static ServiceAccount get(String name, Output<String> id, ServiceAccountState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    IsDisabled bool
    The disabled status for the service account.
    Name string
    The name of the service account.
    OrgId string
    The Organization ID. If not set, the Org ID defined in the provider block will be used.
    Role string
    The basic role of the service account in the organization.
    IsDisabled bool
    The disabled status for the service account.
    Name string
    The name of the service account.
    OrgId string
    The Organization ID. If not set, the Org ID defined in the provider block will be used.
    Role string
    The basic role of the service account in the organization.
    isDisabled Boolean
    The disabled status for the service account.
    name String
    The name of the service account.
    orgId String
    The Organization ID. If not set, the Org ID defined in the provider block will be used.
    role String
    The basic role of the service account in the organization.
    isDisabled boolean
    The disabled status for the service account.
    name string
    The name of the service account.
    orgId string
    The Organization ID. If not set, the Org ID defined in the provider block will be used.
    role string
    The basic role of the service account in the organization.
    is_disabled bool
    The disabled status for the service account.
    name str
    The name of the service account.
    org_id str
    The Organization ID. If not set, the Org ID defined in the provider block will be used.
    role str
    The basic role of the service account in the organization.
    isDisabled Boolean
    The disabled status for the service account.
    name String
    The name of the service account.
    orgId String
    The Organization ID. If not set, the Org ID defined in the provider block will be used.
    role String
    The basic role of the service account in the organization.

    Package Details

    Repository
    grafana pulumiverse/pulumi-grafana
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the grafana Terraform Provider.
    grafana logo
    Grafana v0.4.2 published on Monday, Apr 15, 2024 by pulumiverse