1. Packages
  2. Googleworkspace Provider
  3. API Docs
  4. getChromePolicySchema
googleworkspace 0.7.0 published on Wednesday, Jan 15, 2025 by hashicorp

googleworkspace.getChromePolicySchema

Explore with Pulumi AI

googleworkspace logo
googleworkspace 0.7.0 published on Wednesday, Jan 15, 2025 by hashicorp

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as googleworkspace from "@pulumi/googleworkspace";
    
    const example = googleworkspace.getChromePolicySchema({
        schemaName: "chrome.printers.AllowForUsers",
    });
    export const fieldDescriptions = example.then(example => example.fieldDescriptions);
    
    import pulumi
    import pulumi_googleworkspace as googleworkspace
    
    example = googleworkspace.get_chrome_policy_schema(schema_name="chrome.printers.AllowForUsers")
    pulumi.export("fieldDescriptions", example.field_descriptions)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/googleworkspace/googleworkspace"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := googleworkspace.GetChromePolicySchema(ctx, &googleworkspace.GetChromePolicySchemaArgs{
    			SchemaName: "chrome.printers.AllowForUsers",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("fieldDescriptions", example.FieldDescriptions)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Googleworkspace = Pulumi.Googleworkspace;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Googleworkspace.GetChromePolicySchema.Invoke(new()
        {
            SchemaName = "chrome.printers.AllowForUsers",
        });
    
        return new Dictionary<string, object?>
        {
            ["fieldDescriptions"] = example.Apply(getChromePolicySchemaResult => getChromePolicySchemaResult.FieldDescriptions),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.googleworkspace.GoogleworkspaceFunctions;
    import com.pulumi.googleworkspace.inputs.GetChromePolicySchemaArgs;
    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 = GoogleworkspaceFunctions.getChromePolicySchema(GetChromePolicySchemaArgs.builder()
                .schemaName("chrome.printers.AllowForUsers")
                .build());
    
            ctx.export("fieldDescriptions", example.applyValue(getChromePolicySchemaResult -> getChromePolicySchemaResult.fieldDescriptions()));
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: googleworkspace:getChromePolicySchema
          arguments:
            schemaName: chrome.printers.AllowForUsers
    outputs:
      fieldDescriptions: ${example.fieldDescriptions}
    

    Using getChromePolicySchema

    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 getChromePolicySchema(args: GetChromePolicySchemaArgs, opts?: InvokeOptions): Promise<GetChromePolicySchemaResult>
    function getChromePolicySchemaOutput(args: GetChromePolicySchemaOutputArgs, opts?: InvokeOptions): Output<GetChromePolicySchemaResult>
    def get_chrome_policy_schema(id: Optional[str] = None,
                                 schema_name: Optional[str] = None,
                                 opts: Optional[InvokeOptions] = None) -> GetChromePolicySchemaResult
    def get_chrome_policy_schema_output(id: Optional[pulumi.Input[str]] = None,
                                 schema_name: Optional[pulumi.Input[str]] = None,
                                 opts: Optional[InvokeOptions] = None) -> Output[GetChromePolicySchemaResult]
    func GetChromePolicySchema(ctx *Context, args *GetChromePolicySchemaArgs, opts ...InvokeOption) (*GetChromePolicySchemaResult, error)
    func GetChromePolicySchemaOutput(ctx *Context, args *GetChromePolicySchemaOutputArgs, opts ...InvokeOption) GetChromePolicySchemaResultOutput

    > Note: This function is named GetChromePolicySchema in the Go SDK.

    public static class GetChromePolicySchema 
    {
        public static Task<GetChromePolicySchemaResult> InvokeAsync(GetChromePolicySchemaArgs args, InvokeOptions? opts = null)
        public static Output<GetChromePolicySchemaResult> Invoke(GetChromePolicySchemaInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetChromePolicySchemaResult> getChromePolicySchema(GetChromePolicySchemaArgs args, InvokeOptions options)
    public static Output<GetChromePolicySchemaResult> getChromePolicySchema(GetChromePolicySchemaArgs args, InvokeOptions options)
    
    fn::invoke:
      function: googleworkspace:index/getChromePolicySchema:getChromePolicySchema
      arguments:
        # arguments dictionary

    The following arguments are supported:

    SchemaName string
    The full qualified name of the policy schema
    Id string
    The ID of this resource.
    SchemaName string
    The full qualified name of the policy schema
    Id string
    The ID of this resource.
    schemaName String
    The full qualified name of the policy schema
    id String
    The ID of this resource.
    schemaName string
    The full qualified name of the policy schema
    id string
    The ID of this resource.
    schema_name str
    The full qualified name of the policy schema
    id str
    The ID of this resource.
    schemaName String
    The full qualified name of the policy schema
    id String
    The ID of this resource.

    getChromePolicySchema Result

    The following output properties are available:

    AccessRestrictions List<string>
    Specific access restrictions related to this policy.
    AdditionalTargetKeyNames List<GetChromePolicySchemaAdditionalTargetKeyName>
    Additional key names that will be used to identify the target of the policy value. When specifying a policyTargetKey, each of the additional keys specified here will have to be included in the additionalTargetKeys map.
    Definitions List<GetChromePolicySchemaDefinition>
    Schema definition using proto descriptor.
    FieldDescriptions string
    Detailed description of each field that is part of the schema, represented as a JSON string.
    Id string
    The ID of this resource.
    Notices List<GetChromePolicySchemaNotice>
    Special notice messages related to setting certain values in certain fields in the schema.
    PolicyDescription string
    Description about the policy schema for user consumption.
    SchemaName string
    The full qualified name of the policy schema
    SupportUri string
    URI to related support article for this schema.
    AccessRestrictions []string
    Specific access restrictions related to this policy.
    AdditionalTargetKeyNames []GetChromePolicySchemaAdditionalTargetKeyName
    Additional key names that will be used to identify the target of the policy value. When specifying a policyTargetKey, each of the additional keys specified here will have to be included in the additionalTargetKeys map.
    Definitions []GetChromePolicySchemaDefinition
    Schema definition using proto descriptor.
    FieldDescriptions string
    Detailed description of each field that is part of the schema, represented as a JSON string.
    Id string
    The ID of this resource.
    Notices []GetChromePolicySchemaNotice
    Special notice messages related to setting certain values in certain fields in the schema.
    PolicyDescription string
    Description about the policy schema for user consumption.
    SchemaName string
    The full qualified name of the policy schema
    SupportUri string
    URI to related support article for this schema.
    accessRestrictions List<String>
    Specific access restrictions related to this policy.
    additionalTargetKeyNames List<GetChromePolicySchemaAdditionalTargetKeyName>
    Additional key names that will be used to identify the target of the policy value. When specifying a policyTargetKey, each of the additional keys specified here will have to be included in the additionalTargetKeys map.
    definitions List<GetChromePolicySchemaDefinition>
    Schema definition using proto descriptor.
    fieldDescriptions String
    Detailed description of each field that is part of the schema, represented as a JSON string.
    id String
    The ID of this resource.
    notices List<GetChromePolicySchemaNotice>
    Special notice messages related to setting certain values in certain fields in the schema.
    policyDescription String
    Description about the policy schema for user consumption.
    schemaName String
    The full qualified name of the policy schema
    supportUri String
    URI to related support article for this schema.
    accessRestrictions string[]
    Specific access restrictions related to this policy.
    additionalTargetKeyNames GetChromePolicySchemaAdditionalTargetKeyName[]
    Additional key names that will be used to identify the target of the policy value. When specifying a policyTargetKey, each of the additional keys specified here will have to be included in the additionalTargetKeys map.
    definitions GetChromePolicySchemaDefinition[]
    Schema definition using proto descriptor.
    fieldDescriptions string
    Detailed description of each field that is part of the schema, represented as a JSON string.
    id string
    The ID of this resource.
    notices GetChromePolicySchemaNotice[]
    Special notice messages related to setting certain values in certain fields in the schema.
    policyDescription string
    Description about the policy schema for user consumption.
    schemaName string
    The full qualified name of the policy schema
    supportUri string
    URI to related support article for this schema.
    access_restrictions Sequence[str]
    Specific access restrictions related to this policy.
    additional_target_key_names Sequence[GetChromePolicySchemaAdditionalTargetKeyName]
    Additional key names that will be used to identify the target of the policy value. When specifying a policyTargetKey, each of the additional keys specified here will have to be included in the additionalTargetKeys map.
    definitions Sequence[GetChromePolicySchemaDefinition]
    Schema definition using proto descriptor.
    field_descriptions str
    Detailed description of each field that is part of the schema, represented as a JSON string.
    id str
    The ID of this resource.
    notices Sequence[GetChromePolicySchemaNotice]
    Special notice messages related to setting certain values in certain fields in the schema.
    policy_description str
    Description about the policy schema for user consumption.
    schema_name str
    The full qualified name of the policy schema
    support_uri str
    URI to related support article for this schema.
    accessRestrictions List<String>
    Specific access restrictions related to this policy.
    additionalTargetKeyNames List<Property Map>
    Additional key names that will be used to identify the target of the policy value. When specifying a policyTargetKey, each of the additional keys specified here will have to be included in the additionalTargetKeys map.
    definitions List<Property Map>
    Schema definition using proto descriptor.
    fieldDescriptions String
    Detailed description of each field that is part of the schema, represented as a JSON string.
    id String
    The ID of this resource.
    notices List<Property Map>
    Special notice messages related to setting certain values in certain fields in the schema.
    policyDescription String
    Description about the policy schema for user consumption.
    schemaName String
    The full qualified name of the policy schema
    supportUri String
    URI to related support article for this schema.

    Supporting Types

    GetChromePolicySchemaAdditionalTargetKeyName

    Key string
    KeyDescription string
    Key string
    KeyDescription string
    key String
    keyDescription String
    key string
    keyDescription string
    key String
    keyDescription String

    GetChromePolicySchemaDefinition

    GetChromePolicySchemaDefinitionEnumType

    GetChromePolicySchemaDefinitionEnumTypeValue

    Name string
    Number double
    Name string
    Number float64
    name String
    number Double
    name string
    number number
    name str
    number float
    name String
    number Number

    GetChromePolicySchemaNotice

    Package Details

    Repository
    googleworkspace hashicorp/terraform-provider-googleworkspace
    License
    Notes
    This Pulumi package is based on the googleworkspace Terraform Provider.
    googleworkspace logo
    googleworkspace 0.7.0 published on Wednesday, Jan 15, 2025 by hashicorp