Package com.google.cloud.asset.v1
Interface AnalyzeMoveRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AnalyzeMoveRequest
,AnalyzeMoveRequest.Builder
public interface AnalyzeMoveRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDestinationParent()
Required.com.google.protobuf.ByteString
getDestinationParentBytes()
Required.String
getResource()
Required.com.google.protobuf.ByteString
getResourceBytes()
Required.AnalyzeMoveRequest.AnalysisView
getView()
Analysis view indicating what information should be included in the analysis response.int
getViewValue()
Analysis view indicating what information should be included in the analysis response.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getResource
String getResource()
Required. Name of the resource to perform the analysis against. Only Google Cloud projects are supported as of today. Hence, this can only be a project ID (such as "projects/my-project-id") or a project number (such as "projects/12345").
string resource = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The resource.
-
getResourceBytes
com.google.protobuf.ByteString getResourceBytes()
Required. Name of the resource to perform the analysis against. Only Google Cloud projects are supported as of today. Hence, this can only be a project ID (such as "projects/my-project-id") or a project number (such as "projects/12345").
string resource = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for resource.
-
getDestinationParent
String getDestinationParent()
Required. Name of the Google Cloud folder or organization to reparent the target resource. The analysis will be performed against hypothetically moving the resource to this specified desitination parent. This can only be a folder number (such as "folders/123") or an organization number (such as "organizations/123").
string destination_parent = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The destinationParent.
-
getDestinationParentBytes
com.google.protobuf.ByteString getDestinationParentBytes()
Required. Name of the Google Cloud folder or organization to reparent the target resource. The analysis will be performed against hypothetically moving the resource to this specified desitination parent. This can only be a folder number (such as "folders/123") or an organization number (such as "organizations/123").
string destination_parent = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for destinationParent.
-
getViewValue
int getViewValue()
Analysis view indicating what information should be included in the analysis response. If unspecified, the default view is FULL.
.google.cloud.asset.v1.AnalyzeMoveRequest.AnalysisView view = 3;
- Returns:
- The enum numeric value on the wire for view.
-
getView
AnalyzeMoveRequest.AnalysisView getView()
Analysis view indicating what information should be included in the analysis response. If unspecified, the default view is FULL.
.google.cloud.asset.v1.AnalyzeMoveRequest.AnalysisView view = 3;
- Returns:
- The view.
-
-