Package io.grafeas.v1beta1.deployment
Interface DeployableOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Deployable
,Deployable.Builder
public interface DeployableOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getResourceUri(int index)
Required.com.google.protobuf.ByteString
getResourceUriBytes(int index)
Required.int
getResourceUriCount()
Required.List<String>
getResourceUriList()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getResourceUriList
List<String> getResourceUriList()
Required. Resource URI for the artifact being deployed.
repeated string resource_uri = 1;
- Returns:
- A list containing the resourceUri.
-
getResourceUriCount
int getResourceUriCount()
Required. Resource URI for the artifact being deployed.
repeated string resource_uri = 1;
- Returns:
- The count of resourceUri.
-
getResourceUri
String getResourceUri(int index)
Required. Resource URI for the artifact being deployed.
repeated string resource_uri = 1;
- Parameters:
index
- The index of the element to return.- Returns:
- The resourceUri at the given index.
-
getResourceUriBytes
com.google.protobuf.ByteString getResourceUriBytes(int index)
Required. Resource URI for the artifact being deployed.
repeated string resource_uri = 1;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the resourceUri at the given index.
-
-