Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.aiplatform/v1beta1.Context
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Creates a Context associated with a MetadataStore.
Create Context Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Context(name: string, args: ContextArgs, opts?: CustomResourceOptions);@overload
def Context(resource_name: str,
            args: ContextArgs,
            opts: Optional[ResourceOptions] = None)
@overload
def Context(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            metadata_store_id: Optional[str] = None,
            context_id: Optional[str] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            etag: Optional[str] = None,
            labels: Optional[Mapping[str, str]] = None,
            location: Optional[str] = None,
            metadata: Optional[Mapping[str, str]] = None,
            name: Optional[str] = None,
            project: Optional[str] = None,
            schema_title: Optional[str] = None,
            schema_version: Optional[str] = None)func NewContext(ctx *Context, name string, args ContextArgs, opts ...ResourceOption) (*Context, error)public Context(string name, ContextArgs args, CustomResourceOptions? opts = null)
public Context(String name, ContextArgs args)
public Context(String name, ContextArgs args, CustomResourceOptions options)
type: google-native:aiplatform/v1beta1:Context
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 ContextArgs
- 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 ContextArgs
- 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 ContextArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ContextArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ContextArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var google_nativeContextResource = new GoogleNative.Aiplatform.V1Beta1.Context("google-nativeContextResource", new()
{
    MetadataStoreId = "string",
    ContextId = "string",
    Description = "string",
    DisplayName = "string",
    Etag = "string",
    Labels = 
    {
        { "string", "string" },
    },
    Location = "string",
    Metadata = 
    {
        { "string", "string" },
    },
    Name = "string",
    Project = "string",
    SchemaTitle = "string",
    SchemaVersion = "string",
});
example, err := aiplatformv1beta1.NewContext(ctx, "google-nativeContextResource", &aiplatformv1beta1.ContextArgs{
	MetadataStoreId: pulumi.String("string"),
	ContextId:       pulumi.String("string"),
	Description:     pulumi.String("string"),
	DisplayName:     pulumi.String("string"),
	Etag:            pulumi.String("string"),
	Labels: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Location: pulumi.String("string"),
	Metadata: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Name:          pulumi.String("string"),
	Project:       pulumi.String("string"),
	SchemaTitle:   pulumi.String("string"),
	SchemaVersion: pulumi.String("string"),
})
var google_nativeContextResource = new Context("google-nativeContextResource", ContextArgs.builder()
    .metadataStoreId("string")
    .contextId("string")
    .description("string")
    .displayName("string")
    .etag("string")
    .labels(Map.of("string", "string"))
    .location("string")
    .metadata(Map.of("string", "string"))
    .name("string")
    .project("string")
    .schemaTitle("string")
    .schemaVersion("string")
    .build());
google_native_context_resource = google_native.aiplatform.v1beta1.Context("google-nativeContextResource",
    metadata_store_id="string",
    context_id="string",
    description="string",
    display_name="string",
    etag="string",
    labels={
        "string": "string",
    },
    location="string",
    metadata={
        "string": "string",
    },
    name="string",
    project="string",
    schema_title="string",
    schema_version="string")
const google_nativeContextResource = new google_native.aiplatform.v1beta1.Context("google-nativeContextResource", {
    metadataStoreId: "string",
    contextId: "string",
    description: "string",
    displayName: "string",
    etag: "string",
    labels: {
        string: "string",
    },
    location: "string",
    metadata: {
        string: "string",
    },
    name: "string",
    project: "string",
    schemaTitle: "string",
    schemaVersion: "string",
});
type: google-native:aiplatform/v1beta1:Context
properties:
    contextId: string
    description: string
    displayName: string
    etag: string
    labels:
        string: string
    location: string
    metadata:
        string: string
    metadataStoreId: string
    name: string
    project: string
    schemaTitle: string
    schemaVersion: string
