Interface ProjectSettingsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ProjectSettings
,ProjectSettings.Builder
public interface ProjectSettingsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProjectSettings.RedirectionState
getLegacyRedirectionState()
The redirection state of the legacy repositories in this project.int
getLegacyRedirectionStateValue()
The redirection state of the legacy repositories in this project.String
getName()
The name of the project's settings.com.google.protobuf.ByteString
getNameBytes()
The name of the project's settings.-
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 name of the project's settings. Always of the form: projects/{project-id}/projectSettings In update request: never set In response: always set
string name = 1;
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The name of the project's settings. Always of the form: projects/{project-id}/projectSettings In update request: never set In response: always set
string name = 1;
- Returns:
- The bytes for name.
-
getLegacyRedirectionStateValue
int getLegacyRedirectionStateValue()
The redirection state of the legacy repositories in this project.
.google.devtools.artifactregistry.v1beta2.ProjectSettings.RedirectionState legacy_redirection_state = 2;
- Returns:
- The enum numeric value on the wire for legacyRedirectionState.
-
getLegacyRedirectionState
ProjectSettings.RedirectionState getLegacyRedirectionState()
The redirection state of the legacy repositories in this project.
.google.devtools.artifactregistry.v1beta2.ProjectSettings.RedirectionState legacy_redirection_state = 2;
- Returns:
- The legacyRedirectionState.
-
-