@maxim_mazurok/gapi.client.networksecurity-v1beta1 0.1.20260617 → 0.2.20260617
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 +4 -17
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -110,9 +110,7 @@ declare namespace gapi.client {
|
|
|
110
110
|
networkRules?: AuthzPolicyAuthzRule[];
|
|
111
111
|
/** Optional. Immutable. Defines the type of authorization being performed. If not specified, `REQUEST_AUTHZ` is applied. This field cannot be changed once AuthzPolicy is created. */
|
|
112
112
|
policyProfile?:
|
|
113
|
-
| '
|
|
114
|
-
| 'REQUEST_AUTHZ'
|
|
115
|
-
| 'CONTENT_AUTHZ';
|
|
113
|
+
'POLICY_PROFILE_UNSPECIFIED' | 'REQUEST_AUTHZ' | 'CONTENT_AUTHZ';
|
|
116
114
|
/** Required. Specifies the set of resources to which this policy should be applied to. */
|
|
117
115
|
target?: AuthzPolicyTarget;
|
|
118
116
|
/** Output only. The timestamp when the resource was updated. */
|
|
@@ -361,11 +359,7 @@ declare namespace gapi.client {
|
|
|
361
359
|
satisfiesPzs?: boolean;
|
|
362
360
|
/** Output only. Current state of the endpoint. */
|
|
363
361
|
state?:
|
|
364
|
-
| '
|
|
365
|
-
| 'CREATING'
|
|
366
|
-
| 'ACTIVE'
|
|
367
|
-
| 'DELETING'
|
|
368
|
-
| 'INACTIVE';
|
|
362
|
+
'STATE_UNSPECIFIED' | 'CREATING' | 'ACTIVE' | 'DELETING' | 'INACTIVE';
|
|
369
363
|
/** Output only. Update time stamp */
|
|
370
364
|
updateTime?: string;
|
|
371
365
|
/** Optional. Settings for WildFire analysis. */
|
|
@@ -531,10 +525,7 @@ declare namespace gapi.client {
|
|
|
531
525
|
exemptedMembers?: string[];
|
|
532
526
|
/** The log type that this config enables. */
|
|
533
527
|
logType?:
|
|
534
|
-
| '
|
|
535
|
-
| 'ADMIN_READ'
|
|
536
|
-
| 'DATA_WRITE'
|
|
537
|
-
| 'DATA_READ';
|
|
528
|
+
'LOG_TYPE_UNSPECIFIED' | 'ADMIN_READ' | 'DATA_WRITE' | 'DATA_READ';
|
|
538
529
|
}
|
|
539
530
|
interface GoogleIamV1Binding {
|
|
540
531
|
/** The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). */
|
|
@@ -1008,11 +999,7 @@ declare namespace gapi.client {
|
|
|
1008
999
|
reconciling?: boolean;
|
|
1009
1000
|
/** Output only. The current state of the deployment group. See https://google.aip.dev/216. */
|
|
1010
1001
|
state?:
|
|
1011
|
-
| '
|
|
1012
|
-
| 'ACTIVE'
|
|
1013
|
-
| 'CREATING'
|
|
1014
|
-
| 'DELETING'
|
|
1015
|
-
| 'CLOSED';
|
|
1002
|
+
'STATE_UNSPECIFIED' | 'ACTIVE' | 'CREATING' | 'DELETING' | 'CLOSED';
|
|
1016
1003
|
/** Output only. The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps. */
|
|
1017
1004
|
updateTime?: string;
|
|
1018
1005
|
}
|