Skip to content

Get Asset Filter

datazone_get_asset_filter R Documentation

Gets an asset filter

Description

Gets an asset filter.

Usage

datazone_get_asset_filter(assetIdentifier, domainIdentifier, identifier)

Arguments

assetIdentifier

[required] The ID of the data asset.

domainIdentifier

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

identifier

[required] The ID 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$get_asset_filter(
  assetIdentifier = "string",
  domainIdentifier = "string",
  identifier = "string"
)