Package com.google.cloud.gsuiteaddons.v1
Interface DeploymentOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Deployment
,Deployment.Builder
public interface DeploymentOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AddOns
getAddOns()
The Google Workspace Add-on configuration.AddOnsOrBuilder
getAddOnsOrBuilder()
The Google Workspace Add-on configuration.String
getEtag()
This value is computed by the server based on the version of the deployment in storage, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.com.google.protobuf.ByteString
getEtagBytes()
This value is computed by the server based on the version of the deployment in storage, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.String
getName()
The deployment resource name.com.google.protobuf.ByteString
getNameBytes()
The deployment resource name.String
getOauthScopes(int index)
The list of Google OAuth scopes for which to request consent from the end user before executing an add-on endpoint.com.google.protobuf.ByteString
getOauthScopesBytes(int index)
The list of Google OAuth scopes for which to request consent from the end user before executing an add-on endpoint.int
getOauthScopesCount()
The list of Google OAuth scopes for which to request consent from the end user before executing an add-on endpoint.List<String>
getOauthScopesList()
The list of Google OAuth scopes for which to request consent from the end user before executing an add-on endpoint.boolean
hasAddOns()
The Google Workspace Add-on configuration.-
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 deployment resource name. Example: projects/123/deployments/my_deployment.
string name = 1;
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The deployment resource name. Example: projects/123/deployments/my_deployment.
string name = 1;
- Returns:
- The bytes for name.
-
getOauthScopesList
List<String> getOauthScopesList()
The list of Google OAuth scopes for which to request consent from the end user before executing an add-on endpoint.
repeated string oauth_scopes = 2;
- Returns:
- A list containing the oauthScopes.
-
getOauthScopesCount
int getOauthScopesCount()
The list of Google OAuth scopes for which to request consent from the end user before executing an add-on endpoint.
repeated string oauth_scopes = 2;
- Returns:
- The count of oauthScopes.
-
getOauthScopes
String getOauthScopes(int index)
The list of Google OAuth scopes for which to request consent from the end user before executing an add-on endpoint.
repeated string oauth_scopes = 2;
- Parameters:
index
- The index of the element to return.- Returns:
- The oauthScopes at the given index.
-
getOauthScopesBytes
com.google.protobuf.ByteString getOauthScopesBytes(int index)
The list of Google OAuth scopes for which to request consent from the end user before executing an add-on endpoint.
repeated string oauth_scopes = 2;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the oauthScopes at the given index.
-
hasAddOns
boolean hasAddOns()
The Google Workspace Add-on configuration.
.google.cloud.gsuiteaddons.v1.AddOns add_ons = 3;
- Returns:
- Whether the addOns field is set.
-
getAddOns
AddOns getAddOns()
The Google Workspace Add-on configuration.
.google.cloud.gsuiteaddons.v1.AddOns add_ons = 3;
- Returns:
- The addOns.
-
getAddOnsOrBuilder
AddOnsOrBuilder getAddOnsOrBuilder()
The Google Workspace Add-on configuration.
.google.cloud.gsuiteaddons.v1.AddOns add_ons = 3;
-
getEtag
String getEtag()
This value is computed by the server based on the version of the deployment in storage, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
string etag = 5;
- Returns:
- The etag.
-
getEtagBytes
com.google.protobuf.ByteString getEtagBytes()
This value is computed by the server based on the version of the deployment in storage, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
string etag = 5;
- Returns:
- The bytes for etag.
-
-