Method: googleapis.aiplatform.v1.projects.locations.featurestores.entityTypes.features.patch

Updates the parameters of a single Feature.

Arguments

Parameters
name

string

Required. Immutable. Name of the Feature. Format: projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}/features/{feature} projects/{project}/locations/{location}/featureGroups/{feature_group}/features/{feature} The last part feature is assigned by the client. The feature can be up to 64 characters long and can consist only of ASCII Latin letters A-Z and a-z, underscore(_), and ASCII digits 0-9 starting with a letter. The value will be unique given an entity type.

updateMask

string (FieldMask format)

Field mask is used to specify the fields to be overwritten in the Features resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to * to override all fields. Updatable fields: * description * labels * disable_monitoring (Not supported for FeatureRegistry Feature)

region

string

Required. Region of the HTTP endpoint. For example, if region is set to us-central1, the endpoint https://us-central1-integrations.googleapis.com will be used. See service endpoints.

body

object (GoogleCloudAiplatformV1Feature)

Required.

Raised exceptions

Exceptions
ConnectionError In case of a network problem (such as DNS failure or refused connection).
HttpError If the response status is >= 400 (excluding 429 and 503).
TimeoutError If a long-running operation takes longer to finish than the specified timeout limit.
TypeError If an operation or function receives an argument of the wrong type.
ValueError If an operation or function receives an argument of the right type but an inappropriate value. For example, a negative timeout.

Response

If successful, the response contains an instance of GoogleCloudAiplatformV1Feature.

Subworkflow snippet

Some fields might be optional or required. To identify required fields, refer to the API documentation.

YAML

- patch:
    call: googleapis.aiplatform.v1.projects.locations.featurestores.entityTypes.features.patch
    args:
        name: ...
        updateMask: ...
        region: ...
        body:
            description: ...
            disableMonitoring: ...
            etag: ...
            labels: ...
            name: ...
            pointOfContact: ...
            valueType: ...
            versionColumnName: ...
    result: patchResult

JSON

[
  {
    "patch": {
      "call": "googleapis.aiplatform.v1.projects.locations.featurestores.entityTypes.features.patch",
      "args": {
        "name": "...",
        "updateMask": "...",
        "region": "...",
        "body": {
          "description": "...",
          "disableMonitoring": "...",
          "etag": "...",
          "labels": "...",
          "name": "...",
          "pointOfContact": "...",
          "valueType": "...",
          "versionColumnName": "..."
        }
      },
      "result": "patchResult"
    }
  }
]