@maxim_mazurok/gapi.client.networkmanagement-v1 0.0.20240117 → 0.0.20240131
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +11 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://networkmanagement.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240131
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -67,7 +67,7 @@ declare namespace gapi.client {
|
|
|
67
67
|
condition?: Expr;
|
|
68
68
|
/** Specifies the principals requesting access for a Google Cloud resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service account. Does not include identities that come from external identity providers (IdPs) through identity federation. * `user:{emailid}`: An email address that represents a specific Google account. For example, `alice@example.com` . * `serviceAccount:{emailid}`: An email address that represents a Google service account. For example, `my-other-app@appspot.gserviceaccount.com`. * `serviceAccount:{projectid}.svc.id.goog[{namespace}/{kubernetes-sa}]`: An identifier for a [Kubernetes service account](https://cloud.google.com/kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:{emailid}`: An email address that represents a Google group. For example, `admins@example.com`. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `google.com` or `example.com`. * `principal://iam.googleapis.com/locations/global/workforcePools/{pool_id}/subject/{subject_attribute_value}`: A single identity in a workforce identity pool. * `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/group/{group_id}`: All workforce identities in a group. * `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/attribute.{attribute_name}/{attribute_value}`: All workforce identities with a specific attribute value. * `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/*`: All identities in a workforce identity pool. * `principal://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/subject/{subject_attribute_value}`: A single identity in a workload identity pool. * `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/group/{group_id}`: A workload identity pool group. * `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/attribute.{attribute_name}/{attribute_value}`: All identities in a workload identity pool with a certain attribute. * `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/*`: All identities in a workload identity pool. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Google group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding. * `deleted:principal://iam.googleapis.com/locations/global/workforcePools/{pool_id}/subject/{subject_attribute_value}`: Deleted single identity in a workforce identity pool. For example, `deleted:principal://iam.googleapis.com/locations/global/workforcePools/my-pool-id/subject/my-subject-attribute-value`. */
|
|
69
69
|
members?: string[];
|
|
70
|
-
/** Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. */
|
|
70
|
+
/** Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM roles and permissions, see the [IAM documentation](https://cloud.google.com/iam/docs/roles-overview). For a list of the available pre-defined roles, see [here](https://cloud.google.com/iam/docs/understanding-roles). */
|
|
71
71
|
role?: string;
|
|
72
72
|
}
|
|
73
73
|
interface CancelOperationRequest {}
|
|
@@ -343,6 +343,8 @@ declare namespace gapi.client {
|
|
|
343
343
|
uri?: string;
|
|
344
344
|
}
|
|
345
345
|
interface LoadBalancerBackendInfo {
|
|
346
|
+
/** URI of the backend bucket this backend targets (if applicable). */
|
|
347
|
+
backendBucketUri?: string;
|
|
346
348
|
/** URI of the backend service this backend belongs to (if applicable). */
|
|
347
349
|
backendServiceUri?: string;
|
|
348
350
|
/** Output only. Health check firewalls configuration state for the backend. This is a result of the static firewall analysis (verifying that health check traffic from required IP ranges to the backend is allowed or not). The backend might still be unhealthy even if these firewalls are configured. Please refer to the documentation for more information: https://cloud.google.com/load-balancing/docs/firewall-rules */
|
|
@@ -357,6 +359,10 @@ declare namespace gapi.client {
|
|
|
357
359
|
name?: string;
|
|
358
360
|
/** URI of the network endpoint group this backend belongs to (if applicable). */
|
|
359
361
|
networkEndpointGroupUri?: string;
|
|
362
|
+
/** PSC Google API target this PSC NEG backend targets (if applicable). */
|
|
363
|
+
pscGoogleApiTarget?: string;
|
|
364
|
+
/** URI of the PSC service attachment this PSC NEG backend targets (if applicable). */
|
|
365
|
+
pscServiceAttachmentUri?: string;
|
|
360
366
|
}
|
|
361
367
|
interface LoadBalancerInfo {
|
|
362
368
|
/** Information for the loadbalancer backends. */
|
|
@@ -592,7 +598,7 @@ declare namespace gapi.client {
|
|
|
592
598
|
googleService?: GoogleServiceInfo;
|
|
593
599
|
/** Display information of a Compute Engine instance. */
|
|
594
600
|
instance?: InstanceInfo;
|
|
595
|
-
/** Display information of the load balancers. */
|
|
601
|
+
/** Display information of the load balancers. Deprecated in favor of the `load_balancer_backend_info` field, not used in new tests. */
|
|
596
602
|
loadBalancer?: LoadBalancerInfo;
|
|
597
603
|
/** Display information of a specific load balancer backend. */
|
|
598
604
|
loadBalancerBackendInfo?: LoadBalancerBackendInfo;
|
|
@@ -632,6 +638,8 @@ declare namespace gapi.client {
|
|
|
632
638
|
interface Trace {
|
|
633
639
|
/** Derived from the source and destination endpoints definition specified by user request, and validated by the data plane model. If there are multiple traces starting from different source locations, then the endpoint_info may be different between traces. */
|
|
634
640
|
endpointInfo?: EndpointInfo;
|
|
641
|
+
/** ID of trace. For forward traces, this ID is unique for each trace. For return traces, it matches ID of associated forward trace. A single forward trace can be associated with none, one or more than one return trace. */
|
|
642
|
+
forwardTraceId?: number;
|
|
635
643
|
/** A trace of a test contains multiple steps from the initial state to the final state (delivered, dropped, forwarded, or aborted). The steps are ordered by the processing sequence within the simulated network state machine. It is critical to preserve the order of the steps and avoid reordering or sorting them. */
|
|
636
644
|
steps?: Step[];
|
|
637
645
|
}
|