Class: Google::Cloud::Asset::V1::AnalyzeMoveRequest
- Inherits:
-
Object
- Object
- Google::Cloud::Asset::V1::AnalyzeMoveRequest
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/asset/v1/asset_service.rb
Overview
The request message for performing resource move analysis.
Defined Under Namespace
Modules: AnalysisView
Instance Attribute Summary collapse
-
#destination_parent ⇒ ::String
Required.
-
#resource ⇒ ::String
Required.
-
#view ⇒ ::Google::Cloud::Asset::V1::AnalyzeMoveRequest::AnalysisView
Analysis view indicating what information should be included in the analysis response.
Instance Attribute Details
#destination_parent ⇒ ::String
Returns 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").
1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 |
# File 'proto_docs/google/cloud/asset/v1/asset_service.rb', line 1545 class AnalyzeMoveRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # View enum for supporting partial analysis responses. module AnalysisView # The default/unset value. # The API will default to the FULL view. ANALYSIS_VIEW_UNSPECIFIED = 0 # Full analysis including all level of impacts of the specified resource # move. FULL = 1 # Basic analysis only including blockers which will prevent the specified # resource move at runtime. BASIC = 2 end end |
#resource ⇒ ::String
Returns 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").
1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 |
# File 'proto_docs/google/cloud/asset/v1/asset_service.rb', line 1545 class AnalyzeMoveRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # View enum for supporting partial analysis responses. module AnalysisView # The default/unset value. # The API will default to the FULL view. ANALYSIS_VIEW_UNSPECIFIED = 0 # Full analysis including all level of impacts of the specified resource # move. FULL = 1 # Basic analysis only including blockers which will prevent the specified # resource move at runtime. BASIC = 2 end end |
#view ⇒ ::Google::Cloud::Asset::V1::AnalyzeMoveRequest::AnalysisView
Returns Analysis view indicating what information should be included in the analysis response. If unspecified, the default view is FULL.
1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 |
# File 'proto_docs/google/cloud/asset/v1/asset_service.rb', line 1545 class AnalyzeMoveRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # View enum for supporting partial analysis responses. module AnalysisView # The default/unset value. # The API will default to the FULL view. ANALYSIS_VIEW_UNSPECIFIED = 0 # Full analysis including all level of impacts of the specified resource # move. FULL = 1 # Basic analysis only including blockers which will prevent the specified # resource move at runtime. BASIC = 2 end end |