• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2020 Google LLC
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     https://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 // Generated by the protocol buffer compiler.  DO NOT EDIT!
17 // source: google/cloud/asset/v1/asset_service.proto
18 
19 package com.google.cloud.asset.v1;
20 
21 public interface MoveAnalysisResultOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.asset.v1.MoveAnalysisResult)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * Blocking information that would prevent the target resource from moving
31    * to the specified destination at runtime.
32    * </pre>
33    *
34    * <code>repeated .google.cloud.asset.v1.MoveImpact blockers = 1;</code>
35    */
getBlockersList()36   java.util.List<com.google.cloud.asset.v1.MoveImpact> getBlockersList();
37   /**
38    *
39    *
40    * <pre>
41    * Blocking information that would prevent the target resource from moving
42    * to the specified destination at runtime.
43    * </pre>
44    *
45    * <code>repeated .google.cloud.asset.v1.MoveImpact blockers = 1;</code>
46    */
getBlockers(int index)47   com.google.cloud.asset.v1.MoveImpact getBlockers(int index);
48   /**
49    *
50    *
51    * <pre>
52    * Blocking information that would prevent the target resource from moving
53    * to the specified destination at runtime.
54    * </pre>
55    *
56    * <code>repeated .google.cloud.asset.v1.MoveImpact blockers = 1;</code>
57    */
getBlockersCount()58   int getBlockersCount();
59   /**
60    *
61    *
62    * <pre>
63    * Blocking information that would prevent the target resource from moving
64    * to the specified destination at runtime.
65    * </pre>
66    *
67    * <code>repeated .google.cloud.asset.v1.MoveImpact blockers = 1;</code>
68    */
69   java.util.List<? extends com.google.cloud.asset.v1.MoveImpactOrBuilder>
getBlockersOrBuilderList()70       getBlockersOrBuilderList();
71   /**
72    *
73    *
74    * <pre>
75    * Blocking information that would prevent the target resource from moving
76    * to the specified destination at runtime.
77    * </pre>
78    *
79    * <code>repeated .google.cloud.asset.v1.MoveImpact blockers = 1;</code>
80    */
getBlockersOrBuilder(int index)81   com.google.cloud.asset.v1.MoveImpactOrBuilder getBlockersOrBuilder(int index);
82 
83   /**
84    *
85    *
86    * <pre>
87    * Warning information indicating that moving the target resource to the
88    * specified destination might be unsafe. This can include important policy
89    * information and configuration changes, but will not block moves at runtime.
90    * </pre>
91    *
92    * <code>repeated .google.cloud.asset.v1.MoveImpact warnings = 2;</code>
93    */
getWarningsList()94   java.util.List<com.google.cloud.asset.v1.MoveImpact> getWarningsList();
95   /**
96    *
97    *
98    * <pre>
99    * Warning information indicating that moving the target resource to the
100    * specified destination might be unsafe. This can include important policy
101    * information and configuration changes, but will not block moves at runtime.
102    * </pre>
103    *
104    * <code>repeated .google.cloud.asset.v1.MoveImpact warnings = 2;</code>
105    */
getWarnings(int index)106   com.google.cloud.asset.v1.MoveImpact getWarnings(int index);
107   /**
108    *
109    *
110    * <pre>
111    * Warning information indicating that moving the target resource to the
112    * specified destination might be unsafe. This can include important policy
113    * information and configuration changes, but will not block moves at runtime.
114    * </pre>
115    *
116    * <code>repeated .google.cloud.asset.v1.MoveImpact warnings = 2;</code>
117    */
getWarningsCount()118   int getWarningsCount();
119   /**
120    *
121    *
122    * <pre>
123    * Warning information indicating that moving the target resource to the
124    * specified destination might be unsafe. This can include important policy
125    * information and configuration changes, but will not block moves at runtime.
126    * </pre>
127    *
128    * <code>repeated .google.cloud.asset.v1.MoveImpact warnings = 2;</code>
129    */
130   java.util.List<? extends com.google.cloud.asset.v1.MoveImpactOrBuilder>
getWarningsOrBuilderList()131       getWarningsOrBuilderList();
132   /**
133    *
134    *
135    * <pre>
136    * Warning information indicating that moving the target resource to the
137    * specified destination might be unsafe. This can include important policy
138    * information and configuration changes, but will not block moves at runtime.
139    * </pre>
140    *
141    * <code>repeated .google.cloud.asset.v1.MoveImpact warnings = 2;</code>
142    */
getWarningsOrBuilder(int index)143   com.google.cloud.asset.v1.MoveImpactOrBuilder getWarningsOrBuilder(int index);
144 }
145