1<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5  margin: 0;
6  padding: 0;
7  border: 0;
8  font-weight: inherit;
9  font-style: inherit;
10  font-size: 100%;
11  font-family: inherit;
12  vertical-align: baseline;
13}
14
15body {
16  font-size: 13px;
17  padding: 1em;
18}
19
20h1 {
21  font-size: 26px;
22  margin-bottom: 1em;
23}
24
25h2 {
26  font-size: 24px;
27  margin-bottom: 1em;
28}
29
30h3 {
31  font-size: 20px;
32  margin-bottom: 1em;
33  margin-top: 1em;
34}
35
36pre, code {
37  line-height: 1.5;
38  font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42  margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46  font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50  border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54  margin-top: 0.5em;
55}
56
57.firstline {
58  margin-left: 2 em;
59}
60
61.method  {
62  margin-top: 1em;
63  border: solid 1px #CCC;
64  padding: 1em;
65  background: #EEE;
66}
67
68.details {
69  font-weight: bold;
70  font-size: 14px;
71}
72
73</style>
74
75<h1><a href="gkehub_v1beta.html">GKE Hub</a> . <a href="gkehub_v1beta.projects.html">projects</a> . <a href="gkehub_v1beta.projects.locations.html">locations</a> . <a href="gkehub_v1beta.projects.locations.global_.html">global_</a> . <a href="gkehub_v1beta.projects.locations.global_.features.html">features</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78  <code><a href="#close">close()</a></code></p>
79<p class="firstline">Close httplib2 connections.</p>
80<p class="toc_element">
81  <code><a href="#create">create(parent, body=None, featureId=None, requestId=None, x__xgafv=None)</a></code></p>
82<p class="firstline">Adds a new Feature.</p>
83<p class="toc_element">
84  <code><a href="#delete">delete(name, force=None, requestId=None, x__xgafv=None)</a></code></p>
85<p class="firstline">Removes a Feature.</p>
86<p class="toc_element">
87  <code><a href="#get">get(name, x__xgafv=None)</a></code></p>
88<p class="firstline">Gets details of a single Feature.</p>
89<p class="toc_element">
90  <code><a href="#list">list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
91<p class="firstline">Lists Features in a given project and location.</p>
92<p class="toc_element">
93  <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
94<p class="firstline">Retrieves the next page of results.</p>
95<p class="toc_element">
96  <code><a href="#patch">patch(name, body=None, requestId=None, updateMask=None, x__xgafv=None)</a></code></p>
97<p class="firstline">Updates an existing Feature.</p>
98<h3>Method Details</h3>
99<div class="method">
100    <code class="details" id="close">close()</code>
101  <pre>Close httplib2 connections.</pre>
102</div>
103
104<div class="method">
105    <code class="details" id="create">create(parent, body=None, featureId=None, requestId=None, x__xgafv=None)</code>
106  <pre>Adds a new Feature.
107
108Args:
109  parent: string, The parent (project and location) where the Feature will be created. Specified in the format `projects/*/locations/global`. (required)
110  body: object, The request body.
111    The object takes the form of:
112
113{ # Feature represents the settings and status of any Hub Feature.
114  &quot;createTime&quot;: &quot;A String&quot;, # Output only. When the Feature resource was created.
115  &quot;deleteTime&quot;: &quot;A String&quot;, # Output only. When the Feature resource was deleted.
116  &quot;labels&quot;: { # GCP labels for this Feature.
117    &quot;a_key&quot;: &quot;A String&quot;,
118  },
119  &quot;membershipSpecs&quot;: { # Optional. Membership-specific configuration for this Feature. If this Feature does not support any per-Membership configuration, this field may be unused. The keys indicate which Membership the configuration is for, in the form: projects/{p}/locations/{l}/memberships/{m} Where {p} is the project, {l} is a valid location and {m} is a valid Membership in this project at that location. {p} WILL match the Feature&#x27;s project. {p} will always be returned as the project number, but the project ID is also accepted during input. If the same Membership is specified in the map twice (using the project ID form, and the project number form), exactly ONE of the entries will be saved, with no guarantees as to which. For this reason, it is recommended the same format be used for all entries when mutating a Feature.
120    &quot;a_key&quot;: { # MembershipFeatureSpec contains configuration information for a single Membership.
121      &quot;configmanagement&quot;: { # Configuration for a single cluster. Intended to parallel the ConfigManagement CR. # Config Management-specific spec.
122        &quot;binauthz&quot;: { # Configuration for Binauthz # Binauthz conifguration for the cluster.
123          &quot;enabled&quot;: True or False, # Whether binauthz is enabled in this cluster.
124        },
125        &quot;configSync&quot;: { # Configuration for Config Sync # Config Sync configuration for the cluster.
126          &quot;git&quot;: { # Git repo configuration for a single cluster. # Git repo configuration for the cluster.
127            &quot;gcpServiceAccountEmail&quot;: &quot;A String&quot;, # The GCP Service Account Email used for auth when secret_type is gcpServiceAccount.
128            &quot;httpsProxy&quot;: &quot;A String&quot;, # URL for the HTTPS proxy to be used when communicating with the Git repo.
129            &quot;policyDir&quot;: &quot;A String&quot;, # The path within the Git repository that represents the top level of the repo to sync. Default: the root directory of the repository.
130            &quot;secretType&quot;: &quot;A String&quot;, # Type of secret configured for access to the Git repo.
131            &quot;syncBranch&quot;: &quot;A String&quot;, # The branch of the repository to sync from. Default: master.
132            &quot;syncRepo&quot;: &quot;A String&quot;, # The URL of the Git repository to use as the source of truth.
133            &quot;syncRev&quot;: &quot;A String&quot;, # Git revision (tag or hash) to check out. Default HEAD.
134            &quot;syncWaitSecs&quot;: &quot;A String&quot;, # Period in seconds between consecutive syncs. Default: 15.
135          },
136          &quot;sourceFormat&quot;: &quot;A String&quot;, # Specifies whether the Config Sync Repo is in “hierarchical” or “unstructured” mode.
137        },
138        &quot;hierarchyController&quot;: { # Configuration for Hierarchy Controller # Hierarchy Controller configuration for the cluster.
139          &quot;enableHierarchicalResourceQuota&quot;: True or False, # Whether hierarchical resource quota is enabled in this cluster.
140          &quot;enablePodTreeLabels&quot;: True or False, # Whether pod tree labels are enabled in this cluster.
141          &quot;enabled&quot;: True or False, # Whether Hierarchy Controller is enabled in this cluster.
142        },
143        &quot;policyController&quot;: { # Configuration for Policy Controller # Policy Controller configuration for the cluster.
144          &quot;auditIntervalSeconds&quot;: &quot;A String&quot;, # Sets the interval for Policy Controller Audit Scans (in seconds). When set to 0, this disables audit functionality altogether.
145          &quot;enabled&quot;: True or False, # Enables the installation of Policy Controller. If false, the rest of PolicyController fields take no effect.
146          &quot;exemptableNamespaces&quot;: [ # The set of namespaces that are excluded from Policy Controller checks. Namespaces do not need to currently exist on the cluster.
147            &quot;A String&quot;,
148          ],
149          &quot;logDeniesEnabled&quot;: True or False, # Logs all denies and dry run failures.
150          &quot;referentialRulesEnabled&quot;: True or False, # Enables the ability to use Constraint Templates that reference to objects other than the object currently being evaluated.
151          &quot;templateLibraryInstalled&quot;: True or False, # Installs the default template library along with Policy Controller.
152        },
153        &quot;version&quot;: &quot;A String&quot;, # Version of ACM installed.
154      },
155    },
156  },
157  &quot;membershipStates&quot;: { # Output only. Membership-specific Feature status. If this Feature does report any per-Membership status, this field may be unused. The keys indicate which Membership the state is for, in the form: projects/{p}/locations/{l}/memberships/{m} Where {p} is the project number, {l} is a valid location and {m} is a valid Membership in this project at that location. {p} MUST match the Feature&#x27;s project number.
158    &quot;a_key&quot;: { # MembershipFeatureState contains Feature status information for a single Membership.
159      &quot;configmanagement&quot;: { # State for Anthos Config Management # Config Management-specific state.
160        &quot;binauthzState&quot;: { # State for Binauthz # Binauthz status
161          &quot;version&quot;: { # The version of binauthz. # The version of binauthz that is installed.
162            &quot;webhookVersion&quot;: &quot;A String&quot;, # The version of the binauthz webhook.
163          },
164          &quot;webhook&quot;: &quot;A String&quot;, # The state of the binauthz webhook.
165        },
166        &quot;clusterName&quot;: &quot;A String&quot;, # The user-defined name for the cluster used by ClusterSelectors to group clusters together. This should match Membership&#x27;s membership_name, unless the user installed ACM on the cluster manually prior to enabling the ACM hub feature. Unique within a Anthos Config Management installation.
167        &quot;configSyncState&quot;: { # State information for ConfigSync # Current sync status
168          &quot;deploymentState&quot;: { # The state of ConfigSync&#x27;s deployment on a cluster # Information about the deployment of ConfigSync, including the version of the various Pods deployed
169            &quot;gitSync&quot;: &quot;A String&quot;, # Deployment state of the git-sync pod
170            &quot;importer&quot;: &quot;A String&quot;, # Deployment state of the importer pod
171            &quot;monitor&quot;: &quot;A String&quot;, # Deployment state of the monitor pod
172            &quot;reconcilerManager&quot;: &quot;A String&quot;, # Deployment state of reconciler-manager pod
173            &quot;rootReconciler&quot;: &quot;A String&quot;, # Deployment state of root-reconciler
174            &quot;syncer&quot;: &quot;A String&quot;, # Deployment state of the syncer pod
175          },
176          &quot;syncState&quot;: { # State indicating an ACM&#x27;s progress syncing configurations to a cluster # The state of ConfigSync&#x27;s process to sync configs to a cluster
177            &quot;code&quot;: &quot;A String&quot;, # Sync status code
178            &quot;errors&quot;: [ # A list of errors resulting from problematic configs. This list will be truncated after 100 errors, although it is unlikely for that many errors to simultaneously exist.
179              { # An ACM created error representing a problem syncing configurations
180                &quot;code&quot;: &quot;A String&quot;, # An ACM defined error code
181                &quot;errorMessage&quot;: &quot;A String&quot;, # A description of the error
182                &quot;errorResources&quot;: [ # A list of config(s) associated with the error, if any
183                  { # Model for a config file in the git repo with an associated Sync error
184                    &quot;resourceGvk&quot;: { # A Kubernetes object&#x27;s GVK # Group/version/kind of the resource that is causing an error
185                      &quot;group&quot;: &quot;A String&quot;, # Kubernetes Group
186                      &quot;kind&quot;: &quot;A String&quot;, # Kubernetes Kind
187                      &quot;version&quot;: &quot;A String&quot;, # Kubernetes Version
188                    },
189                    &quot;resourceName&quot;: &quot;A String&quot;, # Metadata name of the resource that is causing an error
190                    &quot;resourceNamespace&quot;: &quot;A String&quot;, # Namespace of the resource that is causing an error
191                    &quot;sourcePath&quot;: &quot;A String&quot;, # Path in the git repo of the erroneous config
192                  },
193                ],
194              },
195            ],
196            &quot;importToken&quot;: &quot;A String&quot;, # Token indicating the state of the importer.
197            &quot;lastSync&quot;: &quot;A String&quot;, # Timestamp of when ACM last successfully synced the repo The time format is specified in https://golang.org/pkg/time/#Time.String This field is being deprecated. Use last_sync_time instead. (b/154053616)
198            &quot;lastSyncTime&quot;: &quot;A String&quot;, # Timestamp type of when ACM last successfully synced the repo
199            &quot;sourceToken&quot;: &quot;A String&quot;, # Token indicating the state of the repo.
200            &quot;syncToken&quot;: &quot;A String&quot;, # Token indicating the state of the syncer.
201          },
202          &quot;version&quot;: { # Specific versioning information pertaining to ConfigSync&#x27;s Pods # The version of ConfigSync deployed
203            &quot;gitSync&quot;: &quot;A String&quot;, # Version of the deployed git-sync pod
204            &quot;importer&quot;: &quot;A String&quot;, # Version of the deployed importer pod
205            &quot;monitor&quot;: &quot;A String&quot;, # Version of the deployed monitor pod
206            &quot;reconcilerManager&quot;: &quot;A String&quot;, # Version of the deployed reconciler-manager pod
207            &quot;rootReconciler&quot;: &quot;A String&quot;, # Version of the deployed reconciler container in root-reconciler pod
208            &quot;syncer&quot;: &quot;A String&quot;, # Version of the deployed syncer pod
209          },
210        },
211        &quot;hierarchyControllerState&quot;: { # State for Hierarchy Controller # Hierarchy Controller status
212          &quot;state&quot;: { # Deployment state for Hierarchy Controller # The deployment state for Hierarchy Controller
213            &quot;extension&quot;: &quot;A String&quot;, # The deployment state for Hierarchy Controller extension (e.g. v0.7.0-hc.1)
214            &quot;hnc&quot;: &quot;A String&quot;, # The deployment state for open source HNC (e.g. v0.7.0-hc.0)
215          },
216          &quot;version&quot;: { # Version for Hierarchy Controller # The version for Hierarchy Controller
217            &quot;extension&quot;: &quot;A String&quot;, # Version for Hierarchy Controller extension
218            &quot;hnc&quot;: &quot;A String&quot;, # Version for open source HNC
219          },
220        },
221        &quot;membershipSpec&quot;: { # Configuration for a single cluster. Intended to parallel the ConfigManagement CR. # Membership configuration in the cluster. This represents the actual state in the cluster, while the MembershipSpec in the FeatureSpec represents the intended state
222          &quot;binauthz&quot;: { # Configuration for Binauthz # Binauthz conifguration for the cluster.
223            &quot;enabled&quot;: True or False, # Whether binauthz is enabled in this cluster.
224          },
225          &quot;configSync&quot;: { # Configuration for Config Sync # Config Sync configuration for the cluster.
226            &quot;git&quot;: { # Git repo configuration for a single cluster. # Git repo configuration for the cluster.
227              &quot;gcpServiceAccountEmail&quot;: &quot;A String&quot;, # The GCP Service Account Email used for auth when secret_type is gcpServiceAccount.
228              &quot;httpsProxy&quot;: &quot;A String&quot;, # URL for the HTTPS proxy to be used when communicating with the Git repo.
229              &quot;policyDir&quot;: &quot;A String&quot;, # The path within the Git repository that represents the top level of the repo to sync. Default: the root directory of the repository.
230              &quot;secretType&quot;: &quot;A String&quot;, # Type of secret configured for access to the Git repo.
231              &quot;syncBranch&quot;: &quot;A String&quot;, # The branch of the repository to sync from. Default: master.
232              &quot;syncRepo&quot;: &quot;A String&quot;, # The URL of the Git repository to use as the source of truth.
233              &quot;syncRev&quot;: &quot;A String&quot;, # Git revision (tag or hash) to check out. Default HEAD.
234              &quot;syncWaitSecs&quot;: &quot;A String&quot;, # Period in seconds between consecutive syncs. Default: 15.
235            },
236            &quot;sourceFormat&quot;: &quot;A String&quot;, # Specifies whether the Config Sync Repo is in “hierarchical” or “unstructured” mode.
237          },
238          &quot;hierarchyController&quot;: { # Configuration for Hierarchy Controller # Hierarchy Controller configuration for the cluster.
239            &quot;enableHierarchicalResourceQuota&quot;: True or False, # Whether hierarchical resource quota is enabled in this cluster.
240            &quot;enablePodTreeLabels&quot;: True or False, # Whether pod tree labels are enabled in this cluster.
241            &quot;enabled&quot;: True or False, # Whether Hierarchy Controller is enabled in this cluster.
242          },
243          &quot;policyController&quot;: { # Configuration for Policy Controller # Policy Controller configuration for the cluster.
244            &quot;auditIntervalSeconds&quot;: &quot;A String&quot;, # Sets the interval for Policy Controller Audit Scans (in seconds). When set to 0, this disables audit functionality altogether.
245            &quot;enabled&quot;: True or False, # Enables the installation of Policy Controller. If false, the rest of PolicyController fields take no effect.
246            &quot;exemptableNamespaces&quot;: [ # The set of namespaces that are excluded from Policy Controller checks. Namespaces do not need to currently exist on the cluster.
247              &quot;A String&quot;,
248            ],
249            &quot;logDeniesEnabled&quot;: True or False, # Logs all denies and dry run failures.
250            &quot;referentialRulesEnabled&quot;: True or False, # Enables the ability to use Constraint Templates that reference to objects other than the object currently being evaluated.
251            &quot;templateLibraryInstalled&quot;: True or False, # Installs the default template library along with Policy Controller.
252          },
253          &quot;version&quot;: &quot;A String&quot;, # Version of ACM installed.
254        },
255        &quot;operatorState&quot;: { # State information for an ACM&#x27;s Operator # Current install status of ACM&#x27;s Operator
256          &quot;deploymentState&quot;: &quot;A String&quot;, # The state of the Operator&#x27;s deployment
257          &quot;errors&quot;: [ # Install errors.
258            { # Errors pertaining to the installation of ACM
259              &quot;errorMessage&quot;: &quot;A String&quot;, # A string representing the user facing error message
260            },
261          ],
262          &quot;version&quot;: &quot;A String&quot;, # The semenatic version number of the operator
263        },
264        &quot;policyControllerState&quot;: { # State for PolicyControllerState. # PolicyController status
265          &quot;deploymentState&quot;: { # State of Policy Controller installation. # The state about the policy controller installation.
266            &quot;gatekeeperAudit&quot;: &quot;A String&quot;, # Status of gatekeeper-audit deployment.
267            &quot;gatekeeperControllerManagerState&quot;: &quot;A String&quot;, # Status of gatekeeper-controller-manager pod.
268          },
269          &quot;version&quot;: { # The build version of Gatekeeper Policy Controller is using. # The version of Gatekeeper Policy Controller deployed.
270            &quot;version&quot;: &quot;A String&quot;, # The gatekeeper image tag that is composed of ACM version, git tag, build number.
271          },
272        },
273      },
274      &quot;metering&quot;: { # Metering per-Membership Feature State. # Metering-specific spec.
275        &quot;lastMeasurementTime&quot;: &quot;A String&quot;, # The time stamp of the most recent measurement of the number of vCPUs in the cluster.
276        &quot;preciseLastMeasuredClusterVcpuCapacity&quot;: 3.14, # The vCPUs capacity in the cluster according to the most recent measurement (1/1000 precision).
277      },
278      &quot;state&quot;: { # FeatureState describes the high-level state of a Feature. It may be used to describe a Feature&#x27;s state at the environ-level, or per-membershop, depending on the context. # The high-level state of this Feature for a single membership.
279        &quot;code&quot;: &quot;A String&quot;, # The high-level, machine-readable status of this Feature.
280        &quot;description&quot;: &quot;A String&quot;, # A human-readable description of the current status.
281        &quot;updateTime&quot;: &quot;A String&quot;, # The time this status and any related Feature-specific details were updated.
282      },
283    },
284  },
285  &quot;name&quot;: &quot;A String&quot;, # Output only. The full, unique name of this Feature resource in the format `projects/*/locations/global/features/*`.
286  &quot;resourceState&quot;: { # FeatureResourceState describes the state of a Feature *resource* in the GkeHub API. See `FeatureState` for the &quot;running state&quot; of the Feature in the Hub and across Memberships. # Output only. State of the Feature resource itself.
287    &quot;state&quot;: &quot;A String&quot;, # The current state of the Feature resource in the Hub API.
288  },
289  &quot;spec&quot;: { # CommonFeatureSpec contains Hub-wide configuration information # Optional. Hub-wide Feature configuration. If this Feature does not support any Hub-wide configuration, this field may be unused.
290    &quot;multiclusteringress&quot;: { # FeatureSpec contains the input for the MultiClusterIngress feature. # Multicluster Ingress-specific spec.
291      &quot;configMembership&quot;: &quot;A String&quot;, # Fully-qualified Membership name which hosts the MultiClusterIngress CRD. Example: `projects/foo-proj/locations/global/memberships/bar`
292    },
293  },
294  &quot;state&quot;: { # CommonFeatureState contains Hub-wide Feature status information. # Output only. The Hub-wide Feature state.
295    &quot;state&quot;: { # FeatureState describes the high-level state of a Feature. It may be used to describe a Feature&#x27;s state at the environ-level, or per-membershop, depending on the context. # Output only. The &quot;running state&quot; of the Feature in this Hub.
296      &quot;code&quot;: &quot;A String&quot;, # The high-level, machine-readable status of this Feature.
297      &quot;description&quot;: &quot;A String&quot;, # A human-readable description of the current status.
298      &quot;updateTime&quot;: &quot;A String&quot;, # The time this status and any related Feature-specific details were updated.
299    },
300  },
301  &quot;updateTime&quot;: &quot;A String&quot;, # Output only. When the Feature resource was last updated.
302}
303
304  featureId: string, The ID of the feature to create.
305  requestId: string, Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
306  x__xgafv: string, V1 error format.
307    Allowed values
308      1 - v1 error format
309      2 - v2 error format
310
311Returns:
312  An object of the form:
313
314    { # This resource represents a long-running operation that is the result of a network API call.
315  &quot;done&quot;: True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
316  &quot;error&quot;: { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
317    &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
318    &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
319      {
320        &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
321      },
322    ],
323    &quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
324  },
325  &quot;metadata&quot;: { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
326    &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
327  },
328  &quot;name&quot;: &quot;A String&quot;, # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
329  &quot;response&quot;: { # The normal response of the operation in case of success. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
330    &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
331  },
332}</pre>
333</div>
334
335<div class="method">
336    <code class="details" id="delete">delete(name, force=None, requestId=None, x__xgafv=None)</code>
337  <pre>Removes a Feature.
338
339Args:
340  name: string, The Feature resource name in the format `projects/*/locations/global/features/*`. (required)
341  force: boolean, If set to true, the delete will ignore any outstanding resources for this Feature (that is, `FeatureState.has_resources` is set to true). These resources will NOT be cleaned up or modified in any way.
342  requestId: string, Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
343  x__xgafv: string, V1 error format.
344    Allowed values
345      1 - v1 error format
346      2 - v2 error format
347
348Returns:
349  An object of the form:
350
351    { # This resource represents a long-running operation that is the result of a network API call.
352  &quot;done&quot;: True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
353  &quot;error&quot;: { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
354    &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
355    &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
356      {
357        &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
358      },
359    ],
360    &quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
361  },
362  &quot;metadata&quot;: { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
363    &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
364  },
365  &quot;name&quot;: &quot;A String&quot;, # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
366  &quot;response&quot;: { # The normal response of the operation in case of success. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
367    &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
368  },
369}</pre>
370</div>
371
372<div class="method">
373    <code class="details" id="get">get(name, x__xgafv=None)</code>
374  <pre>Gets details of a single Feature.
375
376Args:
377  name: string, The Feature resource name in the format `projects/*/locations/global/features/*` (required)
378  x__xgafv: string, V1 error format.
379    Allowed values
380      1 - v1 error format
381      2 - v2 error format
382
383Returns:
384  An object of the form:
385
386    { # Feature represents the settings and status of any Hub Feature.
387  &quot;createTime&quot;: &quot;A String&quot;, # Output only. When the Feature resource was created.
388  &quot;deleteTime&quot;: &quot;A String&quot;, # Output only. When the Feature resource was deleted.
389  &quot;labels&quot;: { # GCP labels for this Feature.
390    &quot;a_key&quot;: &quot;A String&quot;,
391  },
392  &quot;membershipSpecs&quot;: { # Optional. Membership-specific configuration for this Feature. If this Feature does not support any per-Membership configuration, this field may be unused. The keys indicate which Membership the configuration is for, in the form: projects/{p}/locations/{l}/memberships/{m} Where {p} is the project, {l} is a valid location and {m} is a valid Membership in this project at that location. {p} WILL match the Feature&#x27;s project. {p} will always be returned as the project number, but the project ID is also accepted during input. If the same Membership is specified in the map twice (using the project ID form, and the project number form), exactly ONE of the entries will be saved, with no guarantees as to which. For this reason, it is recommended the same format be used for all entries when mutating a Feature.
393    &quot;a_key&quot;: { # MembershipFeatureSpec contains configuration information for a single Membership.
394      &quot;configmanagement&quot;: { # Configuration for a single cluster. Intended to parallel the ConfigManagement CR. # Config Management-specific spec.
395        &quot;binauthz&quot;: { # Configuration for Binauthz # Binauthz conifguration for the cluster.
396          &quot;enabled&quot;: True or False, # Whether binauthz is enabled in this cluster.
397        },
398        &quot;configSync&quot;: { # Configuration for Config Sync # Config Sync configuration for the cluster.
399          &quot;git&quot;: { # Git repo configuration for a single cluster. # Git repo configuration for the cluster.
400            &quot;gcpServiceAccountEmail&quot;: &quot;A String&quot;, # The GCP Service Account Email used for auth when secret_type is gcpServiceAccount.
401            &quot;httpsProxy&quot;: &quot;A String&quot;, # URL for the HTTPS proxy to be used when communicating with the Git repo.
402            &quot;policyDir&quot;: &quot;A String&quot;, # The path within the Git repository that represents the top level of the repo to sync. Default: the root directory of the repository.
403            &quot;secretType&quot;: &quot;A String&quot;, # Type of secret configured for access to the Git repo.
404            &quot;syncBranch&quot;: &quot;A String&quot;, # The branch of the repository to sync from. Default: master.
405            &quot;syncRepo&quot;: &quot;A String&quot;, # The URL of the Git repository to use as the source of truth.
406            &quot;syncRev&quot;: &quot;A String&quot;, # Git revision (tag or hash) to check out. Default HEAD.
407            &quot;syncWaitSecs&quot;: &quot;A String&quot;, # Period in seconds between consecutive syncs. Default: 15.
408          },
409          &quot;sourceFormat&quot;: &quot;A String&quot;, # Specifies whether the Config Sync Repo is in “hierarchical” or “unstructured” mode.
410        },
411        &quot;hierarchyController&quot;: { # Configuration for Hierarchy Controller # Hierarchy Controller configuration for the cluster.
412          &quot;enableHierarchicalResourceQuota&quot;: True or False, # Whether hierarchical resource quota is enabled in this cluster.
413          &quot;enablePodTreeLabels&quot;: True or False, # Whether pod tree labels are enabled in this cluster.
414          &quot;enabled&quot;: True or False, # Whether Hierarchy Controller is enabled in this cluster.
415        },
416        &quot;policyController&quot;: { # Configuration for Policy Controller # Policy Controller configuration for the cluster.
417          &quot;auditIntervalSeconds&quot;: &quot;A String&quot;, # Sets the interval for Policy Controller Audit Scans (in seconds). When set to 0, this disables audit functionality altogether.
418          &quot;enabled&quot;: True or False, # Enables the installation of Policy Controller. If false, the rest of PolicyController fields take no effect.
419          &quot;exemptableNamespaces&quot;: [ # The set of namespaces that are excluded from Policy Controller checks. Namespaces do not need to currently exist on the cluster.
420            &quot;A String&quot;,
421          ],
422          &quot;logDeniesEnabled&quot;: True or False, # Logs all denies and dry run failures.
423          &quot;referentialRulesEnabled&quot;: True or False, # Enables the ability to use Constraint Templates that reference to objects other than the object currently being evaluated.
424          &quot;templateLibraryInstalled&quot;: True or False, # Installs the default template library along with Policy Controller.
425        },
426        &quot;version&quot;: &quot;A String&quot;, # Version of ACM installed.
427      },
428    },
429  },
430  &quot;membershipStates&quot;: { # Output only. Membership-specific Feature status. If this Feature does report any per-Membership status, this field may be unused. The keys indicate which Membership the state is for, in the form: projects/{p}/locations/{l}/memberships/{m} Where {p} is the project number, {l} is a valid location and {m} is a valid Membership in this project at that location. {p} MUST match the Feature&#x27;s project number.
431    &quot;a_key&quot;: { # MembershipFeatureState contains Feature status information for a single Membership.
432      &quot;configmanagement&quot;: { # State for Anthos Config Management # Config Management-specific state.
433        &quot;binauthzState&quot;: { # State for Binauthz # Binauthz status
434          &quot;version&quot;: { # The version of binauthz. # The version of binauthz that is installed.
435            &quot;webhookVersion&quot;: &quot;A String&quot;, # The version of the binauthz webhook.
436          },
437          &quot;webhook&quot;: &quot;A String&quot;, # The state of the binauthz webhook.
438        },
439        &quot;clusterName&quot;: &quot;A String&quot;, # The user-defined name for the cluster used by ClusterSelectors to group clusters together. This should match Membership&#x27;s membership_name, unless the user installed ACM on the cluster manually prior to enabling the ACM hub feature. Unique within a Anthos Config Management installation.
440        &quot;configSyncState&quot;: { # State information for ConfigSync # Current sync status
441          &quot;deploymentState&quot;: { # The state of ConfigSync&#x27;s deployment on a cluster # Information about the deployment of ConfigSync, including the version of the various Pods deployed
442            &quot;gitSync&quot;: &quot;A String&quot;, # Deployment state of the git-sync pod
443            &quot;importer&quot;: &quot;A String&quot;, # Deployment state of the importer pod
444            &quot;monitor&quot;: &quot;A String&quot;, # Deployment state of the monitor pod
445            &quot;reconcilerManager&quot;: &quot;A String&quot;, # Deployment state of reconciler-manager pod
446            &quot;rootReconciler&quot;: &quot;A String&quot;, # Deployment state of root-reconciler
447            &quot;syncer&quot;: &quot;A String&quot;, # Deployment state of the syncer pod
448          },
449          &quot;syncState&quot;: { # State indicating an ACM&#x27;s progress syncing configurations to a cluster # The state of ConfigSync&#x27;s process to sync configs to a cluster
450            &quot;code&quot;: &quot;A String&quot;, # Sync status code
451            &quot;errors&quot;: [ # A list of errors resulting from problematic configs. This list will be truncated after 100 errors, although it is unlikely for that many errors to simultaneously exist.
452              { # An ACM created error representing a problem syncing configurations
453                &quot;code&quot;: &quot;A String&quot;, # An ACM defined error code
454                &quot;errorMessage&quot;: &quot;A String&quot;, # A description of the error
455                &quot;errorResources&quot;: [ # A list of config(s) associated with the error, if any
456                  { # Model for a config file in the git repo with an associated Sync error
457                    &quot;resourceGvk&quot;: { # A Kubernetes object&#x27;s GVK # Group/version/kind of the resource that is causing an error
458                      &quot;group&quot;: &quot;A String&quot;, # Kubernetes Group
459                      &quot;kind&quot;: &quot;A String&quot;, # Kubernetes Kind
460                      &quot;version&quot;: &quot;A String&quot;, # Kubernetes Version
461                    },
462                    &quot;resourceName&quot;: &quot;A String&quot;, # Metadata name of the resource that is causing an error
463                    &quot;resourceNamespace&quot;: &quot;A String&quot;, # Namespace of the resource that is causing an error
464                    &quot;sourcePath&quot;: &quot;A String&quot;, # Path in the git repo of the erroneous config
465                  },
466                ],
467              },
468            ],
469            &quot;importToken&quot;: &quot;A String&quot;, # Token indicating the state of the importer.
470            &quot;lastSync&quot;: &quot;A String&quot;, # Timestamp of when ACM last successfully synced the repo The time format is specified in https://golang.org/pkg/time/#Time.String This field is being deprecated. Use last_sync_time instead. (b/154053616)
471            &quot;lastSyncTime&quot;: &quot;A String&quot;, # Timestamp type of when ACM last successfully synced the repo
472            &quot;sourceToken&quot;: &quot;A String&quot;, # Token indicating the state of the repo.
473            &quot;syncToken&quot;: &quot;A String&quot;, # Token indicating the state of the syncer.
474          },
475          &quot;version&quot;: { # Specific versioning information pertaining to ConfigSync&#x27;s Pods # The version of ConfigSync deployed
476            &quot;gitSync&quot;: &quot;A String&quot;, # Version of the deployed git-sync pod
477            &quot;importer&quot;: &quot;A String&quot;, # Version of the deployed importer pod
478            &quot;monitor&quot;: &quot;A String&quot;, # Version of the deployed monitor pod
479            &quot;reconcilerManager&quot;: &quot;A String&quot;, # Version of the deployed reconciler-manager pod
480            &quot;rootReconciler&quot;: &quot;A String&quot;, # Version of the deployed reconciler container in root-reconciler pod
481            &quot;syncer&quot;: &quot;A String&quot;, # Version of the deployed syncer pod
482          },
483        },
484        &quot;hierarchyControllerState&quot;: { # State for Hierarchy Controller # Hierarchy Controller status
485          &quot;state&quot;: { # Deployment state for Hierarchy Controller # The deployment state for Hierarchy Controller
486            &quot;extension&quot;: &quot;A String&quot;, # The deployment state for Hierarchy Controller extension (e.g. v0.7.0-hc.1)
487            &quot;hnc&quot;: &quot;A String&quot;, # The deployment state for open source HNC (e.g. v0.7.0-hc.0)
488          },
489          &quot;version&quot;: { # Version for Hierarchy Controller # The version for Hierarchy Controller
490            &quot;extension&quot;: &quot;A String&quot;, # Version for Hierarchy Controller extension
491            &quot;hnc&quot;: &quot;A String&quot;, # Version for open source HNC
492          },
493        },
494        &quot;membershipSpec&quot;: { # Configuration for a single cluster. Intended to parallel the ConfigManagement CR. # Membership configuration in the cluster. This represents the actual state in the cluster, while the MembershipSpec in the FeatureSpec represents the intended state
495          &quot;binauthz&quot;: { # Configuration for Binauthz # Binauthz conifguration for the cluster.
496            &quot;enabled&quot;: True or False, # Whether binauthz is enabled in this cluster.
497          },
498          &quot;configSync&quot;: { # Configuration for Config Sync # Config Sync configuration for the cluster.
499            &quot;git&quot;: { # Git repo configuration for a single cluster. # Git repo configuration for the cluster.
500              &quot;gcpServiceAccountEmail&quot;: &quot;A String&quot;, # The GCP Service Account Email used for auth when secret_type is gcpServiceAccount.
501              &quot;httpsProxy&quot;: &quot;A String&quot;, # URL for the HTTPS proxy to be used when communicating with the Git repo.
502              &quot;policyDir&quot;: &quot;A String&quot;, # The path within the Git repository that represents the top level of the repo to sync. Default: the root directory of the repository.
503              &quot;secretType&quot;: &quot;A String&quot;, # Type of secret configured for access to the Git repo.
504              &quot;syncBranch&quot;: &quot;A String&quot;, # The branch of the repository to sync from. Default: master.
505              &quot;syncRepo&quot;: &quot;A String&quot;, # The URL of the Git repository to use as the source of truth.
506              &quot;syncRev&quot;: &quot;A String&quot;, # Git revision (tag or hash) to check out. Default HEAD.
507              &quot;syncWaitSecs&quot;: &quot;A String&quot;, # Period in seconds between consecutive syncs. Default: 15.
508            },
509            &quot;sourceFormat&quot;: &quot;A String&quot;, # Specifies whether the Config Sync Repo is in “hierarchical” or “unstructured” mode.
510          },
511          &quot;hierarchyController&quot;: { # Configuration for Hierarchy Controller # Hierarchy Controller configuration for the cluster.
512            &quot;enableHierarchicalResourceQuota&quot;: True or False, # Whether hierarchical resource quota is enabled in this cluster.
513            &quot;enablePodTreeLabels&quot;: True or False, # Whether pod tree labels are enabled in this cluster.
514            &quot;enabled&quot;: True or False, # Whether Hierarchy Controller is enabled in this cluster.
515          },
516          &quot;policyController&quot;: { # Configuration for Policy Controller # Policy Controller configuration for the cluster.
517            &quot;auditIntervalSeconds&quot;: &quot;A String&quot;, # Sets the interval for Policy Controller Audit Scans (in seconds). When set to 0, this disables audit functionality altogether.
518            &quot;enabled&quot;: True or False, # Enables the installation of Policy Controller. If false, the rest of PolicyController fields take no effect.
519            &quot;exemptableNamespaces&quot;: [ # The set of namespaces that are excluded from Policy Controller checks. Namespaces do not need to currently exist on the cluster.
520              &quot;A String&quot;,
521            ],
522            &quot;logDeniesEnabled&quot;: True or False, # Logs all denies and dry run failures.
523            &quot;referentialRulesEnabled&quot;: True or False, # Enables the ability to use Constraint Templates that reference to objects other than the object currently being evaluated.
524            &quot;templateLibraryInstalled&quot;: True or False, # Installs the default template library along with Policy Controller.
525          },
526          &quot;version&quot;: &quot;A String&quot;, # Version of ACM installed.
527        },
528        &quot;operatorState&quot;: { # State information for an ACM&#x27;s Operator # Current install status of ACM&#x27;s Operator
529          &quot;deploymentState&quot;: &quot;A String&quot;, # The state of the Operator&#x27;s deployment
530          &quot;errors&quot;: [ # Install errors.
531            { # Errors pertaining to the installation of ACM
532              &quot;errorMessage&quot;: &quot;A String&quot;, # A string representing the user facing error message
533            },
534          ],
535          &quot;version&quot;: &quot;A String&quot;, # The semenatic version number of the operator
536        },
537        &quot;policyControllerState&quot;: { # State for PolicyControllerState. # PolicyController status
538          &quot;deploymentState&quot;: { # State of Policy Controller installation. # The state about the policy controller installation.
539            &quot;gatekeeperAudit&quot;: &quot;A String&quot;, # Status of gatekeeper-audit deployment.
540            &quot;gatekeeperControllerManagerState&quot;: &quot;A String&quot;, # Status of gatekeeper-controller-manager pod.
541          },
542          &quot;version&quot;: { # The build version of Gatekeeper Policy Controller is using. # The version of Gatekeeper Policy Controller deployed.
543            &quot;version&quot;: &quot;A String&quot;, # The gatekeeper image tag that is composed of ACM version, git tag, build number.
544          },
545        },
546      },
547      &quot;metering&quot;: { # Metering per-Membership Feature State. # Metering-specific spec.
548        &quot;lastMeasurementTime&quot;: &quot;A String&quot;, # The time stamp of the most recent measurement of the number of vCPUs in the cluster.
549        &quot;preciseLastMeasuredClusterVcpuCapacity&quot;: 3.14, # The vCPUs capacity in the cluster according to the most recent measurement (1/1000 precision).
550      },
551      &quot;state&quot;: { # FeatureState describes the high-level state of a Feature. It may be used to describe a Feature&#x27;s state at the environ-level, or per-membershop, depending on the context. # The high-level state of this Feature for a single membership.
552        &quot;code&quot;: &quot;A String&quot;, # The high-level, machine-readable status of this Feature.
553        &quot;description&quot;: &quot;A String&quot;, # A human-readable description of the current status.
554        &quot;updateTime&quot;: &quot;A String&quot;, # The time this status and any related Feature-specific details were updated.
555      },
556    },
557  },
558  &quot;name&quot;: &quot;A String&quot;, # Output only. The full, unique name of this Feature resource in the format `projects/*/locations/global/features/*`.
559  &quot;resourceState&quot;: { # FeatureResourceState describes the state of a Feature *resource* in the GkeHub API. See `FeatureState` for the &quot;running state&quot; of the Feature in the Hub and across Memberships. # Output only. State of the Feature resource itself.
560    &quot;state&quot;: &quot;A String&quot;, # The current state of the Feature resource in the Hub API.
561  },
562  &quot;spec&quot;: { # CommonFeatureSpec contains Hub-wide configuration information # Optional. Hub-wide Feature configuration. If this Feature does not support any Hub-wide configuration, this field may be unused.
563    &quot;multiclusteringress&quot;: { # FeatureSpec contains the input for the MultiClusterIngress feature. # Multicluster Ingress-specific spec.
564      &quot;configMembership&quot;: &quot;A String&quot;, # Fully-qualified Membership name which hosts the MultiClusterIngress CRD. Example: `projects/foo-proj/locations/global/memberships/bar`
565    },
566  },
567  &quot;state&quot;: { # CommonFeatureState contains Hub-wide Feature status information. # Output only. The Hub-wide Feature state.
568    &quot;state&quot;: { # FeatureState describes the high-level state of a Feature. It may be used to describe a Feature&#x27;s state at the environ-level, or per-membershop, depending on the context. # Output only. The &quot;running state&quot; of the Feature in this Hub.
569      &quot;code&quot;: &quot;A String&quot;, # The high-level, machine-readable status of this Feature.
570      &quot;description&quot;: &quot;A String&quot;, # A human-readable description of the current status.
571      &quot;updateTime&quot;: &quot;A String&quot;, # The time this status and any related Feature-specific details were updated.
572    },
573  },
574  &quot;updateTime&quot;: &quot;A String&quot;, # Output only. When the Feature resource was last updated.
575}</pre>
576</div>
577
578<div class="method">
579    <code class="details" id="list">list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</code>
580  <pre>Lists Features in a given project and location.
581
582Args:
583  parent: string, The parent (project and location) where the Features will be listed. Specified in the format `projects/*/locations/global`. (required)
584  filter: string, Lists Features that match the filter expression, following the syntax outlined in https://google.aip.dev/160. Examples: - Feature with the name &quot;servicemesh&quot; in project &quot;foo-proj&quot;: name = &quot;projects/foo-proj/locations/global/features/servicemesh&quot; - Features that have a label called `foo`: labels.foo:* - Features that have a label called `foo` whose value is `bar`: labels.foo = bar
585  orderBy: string, One or more fields to compare and use to sort the output. See https://google.aip.dev/132#ordering.
586  pageSize: integer, When requesting a &#x27;page&#x27; of resources, `page_size` specifies number of resources to return. If unspecified or set to 0, all resources will be returned.
587  pageToken: string, Token returned by previous call to `ListFeatures` which specifies the position in the list from where to continue listing the resources.
588  x__xgafv: string, V1 error format.
589    Allowed values
590      1 - v1 error format
591      2 - v2 error format
592
593Returns:
594  An object of the form:
595
596    { # Response message for the `GkeHub.ListFeatures` method.
597  &quot;nextPageToken&quot;: &quot;A String&quot;, # A token to request the next page of resources from the `ListFeatures` method. The value of an empty string means that there are no more resources to return.
598  &quot;resources&quot;: [ # The list of matching Features
599    { # Feature represents the settings and status of any Hub Feature.
600      &quot;createTime&quot;: &quot;A String&quot;, # Output only. When the Feature resource was created.
601      &quot;deleteTime&quot;: &quot;A String&quot;, # Output only. When the Feature resource was deleted.
602      &quot;labels&quot;: { # GCP labels for this Feature.
603        &quot;a_key&quot;: &quot;A String&quot;,
604      },
605      &quot;membershipSpecs&quot;: { # Optional. Membership-specific configuration for this Feature. If this Feature does not support any per-Membership configuration, this field may be unused. The keys indicate which Membership the configuration is for, in the form: projects/{p}/locations/{l}/memberships/{m} Where {p} is the project, {l} is a valid location and {m} is a valid Membership in this project at that location. {p} WILL match the Feature&#x27;s project. {p} will always be returned as the project number, but the project ID is also accepted during input. If the same Membership is specified in the map twice (using the project ID form, and the project number form), exactly ONE of the entries will be saved, with no guarantees as to which. For this reason, it is recommended the same format be used for all entries when mutating a Feature.
606        &quot;a_key&quot;: { # MembershipFeatureSpec contains configuration information for a single Membership.
607          &quot;configmanagement&quot;: { # Configuration for a single cluster. Intended to parallel the ConfigManagement CR. # Config Management-specific spec.
608            &quot;binauthz&quot;: { # Configuration for Binauthz # Binauthz conifguration for the cluster.
609              &quot;enabled&quot;: True or False, # Whether binauthz is enabled in this cluster.
610            },
611            &quot;configSync&quot;: { # Configuration for Config Sync # Config Sync configuration for the cluster.
612              &quot;git&quot;: { # Git repo configuration for a single cluster. # Git repo configuration for the cluster.
613                &quot;gcpServiceAccountEmail&quot;: &quot;A String&quot;, # The GCP Service Account Email used for auth when secret_type is gcpServiceAccount.
614                &quot;httpsProxy&quot;: &quot;A String&quot;, # URL for the HTTPS proxy to be used when communicating with the Git repo.
615                &quot;policyDir&quot;: &quot;A String&quot;, # The path within the Git repository that represents the top level of the repo to sync. Default: the root directory of the repository.
616                &quot;secretType&quot;: &quot;A String&quot;, # Type of secret configured for access to the Git repo.
617                &quot;syncBranch&quot;: &quot;A String&quot;, # The branch of the repository to sync from. Default: master.
618                &quot;syncRepo&quot;: &quot;A String&quot;, # The URL of the Git repository to use as the source of truth.
619                &quot;syncRev&quot;: &quot;A String&quot;, # Git revision (tag or hash) to check out. Default HEAD.
620                &quot;syncWaitSecs&quot;: &quot;A String&quot;, # Period in seconds between consecutive syncs. Default: 15.
621              },
622              &quot;sourceFormat&quot;: &quot;A String&quot;, # Specifies whether the Config Sync Repo is in “hierarchical” or “unstructured” mode.
623            },
624            &quot;hierarchyController&quot;: { # Configuration for Hierarchy Controller # Hierarchy Controller configuration for the cluster.
625              &quot;enableHierarchicalResourceQuota&quot;: True or False, # Whether hierarchical resource quota is enabled in this cluster.
626              &quot;enablePodTreeLabels&quot;: True or False, # Whether pod tree labels are enabled in this cluster.
627              &quot;enabled&quot;: True or False, # Whether Hierarchy Controller is enabled in this cluster.
628            },
629            &quot;policyController&quot;: { # Configuration for Policy Controller # Policy Controller configuration for the cluster.
630              &quot;auditIntervalSeconds&quot;: &quot;A String&quot;, # Sets the interval for Policy Controller Audit Scans (in seconds). When set to 0, this disables audit functionality altogether.
631              &quot;enabled&quot;: True or False, # Enables the installation of Policy Controller. If false, the rest of PolicyController fields take no effect.
632              &quot;exemptableNamespaces&quot;: [ # The set of namespaces that are excluded from Policy Controller checks. Namespaces do not need to currently exist on the cluster.
633                &quot;A String&quot;,
634              ],
635              &quot;logDeniesEnabled&quot;: True or False, # Logs all denies and dry run failures.
636              &quot;referentialRulesEnabled&quot;: True or False, # Enables the ability to use Constraint Templates that reference to objects other than the object currently being evaluated.
637              &quot;templateLibraryInstalled&quot;: True or False, # Installs the default template library along with Policy Controller.
638            },
639            &quot;version&quot;: &quot;A String&quot;, # Version of ACM installed.
640          },
641        },
642      },
643      &quot;membershipStates&quot;: { # Output only. Membership-specific Feature status. If this Feature does report any per-Membership status, this field may be unused. The keys indicate which Membership the state is for, in the form: projects/{p}/locations/{l}/memberships/{m} Where {p} is the project number, {l} is a valid location and {m} is a valid Membership in this project at that location. {p} MUST match the Feature&#x27;s project number.
644        &quot;a_key&quot;: { # MembershipFeatureState contains Feature status information for a single Membership.
645          &quot;configmanagement&quot;: { # State for Anthos Config Management # Config Management-specific state.
646            &quot;binauthzState&quot;: { # State for Binauthz # Binauthz status
647              &quot;version&quot;: { # The version of binauthz. # The version of binauthz that is installed.
648                &quot;webhookVersion&quot;: &quot;A String&quot;, # The version of the binauthz webhook.
649              },
650              &quot;webhook&quot;: &quot;A String&quot;, # The state of the binauthz webhook.
651            },
652            &quot;clusterName&quot;: &quot;A String&quot;, # The user-defined name for the cluster used by ClusterSelectors to group clusters together. This should match Membership&#x27;s membership_name, unless the user installed ACM on the cluster manually prior to enabling the ACM hub feature. Unique within a Anthos Config Management installation.
653            &quot;configSyncState&quot;: { # State information for ConfigSync # Current sync status
654              &quot;deploymentState&quot;: { # The state of ConfigSync&#x27;s deployment on a cluster # Information about the deployment of ConfigSync, including the version of the various Pods deployed
655                &quot;gitSync&quot;: &quot;A String&quot;, # Deployment state of the git-sync pod
656                &quot;importer&quot;: &quot;A String&quot;, # Deployment state of the importer pod
657                &quot;monitor&quot;: &quot;A String&quot;, # Deployment state of the monitor pod
658                &quot;reconcilerManager&quot;: &quot;A String&quot;, # Deployment state of reconciler-manager pod
659                &quot;rootReconciler&quot;: &quot;A String&quot;, # Deployment state of root-reconciler
660                &quot;syncer&quot;: &quot;A String&quot;, # Deployment state of the syncer pod
661              },
662              &quot;syncState&quot;: { # State indicating an ACM&#x27;s progress syncing configurations to a cluster # The state of ConfigSync&#x27;s process to sync configs to a cluster
663                &quot;code&quot;: &quot;A String&quot;, # Sync status code
664                &quot;errors&quot;: [ # A list of errors resulting from problematic configs. This list will be truncated after 100 errors, although it is unlikely for that many errors to simultaneously exist.
665                  { # An ACM created error representing a problem syncing configurations
666                    &quot;code&quot;: &quot;A String&quot;, # An ACM defined error code
667                    &quot;errorMessage&quot;: &quot;A String&quot;, # A description of the error
668                    &quot;errorResources&quot;: [ # A list of config(s) associated with the error, if any
669                      { # Model for a config file in the git repo with an associated Sync error
670                        &quot;resourceGvk&quot;: { # A Kubernetes object&#x27;s GVK # Group/version/kind of the resource that is causing an error
671                          &quot;group&quot;: &quot;A String&quot;, # Kubernetes Group
672                          &quot;kind&quot;: &quot;A String&quot;, # Kubernetes Kind
673                          &quot;version&quot;: &quot;A String&quot;, # Kubernetes Version
674                        },
675                        &quot;resourceName&quot;: &quot;A String&quot;, # Metadata name of the resource that is causing an error
676                        &quot;resourceNamespace&quot;: &quot;A String&quot;, # Namespace of the resource that is causing an error
677                        &quot;sourcePath&quot;: &quot;A String&quot;, # Path in the git repo of the erroneous config
678                      },
679                    ],
680                  },
681                ],
682                &quot;importToken&quot;: &quot;A String&quot;, # Token indicating the state of the importer.
683                &quot;lastSync&quot;: &quot;A String&quot;, # Timestamp of when ACM last successfully synced the repo The time format is specified in https://golang.org/pkg/time/#Time.String This field is being deprecated. Use last_sync_time instead. (b/154053616)
684                &quot;lastSyncTime&quot;: &quot;A String&quot;, # Timestamp type of when ACM last successfully synced the repo
685                &quot;sourceToken&quot;: &quot;A String&quot;, # Token indicating the state of the repo.
686                &quot;syncToken&quot;: &quot;A String&quot;, # Token indicating the state of the syncer.
687              },
688              &quot;version&quot;: { # Specific versioning information pertaining to ConfigSync&#x27;s Pods # The version of ConfigSync deployed
689                &quot;gitSync&quot;: &quot;A String&quot;, # Version of the deployed git-sync pod
690                &quot;importer&quot;: &quot;A String&quot;, # Version of the deployed importer pod
691                &quot;monitor&quot;: &quot;A String&quot;, # Version of the deployed monitor pod
692                &quot;reconcilerManager&quot;: &quot;A String&quot;, # Version of the deployed reconciler-manager pod
693                &quot;rootReconciler&quot;: &quot;A String&quot;, # Version of the deployed reconciler container in root-reconciler pod
694                &quot;syncer&quot;: &quot;A String&quot;, # Version of the deployed syncer pod
695              },
696            },
697            &quot;hierarchyControllerState&quot;: { # State for Hierarchy Controller # Hierarchy Controller status
698              &quot;state&quot;: { # Deployment state for Hierarchy Controller # The deployment state for Hierarchy Controller
699                &quot;extension&quot;: &quot;A String&quot;, # The deployment state for Hierarchy Controller extension (e.g. v0.7.0-hc.1)
700                &quot;hnc&quot;: &quot;A String&quot;, # The deployment state for open source HNC (e.g. v0.7.0-hc.0)
701              },
702              &quot;version&quot;: { # Version for Hierarchy Controller # The version for Hierarchy Controller
703                &quot;extension&quot;: &quot;A String&quot;, # Version for Hierarchy Controller extension
704                &quot;hnc&quot;: &quot;A String&quot;, # Version for open source HNC
705              },
706            },
707            &quot;membershipSpec&quot;: { # Configuration for a single cluster. Intended to parallel the ConfigManagement CR. # Membership configuration in the cluster. This represents the actual state in the cluster, while the MembershipSpec in the FeatureSpec represents the intended state
708              &quot;binauthz&quot;: { # Configuration for Binauthz # Binauthz conifguration for the cluster.
709                &quot;enabled&quot;: True or False, # Whether binauthz is enabled in this cluster.
710              },
711              &quot;configSync&quot;: { # Configuration for Config Sync # Config Sync configuration for the cluster.
712                &quot;git&quot;: { # Git repo configuration for a single cluster. # Git repo configuration for the cluster.
713                  &quot;gcpServiceAccountEmail&quot;: &quot;A String&quot;, # The GCP Service Account Email used for auth when secret_type is gcpServiceAccount.
714                  &quot;httpsProxy&quot;: &quot;A String&quot;, # URL for the HTTPS proxy to be used when communicating with the Git repo.
715                  &quot;policyDir&quot;: &quot;A String&quot;, # The path within the Git repository that represents the top level of the repo to sync. Default: the root directory of the repository.
716                  &quot;secretType&quot;: &quot;A String&quot;, # Type of secret configured for access to the Git repo.
717                  &quot;syncBranch&quot;: &quot;A String&quot;, # The branch of the repository to sync from. Default: master.
718                  &quot;syncRepo&quot;: &quot;A String&quot;, # The URL of the Git repository to use as the source of truth.
719                  &quot;syncRev&quot;: &quot;A String&quot;, # Git revision (tag or hash) to check out. Default HEAD.
720                  &quot;syncWaitSecs&quot;: &quot;A String&quot;, # Period in seconds between consecutive syncs. Default: 15.
721                },
722                &quot;sourceFormat&quot;: &quot;A String&quot;, # Specifies whether the Config Sync Repo is in “hierarchical” or “unstructured” mode.
723              },
724              &quot;hierarchyController&quot;: { # Configuration for Hierarchy Controller # Hierarchy Controller configuration for the cluster.
725                &quot;enableHierarchicalResourceQuota&quot;: True or False, # Whether hierarchical resource quota is enabled in this cluster.
726                &quot;enablePodTreeLabels&quot;: True or False, # Whether pod tree labels are enabled in this cluster.
727                &quot;enabled&quot;: True or False, # Whether Hierarchy Controller is enabled in this cluster.
728              },
729              &quot;policyController&quot;: { # Configuration for Policy Controller # Policy Controller configuration for the cluster.
730                &quot;auditIntervalSeconds&quot;: &quot;A String&quot;, # Sets the interval for Policy Controller Audit Scans (in seconds). When set to 0, this disables audit functionality altogether.
731                &quot;enabled&quot;: True or False, # Enables the installation of Policy Controller. If false, the rest of PolicyController fields take no effect.
732                &quot;exemptableNamespaces&quot;: [ # The set of namespaces that are excluded from Policy Controller checks. Namespaces do not need to currently exist on the cluster.
733                  &quot;A String&quot;,
734                ],
735                &quot;logDeniesEnabled&quot;: True or False, # Logs all denies and dry run failures.
736                &quot;referentialRulesEnabled&quot;: True or False, # Enables the ability to use Constraint Templates that reference to objects other than the object currently being evaluated.
737                &quot;templateLibraryInstalled&quot;: True or False, # Installs the default template library along with Policy Controller.
738              },
739              &quot;version&quot;: &quot;A String&quot;, # Version of ACM installed.
740            },
741            &quot;operatorState&quot;: { # State information for an ACM&#x27;s Operator # Current install status of ACM&#x27;s Operator
742              &quot;deploymentState&quot;: &quot;A String&quot;, # The state of the Operator&#x27;s deployment
743              &quot;errors&quot;: [ # Install errors.
744                { # Errors pertaining to the installation of ACM
745                  &quot;errorMessage&quot;: &quot;A String&quot;, # A string representing the user facing error message
746                },
747              ],
748              &quot;version&quot;: &quot;A String&quot;, # The semenatic version number of the operator
749            },
750            &quot;policyControllerState&quot;: { # State for PolicyControllerState. # PolicyController status
751              &quot;deploymentState&quot;: { # State of Policy Controller installation. # The state about the policy controller installation.
752                &quot;gatekeeperAudit&quot;: &quot;A String&quot;, # Status of gatekeeper-audit deployment.
753                &quot;gatekeeperControllerManagerState&quot;: &quot;A String&quot;, # Status of gatekeeper-controller-manager pod.
754              },
755              &quot;version&quot;: { # The build version of Gatekeeper Policy Controller is using. # The version of Gatekeeper Policy Controller deployed.
756                &quot;version&quot;: &quot;A String&quot;, # The gatekeeper image tag that is composed of ACM version, git tag, build number.
757              },
758            },
759          },
760          &quot;metering&quot;: { # Metering per-Membership Feature State. # Metering-specific spec.
761            &quot;lastMeasurementTime&quot;: &quot;A String&quot;, # The time stamp of the most recent measurement of the number of vCPUs in the cluster.
762            &quot;preciseLastMeasuredClusterVcpuCapacity&quot;: 3.14, # The vCPUs capacity in the cluster according to the most recent measurement (1/1000 precision).
763          },
764          &quot;state&quot;: { # FeatureState describes the high-level state of a Feature. It may be used to describe a Feature&#x27;s state at the environ-level, or per-membershop, depending on the context. # The high-level state of this Feature for a single membership.
765            &quot;code&quot;: &quot;A String&quot;, # The high-level, machine-readable status of this Feature.
766            &quot;description&quot;: &quot;A String&quot;, # A human-readable description of the current status.
767            &quot;updateTime&quot;: &quot;A String&quot;, # The time this status and any related Feature-specific details were updated.
768          },
769        },
770      },
771      &quot;name&quot;: &quot;A String&quot;, # Output only. The full, unique name of this Feature resource in the format `projects/*/locations/global/features/*`.
772      &quot;resourceState&quot;: { # FeatureResourceState describes the state of a Feature *resource* in the GkeHub API. See `FeatureState` for the &quot;running state&quot; of the Feature in the Hub and across Memberships. # Output only. State of the Feature resource itself.
773        &quot;state&quot;: &quot;A String&quot;, # The current state of the Feature resource in the Hub API.
774      },
775      &quot;spec&quot;: { # CommonFeatureSpec contains Hub-wide configuration information # Optional. Hub-wide Feature configuration. If this Feature does not support any Hub-wide configuration, this field may be unused.
776        &quot;multiclusteringress&quot;: { # FeatureSpec contains the input for the MultiClusterIngress feature. # Multicluster Ingress-specific spec.
777          &quot;configMembership&quot;: &quot;A String&quot;, # Fully-qualified Membership name which hosts the MultiClusterIngress CRD. Example: `projects/foo-proj/locations/global/memberships/bar`
778        },
779      },
780      &quot;state&quot;: { # CommonFeatureState contains Hub-wide Feature status information. # Output only. The Hub-wide Feature state.
781        &quot;state&quot;: { # FeatureState describes the high-level state of a Feature. It may be used to describe a Feature&#x27;s state at the environ-level, or per-membershop, depending on the context. # Output only. The &quot;running state&quot; of the Feature in this Hub.
782          &quot;code&quot;: &quot;A String&quot;, # The high-level, machine-readable status of this Feature.
783          &quot;description&quot;: &quot;A String&quot;, # A human-readable description of the current status.
784          &quot;updateTime&quot;: &quot;A String&quot;, # The time this status and any related Feature-specific details were updated.
785        },
786      },
787      &quot;updateTime&quot;: &quot;A String&quot;, # Output only. When the Feature resource was last updated.
788    },
789  ],
790}</pre>
791</div>
792
793<div class="method">
794    <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
795  <pre>Retrieves the next page of results.
796
797Args:
798  previous_request: The request for the previous page. (required)
799  previous_response: The response from the request for the previous page. (required)
800
801Returns:
802  A request object that you can call &#x27;execute()&#x27; on to request the next
803  page. Returns None if there are no more items in the collection.
804    </pre>
805</div>
806
807<div class="method">
808    <code class="details" id="patch">patch(name, body=None, requestId=None, updateMask=None, x__xgafv=None)</code>
809  <pre>Updates an existing Feature.
810
811Args:
812  name: string, The Feature resource name in the format `projects/*/locations/global/features/*`. (required)
813  body: object, The request body.
814    The object takes the form of:
815
816{ # Feature represents the settings and status of any Hub Feature.
817  &quot;createTime&quot;: &quot;A String&quot;, # Output only. When the Feature resource was created.
818  &quot;deleteTime&quot;: &quot;A String&quot;, # Output only. When the Feature resource was deleted.
819  &quot;labels&quot;: { # GCP labels for this Feature.
820    &quot;a_key&quot;: &quot;A String&quot;,
821  },
822  &quot;membershipSpecs&quot;: { # Optional. Membership-specific configuration for this Feature. If this Feature does not support any per-Membership configuration, this field may be unused. The keys indicate which Membership the configuration is for, in the form: projects/{p}/locations/{l}/memberships/{m} Where {p} is the project, {l} is a valid location and {m} is a valid Membership in this project at that location. {p} WILL match the Feature&#x27;s project. {p} will always be returned as the project number, but the project ID is also accepted during input. If the same Membership is specified in the map twice (using the project ID form, and the project number form), exactly ONE of the entries will be saved, with no guarantees as to which. For this reason, it is recommended the same format be used for all entries when mutating a Feature.
823    &quot;a_key&quot;: { # MembershipFeatureSpec contains configuration information for a single Membership.
824      &quot;configmanagement&quot;: { # Configuration for a single cluster. Intended to parallel the ConfigManagement CR. # Config Management-specific spec.
825        &quot;binauthz&quot;: { # Configuration for Binauthz # Binauthz conifguration for the cluster.
826          &quot;enabled&quot;: True or False, # Whether binauthz is enabled in this cluster.
827        },
828        &quot;configSync&quot;: { # Configuration for Config Sync # Config Sync configuration for the cluster.
829          &quot;git&quot;: { # Git repo configuration for a single cluster. # Git repo configuration for the cluster.
830            &quot;gcpServiceAccountEmail&quot;: &quot;A String&quot;, # The GCP Service Account Email used for auth when secret_type is gcpServiceAccount.
831            &quot;httpsProxy&quot;: &quot;A String&quot;, # URL for the HTTPS proxy to be used when communicating with the Git repo.
832            &quot;policyDir&quot;: &quot;A String&quot;, # The path within the Git repository that represents the top level of the repo to sync. Default: the root directory of the repository.
833            &quot;secretType&quot;: &quot;A String&quot;, # Type of secret configured for access to the Git repo.
834            &quot;syncBranch&quot;: &quot;A String&quot;, # The branch of the repository to sync from. Default: master.
835            &quot;syncRepo&quot;: &quot;A String&quot;, # The URL of the Git repository to use as the source of truth.
836            &quot;syncRev&quot;: &quot;A String&quot;, # Git revision (tag or hash) to check out. Default HEAD.
837            &quot;syncWaitSecs&quot;: &quot;A String&quot;, # Period in seconds between consecutive syncs. Default: 15.
838          },
839          &quot;sourceFormat&quot;: &quot;A String&quot;, # Specifies whether the Config Sync Repo is in “hierarchical” or “unstructured” mode.
840        },
841        &quot;hierarchyController&quot;: { # Configuration for Hierarchy Controller # Hierarchy Controller configuration for the cluster.
842          &quot;enableHierarchicalResourceQuota&quot;: True or False, # Whether hierarchical resource quota is enabled in this cluster.
843          &quot;enablePodTreeLabels&quot;: True or False, # Whether pod tree labels are enabled in this cluster.
844          &quot;enabled&quot;: True or False, # Whether Hierarchy Controller is enabled in this cluster.
845        },
846        &quot;policyController&quot;: { # Configuration for Policy Controller # Policy Controller configuration for the cluster.
847          &quot;auditIntervalSeconds&quot;: &quot;A String&quot;, # Sets the interval for Policy Controller Audit Scans (in seconds). When set to 0, this disables audit functionality altogether.
848          &quot;enabled&quot;: True or False, # Enables the installation of Policy Controller. If false, the rest of PolicyController fields take no effect.
849          &quot;exemptableNamespaces&quot;: [ # The set of namespaces that are excluded from Policy Controller checks. Namespaces do not need to currently exist on the cluster.
850            &quot;A String&quot;,
851          ],
852          &quot;logDeniesEnabled&quot;: True or False, # Logs all denies and dry run failures.
853          &quot;referentialRulesEnabled&quot;: True or False, # Enables the ability to use Constraint Templates that reference to objects other than the object currently being evaluated.
854          &quot;templateLibraryInstalled&quot;: True or False, # Installs the default template library along with Policy Controller.
855        },
856        &quot;version&quot;: &quot;A String&quot;, # Version of ACM installed.
857      },
858    },
859  },
860  &quot;membershipStates&quot;: { # Output only. Membership-specific Feature status. If this Feature does report any per-Membership status, this field may be unused. The keys indicate which Membership the state is for, in the form: projects/{p}/locations/{l}/memberships/{m} Where {p} is the project number, {l} is a valid location and {m} is a valid Membership in this project at that location. {p} MUST match the Feature&#x27;s project number.
861    &quot;a_key&quot;: { # MembershipFeatureState contains Feature status information for a single Membership.
862      &quot;configmanagement&quot;: { # State for Anthos Config Management # Config Management-specific state.
863        &quot;binauthzState&quot;: { # State for Binauthz # Binauthz status
864          &quot;version&quot;: { # The version of binauthz. # The version of binauthz that is installed.
865            &quot;webhookVersion&quot;: &quot;A String&quot;, # The version of the binauthz webhook.
866          },
867          &quot;webhook&quot;: &quot;A String&quot;, # The state of the binauthz webhook.
868        },
869        &quot;clusterName&quot;: &quot;A String&quot;, # The user-defined name for the cluster used by ClusterSelectors to group clusters together. This should match Membership&#x27;s membership_name, unless the user installed ACM on the cluster manually prior to enabling the ACM hub feature. Unique within a Anthos Config Management installation.
870        &quot;configSyncState&quot;: { # State information for ConfigSync # Current sync status
871          &quot;deploymentState&quot;: { # The state of ConfigSync&#x27;s deployment on a cluster # Information about the deployment of ConfigSync, including the version of the various Pods deployed
872            &quot;gitSync&quot;: &quot;A String&quot;, # Deployment state of the git-sync pod
873            &quot;importer&quot;: &quot;A String&quot;, # Deployment state of the importer pod
874            &quot;monitor&quot;: &quot;A String&quot;, # Deployment state of the monitor pod
875            &quot;reconcilerManager&quot;: &quot;A String&quot;, # Deployment state of reconciler-manager pod
876            &quot;rootReconciler&quot;: &quot;A String&quot;, # Deployment state of root-reconciler
877            &quot;syncer&quot;: &quot;A String&quot;, # Deployment state of the syncer pod
878          },
879          &quot;syncState&quot;: { # State indicating an ACM&#x27;s progress syncing configurations to a cluster # The state of ConfigSync&#x27;s process to sync configs to a cluster
880            &quot;code&quot;: &quot;A String&quot;, # Sync status code
881            &quot;errors&quot;: [ # A list of errors resulting from problematic configs. This list will be truncated after 100 errors, although it is unlikely for that many errors to simultaneously exist.
882              { # An ACM created error representing a problem syncing configurations
883                &quot;code&quot;: &quot;A String&quot;, # An ACM defined error code
884                &quot;errorMessage&quot;: &quot;A String&quot;, # A description of the error
885                &quot;errorResources&quot;: [ # A list of config(s) associated with the error, if any
886                  { # Model for a config file in the git repo with an associated Sync error
887                    &quot;resourceGvk&quot;: { # A Kubernetes object&#x27;s GVK # Group/version/kind of the resource that is causing an error
888                      &quot;group&quot;: &quot;A String&quot;, # Kubernetes Group
889                      &quot;kind&quot;: &quot;A String&quot;, # Kubernetes Kind
890                      &quot;version&quot;: &quot;A String&quot;, # Kubernetes Version
891                    },
892                    &quot;resourceName&quot;: &quot;A String&quot;, # Metadata name of the resource that is causing an error
893                    &quot;resourceNamespace&quot;: &quot;A String&quot;, # Namespace of the resource that is causing an error
894                    &quot;sourcePath&quot;: &quot;A String&quot;, # Path in the git repo of the erroneous config
895                  },
896                ],
897              },
898            ],
899            &quot;importToken&quot;: &quot;A String&quot;, # Token indicating the state of the importer.
900            &quot;lastSync&quot;: &quot;A String&quot;, # Timestamp of when ACM last successfully synced the repo The time format is specified in https://golang.org/pkg/time/#Time.String This field is being deprecated. Use last_sync_time instead. (b/154053616)
901            &quot;lastSyncTime&quot;: &quot;A String&quot;, # Timestamp type of when ACM last successfully synced the repo
902            &quot;sourceToken&quot;: &quot;A String&quot;, # Token indicating the state of the repo.
903            &quot;syncToken&quot;: &quot;A String&quot;, # Token indicating the state of the syncer.
904          },
905          &quot;version&quot;: { # Specific versioning information pertaining to ConfigSync&#x27;s Pods # The version of ConfigSync deployed
906            &quot;gitSync&quot;: &quot;A String&quot;, # Version of the deployed git-sync pod
907            &quot;importer&quot;: &quot;A String&quot;, # Version of the deployed importer pod
908            &quot;monitor&quot;: &quot;A String&quot;, # Version of the deployed monitor pod
909            &quot;reconcilerManager&quot;: &quot;A String&quot;, # Version of the deployed reconciler-manager pod
910            &quot;rootReconciler&quot;: &quot;A String&quot;, # Version of the deployed reconciler container in root-reconciler pod
911            &quot;syncer&quot;: &quot;A String&quot;, # Version of the deployed syncer pod
912          },
913        },
914        &quot;hierarchyControllerState&quot;: { # State for Hierarchy Controller # Hierarchy Controller status
915          &quot;state&quot;: { # Deployment state for Hierarchy Controller # The deployment state for Hierarchy Controller
916            &quot;extension&quot;: &quot;A String&quot;, # The deployment state for Hierarchy Controller extension (e.g. v0.7.0-hc.1)
917            &quot;hnc&quot;: &quot;A String&quot;, # The deployment state for open source HNC (e.g. v0.7.0-hc.0)
918          },
919          &quot;version&quot;: { # Version for Hierarchy Controller # The version for Hierarchy Controller
920            &quot;extension&quot;: &quot;A String&quot;, # Version for Hierarchy Controller extension
921            &quot;hnc&quot;: &quot;A String&quot;, # Version for open source HNC
922          },
923        },
924        &quot;membershipSpec&quot;: { # Configuration for a single cluster. Intended to parallel the ConfigManagement CR. # Membership configuration in the cluster. This represents the actual state in the cluster, while the MembershipSpec in the FeatureSpec represents the intended state
925          &quot;binauthz&quot;: { # Configuration for Binauthz # Binauthz conifguration for the cluster.
926            &quot;enabled&quot;: True or False, # Whether binauthz is enabled in this cluster.
927          },
928          &quot;configSync&quot;: { # Configuration for Config Sync # Config Sync configuration for the cluster.
929            &quot;git&quot;: { # Git repo configuration for a single cluster. # Git repo configuration for the cluster.
930              &quot;gcpServiceAccountEmail&quot;: &quot;A String&quot;, # The GCP Service Account Email used for auth when secret_type is gcpServiceAccount.
931              &quot;httpsProxy&quot;: &quot;A String&quot;, # URL for the HTTPS proxy to be used when communicating with the Git repo.
932              &quot;policyDir&quot;: &quot;A String&quot;, # The path within the Git repository that represents the top level of the repo to sync. Default: the root directory of the repository.
933              &quot;secretType&quot;: &quot;A String&quot;, # Type of secret configured for access to the Git repo.
934              &quot;syncBranch&quot;: &quot;A String&quot;, # The branch of the repository to sync from. Default: master.
935              &quot;syncRepo&quot;: &quot;A String&quot;, # The URL of the Git repository to use as the source of truth.
936              &quot;syncRev&quot;: &quot;A String&quot;, # Git revision (tag or hash) to check out. Default HEAD.
937              &quot;syncWaitSecs&quot;: &quot;A String&quot;, # Period in seconds between consecutive syncs. Default: 15.
938            },
939            &quot;sourceFormat&quot;: &quot;A String&quot;, # Specifies whether the Config Sync Repo is in “hierarchical” or “unstructured” mode.
940          },
941          &quot;hierarchyController&quot;: { # Configuration for Hierarchy Controller # Hierarchy Controller configuration for the cluster.
942            &quot;enableHierarchicalResourceQuota&quot;: True or False, # Whether hierarchical resource quota is enabled in this cluster.
943            &quot;enablePodTreeLabels&quot;: True or False, # Whether pod tree labels are enabled in this cluster.
944            &quot;enabled&quot;: True or False, # Whether Hierarchy Controller is enabled in this cluster.
945          },
946          &quot;policyController&quot;: { # Configuration for Policy Controller # Policy Controller configuration for the cluster.
947            &quot;auditIntervalSeconds&quot;: &quot;A String&quot;, # Sets the interval for Policy Controller Audit Scans (in seconds). When set to 0, this disables audit functionality altogether.
948            &quot;enabled&quot;: True or False, # Enables the installation of Policy Controller. If false, the rest of PolicyController fields take no effect.
949            &quot;exemptableNamespaces&quot;: [ # The set of namespaces that are excluded from Policy Controller checks. Namespaces do not need to currently exist on the cluster.
950              &quot;A String&quot;,
951            ],
952            &quot;logDeniesEnabled&quot;: True or False, # Logs all denies and dry run failures.
953            &quot;referentialRulesEnabled&quot;: True or False, # Enables the ability to use Constraint Templates that reference to objects other than the object currently being evaluated.
954            &quot;templateLibraryInstalled&quot;: True or False, # Installs the default template library along with Policy Controller.
955          },
956          &quot;version&quot;: &quot;A String&quot;, # Version of ACM installed.
957        },
958        &quot;operatorState&quot;: { # State information for an ACM&#x27;s Operator # Current install status of ACM&#x27;s Operator
959          &quot;deploymentState&quot;: &quot;A String&quot;, # The state of the Operator&#x27;s deployment
960          &quot;errors&quot;: [ # Install errors.
961            { # Errors pertaining to the installation of ACM
962              &quot;errorMessage&quot;: &quot;A String&quot;, # A string representing the user facing error message
963            },
964          ],
965          &quot;version&quot;: &quot;A String&quot;, # The semenatic version number of the operator
966        },
967        &quot;policyControllerState&quot;: { # State for PolicyControllerState. # PolicyController status
968          &quot;deploymentState&quot;: { # State of Policy Controller installation. # The state about the policy controller installation.
969            &quot;gatekeeperAudit&quot;: &quot;A String&quot;, # Status of gatekeeper-audit deployment.
970            &quot;gatekeeperControllerManagerState&quot;: &quot;A String&quot;, # Status of gatekeeper-controller-manager pod.
971          },
972          &quot;version&quot;: { # The build version of Gatekeeper Policy Controller is using. # The version of Gatekeeper Policy Controller deployed.
973            &quot;version&quot;: &quot;A String&quot;, # The gatekeeper image tag that is composed of ACM version, git tag, build number.
974          },
975        },
976      },
977      &quot;metering&quot;: { # Metering per-Membership Feature State. # Metering-specific spec.
978        &quot;lastMeasurementTime&quot;: &quot;A String&quot;, # The time stamp of the most recent measurement of the number of vCPUs in the cluster.
979        &quot;preciseLastMeasuredClusterVcpuCapacity&quot;: 3.14, # The vCPUs capacity in the cluster according to the most recent measurement (1/1000 precision).
980      },
981      &quot;state&quot;: { # FeatureState describes the high-level state of a Feature. It may be used to describe a Feature&#x27;s state at the environ-level, or per-membershop, depending on the context. # The high-level state of this Feature for a single membership.
982        &quot;code&quot;: &quot;A String&quot;, # The high-level, machine-readable status of this Feature.
983        &quot;description&quot;: &quot;A String&quot;, # A human-readable description of the current status.
984        &quot;updateTime&quot;: &quot;A String&quot;, # The time this status and any related Feature-specific details were updated.
985      },
986    },
987  },
988  &quot;name&quot;: &quot;A String&quot;, # Output only. The full, unique name of this Feature resource in the format `projects/*/locations/global/features/*`.
989  &quot;resourceState&quot;: { # FeatureResourceState describes the state of a Feature *resource* in the GkeHub API. See `FeatureState` for the &quot;running state&quot; of the Feature in the Hub and across Memberships. # Output only. State of the Feature resource itself.
990    &quot;state&quot;: &quot;A String&quot;, # The current state of the Feature resource in the Hub API.
991  },
992  &quot;spec&quot;: { # CommonFeatureSpec contains Hub-wide configuration information # Optional. Hub-wide Feature configuration. If this Feature does not support any Hub-wide configuration, this field may be unused.
993    &quot;multiclusteringress&quot;: { # FeatureSpec contains the input for the MultiClusterIngress feature. # Multicluster Ingress-specific spec.
994      &quot;configMembership&quot;: &quot;A String&quot;, # Fully-qualified Membership name which hosts the MultiClusterIngress CRD. Example: `projects/foo-proj/locations/global/memberships/bar`
995    },
996  },
997  &quot;state&quot;: { # CommonFeatureState contains Hub-wide Feature status information. # Output only. The Hub-wide Feature state.
998    &quot;state&quot;: { # FeatureState describes the high-level state of a Feature. It may be used to describe a Feature&#x27;s state at the environ-level, or per-membershop, depending on the context. # Output only. The &quot;running state&quot; of the Feature in this Hub.
999      &quot;code&quot;: &quot;A String&quot;, # The high-level, machine-readable status of this Feature.
1000      &quot;description&quot;: &quot;A String&quot;, # A human-readable description of the current status.
1001      &quot;updateTime&quot;: &quot;A String&quot;, # The time this status and any related Feature-specific details were updated.
1002    },
1003  },
1004  &quot;updateTime&quot;: &quot;A String&quot;, # Output only. When the Feature resource was last updated.
1005}
1006
1007  requestId: string, Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
1008  updateMask: string, Mask of fields to update.
1009  x__xgafv: string, V1 error format.
1010    Allowed values
1011      1 - v1 error format
1012      2 - v2 error format
1013
1014Returns:
1015  An object of the form:
1016
1017    { # This resource represents a long-running operation that is the result of a network API call.
1018  &quot;done&quot;: True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
1019  &quot;error&quot;: { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
1020    &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
1021    &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
1022      {
1023        &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
1024      },
1025    ],
1026    &quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
1027  },
1028  &quot;metadata&quot;: { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
1029    &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
1030  },
1031  &quot;name&quot;: &quot;A String&quot;, # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
1032  &quot;response&quot;: { # The normal response of the operation in case of success. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
1033    &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
1034  },
1035}</pre>
1036</div>
1037
1038</body></html>