View Source GoogleApi.DataMigration.V1.Model.MappingRuleFilter (google_api_data_migration v0.15.0)

A filter defining the entities that a mapping rule should be applied to. When more than one field is specified, the rule is applied only to entities which match all the fields.

Attributes

  • entities (type: list(String.t), default: nil) - Optional. The rule should be applied to specific entities defined by their fully qualified names.
  • entityNameContains (type: String.t, default: nil) - Optional. The rule should be applied to entities whose non-qualified name contains the given string.
  • entityNamePrefix (type: String.t, default: nil) - Optional. The rule should be applied to entities whose non-qualified name starts with the given prefix.
  • entityNameSuffix (type: String.t, default: nil) - Optional. The rule should be applied to entities whose non-qualified name ends with the given suffix.
  • parentEntity (type: String.t, default: nil) - Optional. The rule should be applied to entities whose parent entity (fully qualified name) matches the given value. For example, if the rule applies to a table entity, the expected value should be a schema (schema). If the rule applies to a column or index entity, the expected value can be either a schema (schema) or a table (schema.table)

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

@type t() :: %GoogleApi.DataMigration.V1.Model.MappingRuleFilter{
  entities: [String.t()] | nil,
  entityNameContains: String.t() | nil,
  entityNamePrefix: String.t() | nil,
  entityNameSuffix: String.t() | nil,
  parentEntity: String.t() | nil
}

Functions

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.