Context Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Context resource accepts the following input properties:
- MetadataStore stringId 
- ContextId string
- The {context} portion of the resource name with the format: projects/{project}/locations/{location}/metadataStores/{metadatastore}/contexts/{context}. If not provided, the Context's ID will be a UUID generated by the service. Must be 4-128 characters in length. Valid characters are/a-z-/. Must be unique across all Contexts in the parent MetadataStore. (Otherwise the request will fail with ALREADY_EXISTS, or PERMISSION_DENIED if the caller can't view the preexisting Context.)
- Description string
- Description of the Context
- DisplayName string
- User provided display name of the Context. May be up to 128 Unicode characters.
- Etag string
- An eTag used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens.
- Labels Dictionary<string, string>
- The labels with user-defined metadata to organize your Contexts. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. No more than 64 user labels can be associated with one Context (System labels are excluded).
- Location string
- Metadata Dictionary<string, string>
- Properties of the Context. Top level metadata keys' heading and trailing spaces will be trimmed. The size of this field should not exceed 200KB.
- Name string
- Immutable. The resource name of the Context.
- Project string
- SchemaTitle string
- The title of the schema describing the metadata. Schema title and version is expected to be registered in earlier Create Schema calls. And both are used together as unique identifiers to identify schemas within the local metadata store.
- SchemaVersion string
- The version of the schema in schema_name to use. Schema title and version is expected to be registered in earlier Create Schema calls. And both are used together as unique identifiers to identify schemas within the local metadata store.
- MetadataStore stringId 
- ContextId string
- The {context} portion of the resource name with the format: projects/{project}/locations/{location}/metadataStores/{metadatastore}/contexts/{context}. If not provided, the Context's ID will be a UUID generated by the service. Must be 4-128 characters in length. Valid characters are/a-z-/. Must be unique across all Contexts in the parent MetadataStore. (Otherwise the request will fail with ALREADY_EXISTS, or PERMISSION_DENIED if the caller can't view the preexisting Context.)
- Description string
- Description of the Context
- DisplayName string
- User provided display name of the Context. May be up to 128 Unicode characters.
- Etag string
- An eTag used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens.
- Labels map[string]string
- The labels with user-defined metadata to organize your Contexts. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. No more than 64 user labels can be associated with one Context (System labels are excluded).
- Location string
- Metadata map[string]string
- Properties of the Context. Top level metadata keys' heading and trailing spaces will be trimmed. The size of this field should not exceed 200KB.
- Name string
- Immutable. The resource name of the Context.
- Project string
- SchemaTitle string
- The title of the schema describing the metadata. Schema title and version is expected to be registered in earlier Create Schema calls. And both are used together as unique identifiers to identify schemas within the local metadata store.
- SchemaVersion string
- The version of the schema in schema_name to use. Schema title and version is expected to be registered in earlier Create Schema calls. And both are used together as unique identifiers to identify schemas within the local metadata store.
- metadataStore StringId 
- contextId String
- The {context} portion of the resource name with the format: projects/{project}/locations/{location}/metadataStores/{metadatastore}/contexts/{context}. If not provided, the Context's ID will be a UUID generated by the service. Must be 4-128 characters in length. Valid characters are/a-z-/. Must be unique across all Contexts in the parent MetadataStore. (Otherwise the request will fail with ALREADY_EXISTS, or PERMISSION_DENIED if the caller can't view the preexisting Context.)
- description String
- Description of the Context
- displayName String
- User provided display name of the Context. May be up to 128 Unicode characters.
- etag String
- An eTag used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens.
- labels Map<String,String>
- The labels with user-defined metadata to organize your Contexts. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. No more than 64 user labels can be associated with one Context (System labels are excluded).
- location String
- metadata Map<String,String>
- Properties of the Context. Top level metadata keys' heading and trailing spaces will be trimmed. The size of this field should not exceed 200KB.
- name String
- Immutable. The resource name of the Context.
- project String
- schemaTitle String
- The title of the schema describing the metadata. Schema title and version is expected to be registered in earlier Create Schema calls. And both are used together as unique identifiers to identify schemas within the local metadata store.
- schemaVersion String
- The version of the schema in schema_name to use. Schema title and version is expected to be registered in earlier Create Schema calls. And both are used together as unique identifiers to identify schemas within the local metadata store.
- metadataStore stringId 
- contextId string
- The {context} portion of the resource name with the format: projects/{project}/locations/{location}/metadataStores/{metadatastore}/contexts/{context}. If not provided, the Context's ID will be a UUID generated by the service. Must be 4-128 characters in length. Valid characters are/a-z-/. Must be unique across all Contexts in the parent MetadataStore. (Otherwise the request will fail with ALREADY_EXISTS, or PERMISSION_DENIED if the caller can't view the preexisting Context.)
- description string
- Description of the Context
- displayName string
- User provided display name of the Context. May be up to 128 Unicode characters.
- etag string
- An eTag used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens.
- labels {[key: string]: string}
- The labels with user-defined metadata to organize your Contexts. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. No more than 64 user labels can be associated with one Context (System labels are excluded).
- location string
- metadata {[key: string]: string}
- Properties of the Context. Top level metadata keys' heading and trailing spaces will be trimmed. The size of this field should not exceed 200KB.
- name string
- Immutable. The resource name of the Context.
- project string
- schemaTitle string
- The title of the schema describing the metadata. Schema title and version is expected to be registered in earlier Create Schema calls. And both are used together as unique identifiers to identify schemas within the local metadata store.
- schemaVersion string
- The version of the schema in schema_name to use. Schema title and version is expected to be registered in earlier Create Schema calls. And both are used together as unique identifiers to identify schemas within the local metadata store.
- metadata_store_ strid 
- context_id str
- The {context} portion of the resource name with the format: projects/{project}/locations/{location}/metadataStores/{metadatastore}/contexts/{context}. If not provided, the Context's ID will be a UUID generated by the service. Must be 4-128 characters in length. Valid characters are/a-z-/. Must be unique across all Contexts in the parent MetadataStore. (Otherwise the request will fail with ALREADY_EXISTS, or PERMISSION_DENIED if the caller can't view the preexisting Context.)
- description str
- Description of the Context
- display_name str
- User provided display name of the Context. May be up to 128 Unicode characters.
- etag str
- An eTag used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens.
- labels Mapping[str, str]
- The labels with user-defined metadata to organize your Contexts. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. No more than 64 user labels can be associated with one Context (System labels are excluded).
- location str
- metadata Mapping[str, str]
- Properties of the Context. Top level metadata keys' heading and trailing spaces will be trimmed. The size of this field should not exceed 200KB.
- name str
- Immutable. The resource name of the Context.
- project str
- schema_title str
- The title of the schema describing the metadata. Schema title and version is expected to be registered in earlier Create Schema calls. And both are used together as unique identifiers to identify schemas within the local metadata store.
- schema_version str
- The version of the schema in schema_name to use. Schema title and version is expected to be registered in earlier Create Schema calls. And both are used together as unique identifiers to identify schemas within the local metadata store.
- metadataStore StringId 
- contextId String
- The {context} portion of the resource name with the format: projects/{project}/locations/{location}/metadataStores/{metadatastore}/contexts/{context}. If not provided, the Context's ID will be a UUID generated by the service. Must be 4-128 characters in length. Valid characters are/a-z-/. Must be unique across all Contexts in the parent MetadataStore. (Otherwise the request will fail with ALREADY_EXISTS, or PERMISSION_DENIED if the caller can't view the preexisting Context.)
- description String
- Description of the Context
- displayName String
- User provided display name of the Context. May be up to 128 Unicode characters.
- etag String
- An eTag used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens.
- labels Map<String>
- The labels with user-defined metadata to organize your Contexts. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. No more than 64 user labels can be associated with one Context (System labels are excluded).
- location String
- metadata Map<String>
- Properties of the Context. Top level metadata keys' heading and trailing spaces will be trimmed. The size of this field should not exceed 200KB.
- name String
- Immutable. The resource name of the Context.
- project String
- schemaTitle String
- The title of the schema describing the metadata. Schema title and version is expected to be registered in earlier Create Schema calls. And both are used together as unique identifiers to identify schemas within the local metadata store.
- schemaVersion String
- The version of the schema in schema_name to use. Schema title and version is expected to be registered in earlier Create Schema calls. And both are used together as unique identifiers to identify schemas within the local metadata store.
Outputs
All input properties are implicitly available as output properties. Additionally, the Context resource produces the following output properties:
- CreateTime string
- Timestamp when this Context was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- ParentContexts List<string>
- A list of resource names of Contexts that are parents of this Context. A Context may have at most 10 parent_contexts.
- UpdateTime string
- Timestamp when this Context was last updated.
- CreateTime string
- Timestamp when this Context was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- ParentContexts []string
- A list of resource names of Contexts that are parents of this Context. A Context may have at most 10 parent_contexts.
- UpdateTime string
- Timestamp when this Context was last updated.
- createTime String
- Timestamp when this Context was created.
- id String
- The provider-assigned unique ID for this managed resource.
- parentContexts List<String>
- A list of resource names of Contexts that are parents of this Context. A Context may have at most 10 parent_contexts.
- updateTime String
- Timestamp when this Context was last updated.
- createTime string
- Timestamp when this Context was created.
- id string
- The provider-assigned unique ID for this managed resource.
- parentContexts string[]
- A list of resource names of Contexts that are parents of this Context. A Context may have at most 10 parent_contexts.
- updateTime string
- Timestamp when this Context was last updated.
- create_time str
- Timestamp when this Context was created.
- id str
- The provider-assigned unique ID for this managed resource.
- parent_contexts Sequence[str]
- A list of resource names of Contexts that are parents of this Context. A Context may have at most 10 parent_contexts.
- update_time str
- Timestamp when this Context was last updated.
- createTime String
- Timestamp when this Context was created.
- id String
- The provider-assigned unique ID for this managed resource.
- parentContexts List<String>
- A list of resource names of Contexts that are parents of this Context. A Context may have at most 10 parent_contexts.
- updateTime String
- Timestamp when this Context was last updated.
Package Details
- Repository
- Google Cloud Native pulumi/pulumi-google-native
- License
- Apache-2.0
Google Cloud Native is in preview. Google Cloud Classic is fully supported.