Skip to content

Update Asset Filter

datazone_update_asset_filter R Documentation

Updates an asset filter

Description

Updates an asset filter.

Usage

datazone_update_asset_filter(assetIdentifier, configuration,
  description, domainIdentifier, identifier, name)

Arguments

assetIdentifier

[required] The ID of the data asset.

configuration

The configuration of the asset filter.

description

The description of the asset filter.

domainIdentifier

[required] The ID of the domain where you want to update an asset filter.

identifier

[required] The ID of the asset filter.

name

The name of the asset filter.

Value

A list with the following syntax:

list(
  assetId = "string",
  configuration = list(
    columnConfiguration = list(
      includedColumnNames = list(
        "string"
      )
    ),
    rowConfiguration = list(
      rowFilter = list(
        and = list(
          list()
        ),
        expression = list(
          equalTo = list(
            columnName = "string",
            value = "string"
          ),
          greaterThan = list(
            columnName = "string",
            value = "string"
          ),
          greaterThanOrEqualTo = list(
            columnName = "string",
            value = "string"
          ),
          in = list(
            columnName = "string",
            values = list(
              "string"
            )
          ),
          isNotNull = list(
            columnName = "string"
          ),
          isNull = list(
            columnName = "string"
          ),
          lessThan = list(
            columnName = "string",
            value = "string"
          ),
          lessThanOrEqualTo = list(
            columnName = "string",
            value = "string"
          ),
          like = list(
            columnName = "string",
            value = "string"
          ),
          notEqualTo = list(
            columnName = "string",
            value = "string"
          ),
          notIn = list(
            columnName = "string",
            values = list(
              "string"
            )
          ),
          notLike = list(
            columnName = "string",
            value = "string"
          )
        ),
        or = list(
          list()
        )
      ),
      sensitive = TRUE|FALSE
    )
  ),
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  description = "string",
  domainId = "string",
  effectiveColumnNames = list(
    "string"
  ),
  effectiveRowFilter = "string",
  errorMessage = "string",
  id = "string",
  name = "string",
  status = "VALID"|"INVALID"
)

Request syntax

svc$update_asset_filter(
  assetIdentifier = "string",
  configuration = list(
    columnConfiguration = list(
      includedColumnNames = list(
        "string"
      )
    ),
    rowConfiguration = list(
      rowFilter = list(
        and = list(
          list()
        ),
        expression = list(
          equalTo = list(
            columnName = "string",
            value = "string"
          ),
          greaterThan = list(
            columnName = "string",
            value = "string"
          ),
          greaterThanOrEqualTo = list(
            columnName = "string",
            value = "string"
          ),
          in = list(
            columnName = "string",
            values = list(
              "string"
            )
          ),
          isNotNull = list(
            columnName = "string"
          ),
          isNull = list(
            columnName = "string"
          ),
          lessThan = list(
            columnName = "string",
            value = "string"
          ),
          lessThanOrEqualTo = list(
            columnName = "string",
            value = "string"
          ),
          like = list(
            columnName = "string",
            value = "string"
          ),
          notEqualTo = list(
            columnName = "string",
            value = "string"
          ),
          notIn = list(
            columnName = "string",
            values = list(
              "string"
            )
          ),
          notLike = list(
            columnName = "string",
            value = "string"
          )
        ),
        or = list(
          list()
        )
      ),
      sensitive = TRUE|FALSE
    )
  ),
  description = "string",
  domainIdentifier = "string",
  identifier = "string",
  name = "string"
)