Interface RuleSetOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RuleSet,RuleSet.Builder
public interface RuleSetOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDescription()Short description of the rule-set.com.google.protobuf.ByteStringgetDescriptionBytes()Short description of the rule-set.StringgetName()The resource name of the rule set.com.google.protobuf.ByteStringgetNameBytes()The resource name of the rule set.RulegetRules(int index)List of rules given by the customer.intgetRulesCount()List of rules given by the customer.List<Rule>getRulesList()List of rules given by the customer.RuleOrBuildergetRulesOrBuilder(int index)List of rules given by the customer.List<? extends RuleOrBuilder>getRulesOrBuilderList()List of rules given by the customer.StringgetSource()Source of the rules i.e., customer name.com.google.protobuf.ByteStringgetSourceBytes()Source of the rules i.e., customer name.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
The resource name of the rule set. Managed internally. Format: projects/{project_number}/locations/{location}/ruleSet/{rule_set_id}. The name is ignored when creating a rule set.string name = 6;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The resource name of the rule set. Managed internally. Format: projects/{project_number}/locations/{location}/ruleSet/{rule_set_id}. The name is ignored when creating a rule set.string name = 6;- Returns:
- The bytes for name.
-
getDescription
String getDescription()
Short description of the rule-set.
string description = 1;- Returns:
- The description.
-
getDescriptionBytes
com.google.protobuf.ByteString getDescriptionBytes()
Short description of the rule-set.
string description = 1;- Returns:
- The bytes for description.
-
getSource
String getSource()
Source of the rules i.e., customer name.
string source = 2;- Returns:
- The source.
-
getSourceBytes
com.google.protobuf.ByteString getSourceBytes()
Source of the rules i.e., customer name.
string source = 2;- Returns:
- The bytes for source.
-
getRulesList
List<Rule> getRulesList()
List of rules given by the customer.
repeated .google.cloud.contentwarehouse.v1.Rule rules = 3;
-
getRules
Rule getRules(int index)
List of rules given by the customer.
repeated .google.cloud.contentwarehouse.v1.Rule rules = 3;
-
getRulesCount
int getRulesCount()
List of rules given by the customer.
repeated .google.cloud.contentwarehouse.v1.Rule rules = 3;
-
getRulesOrBuilderList
List<? extends RuleOrBuilder> getRulesOrBuilderList()
List of rules given by the customer.
repeated .google.cloud.contentwarehouse.v1.Rule rules = 3;
-
getRulesOrBuilder
RuleOrBuilder getRulesOrBuilder(int index)
List of rules given by the customer.
repeated .google.cloud.contentwarehouse.v1.Rule rules = 3;
-
-