Interface ChangeReportOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ChangeReport,ChangeReport.Builder
public interface ChangeReportOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.api.ConfigChangegetConfigChanges(int index)List of changes between two service configurations.intgetConfigChangesCount()List of changes between two service configurations.List<com.google.api.ConfigChange>getConfigChangesList()List of changes between two service configurations.com.google.api.ConfigChangeOrBuildergetConfigChangesOrBuilder(int index)List of changes between two service configurations.List<? extends com.google.api.ConfigChangeOrBuilder>getConfigChangesOrBuilderList()List of changes between two service configurations.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getConfigChangesList
List<com.google.api.ConfigChange> getConfigChangesList()
List of changes between two service configurations. The changes will be alphabetically sorted based on the identifier of each change. A ConfigChange identifier is a dot separated path to the configuration. Example: visibility.rules[selector='LibraryService.CreateBook'].restriction
repeated .google.api.ConfigChange config_changes = 1;
-
getConfigChanges
com.google.api.ConfigChange getConfigChanges(int index)
List of changes between two service configurations. The changes will be alphabetically sorted based on the identifier of each change. A ConfigChange identifier is a dot separated path to the configuration. Example: visibility.rules[selector='LibraryService.CreateBook'].restriction
repeated .google.api.ConfigChange config_changes = 1;
-
getConfigChangesCount
int getConfigChangesCount()
List of changes between two service configurations. The changes will be alphabetically sorted based on the identifier of each change. A ConfigChange identifier is a dot separated path to the configuration. Example: visibility.rules[selector='LibraryService.CreateBook'].restriction
repeated .google.api.ConfigChange config_changes = 1;
-
getConfigChangesOrBuilderList
List<? extends com.google.api.ConfigChangeOrBuilder> getConfigChangesOrBuilderList()
List of changes between two service configurations. The changes will be alphabetically sorted based on the identifier of each change. A ConfigChange identifier is a dot separated path to the configuration. Example: visibility.rules[selector='LibraryService.CreateBook'].restriction
repeated .google.api.ConfigChange config_changes = 1;
-
getConfigChangesOrBuilder
com.google.api.ConfigChangeOrBuilder getConfigChangesOrBuilder(int index)
List of changes between two service configurations. The changes will be alphabetically sorted based on the identifier of each change. A ConfigChange identifier is a dot separated path to the configuration. Example: visibility.rules[selector='LibraryService.CreateBook'].restriction
repeated .google.api.ConfigChange config_changes = 1;
-
-