Class MappingRuleFilter
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.
Implements
Inherited Members
Namespace: Google.Apis.DatabaseMigrationService.v1.Data
Assembly: Google.Apis.DatabaseMigrationService.v1.dll
Syntax
public class MappingRuleFilter : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Entities
Optional. The rule should be applied to specific entities defined by their fully qualified names.
Declaration
[JsonProperty("entities")]
public virtual IList<string> Entities { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
EntityNameContains
Optional. The rule should be applied to entities whose non-qualified name contains the given string.
Declaration
[JsonProperty("entityNameContains")]
public virtual string EntityNameContains { get; set; }
Property Value
Type | Description |
---|---|
string |
EntityNamePrefix
Optional. The rule should be applied to entities whose non-qualified name starts with the given prefix.
Declaration
[JsonProperty("entityNamePrefix")]
public virtual string EntityNamePrefix { get; set; }
Property Value
Type | Description |
---|---|
string |
EntityNameSuffix
Optional. The rule should be applied to entities whose non-qualified name ends with the given suffix.
Declaration
[JsonProperty("entityNameSuffix")]
public virtual string EntityNameSuffix { get; set; }
Property Value
Type | Description |
---|---|
string |
ParentEntity
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)
Declaration
[JsonProperty("parentEntity")]
public virtual string ParentEntity { get; set; }
Property Value
Type | Description |
---|---|
string |