Skip to content

Get Asset Filter

datazone_get_asset_filter R Documentation

Gets an asset filter

Description

Gets an asset filter.

Prerequisites:

  • Domain (--domain-identifier), asset (--asset-identifier), and filter (--identifier) must all exist.

  • The asset filter should not have been deleted.

  • The asset must still exist (since the filter is linked to it).

Usage

datazone_get_asset_filter(domainIdentifier, assetIdentifier, identifier)

Arguments

domainIdentifier

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

assetIdentifier

[required] The ID of the data asset.

identifier

[required] The ID of the asset filter.

Value

A list with the following syntax:

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

Request syntax

svc$get_asset_filter(
  domainIdentifier = "string",
  assetIdentifier = "string",
  identifier = "string"
)