@maxim_mazurok/gapi.client.networksecurity-v1 0.2.20260302 → 0.2.20260524
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 +1260 -101
- package/package.json +1 -1
- package/readme.md +17 -0
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://networksecurity.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260524
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -106,6 +106,13 @@ declare namespace gapi.client {
|
|
|
106
106
|
labels?: {[P in string]: string};
|
|
107
107
|
/** Required. Identifier. Name of the `AuthzPolicy` resource in the following format: `projects/{project}/locations/{location}/authzPolicies/{authz_policy}`. */
|
|
108
108
|
name?: string;
|
|
109
|
+
/** Optional. A list of authorization network rules to match against the incoming request. A policy match occurs when at least one network rule matches the request. At least one network rule is required for Allow or Deny Action if no HTTP rules are provided. Network rules are mutually exclusive with HTTP rules. Limited to 5 rules. */
|
|
110
|
+
networkRules?: AuthzPolicyAuthzRule[];
|
|
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
|
+
policyProfile?:
|
|
113
|
+
| 'POLICY_PROFILE_UNSPECIFIED'
|
|
114
|
+
| 'REQUEST_AUTHZ'
|
|
115
|
+
| 'CONTENT_AUTHZ';
|
|
109
116
|
/** Required. Specifies the set of resources to which this policy should be applied to. */
|
|
110
117
|
target?: AuthzPolicyTarget;
|
|
111
118
|
/** Output only. The timestamp when the resource was updated. */
|
|
@@ -188,15 +195,34 @@ declare namespace gapi.client {
|
|
|
188
195
|
headerSet?: AuthzPolicyAuthzRuleToRequestOperationHeaderSet;
|
|
189
196
|
/** Optional. A list of HTTP Hosts to match against. The match can be one of exact, prefix, suffix, or contains (substring match). Matches are always case sensitive unless the ignoreCase is set. Limited to 10 hosts per Authorization Policy. */
|
|
190
197
|
hosts?: AuthzPolicyAuthzRuleStringMatch[];
|
|
198
|
+
/** Optional. Defines the MCP protocol attributes to match on. If the MCP payload in the request body cannot be successfully parsed, the request will be denied. This field can be set only for AuthzPolicies targeting AgentGateway resources. */
|
|
199
|
+
mcp?: AuthzPolicyAuthzRuleToRequestOperationMCP;
|
|
191
200
|
/** Optional. A list of HTTP methods to match against. Each entry must be a valid HTTP method name (GET, PUT, POST, HEAD, PATCH, DELETE, OPTIONS). It only allows exact match and is always case sensitive. Limited to 10 methods per Authorization Policy. */
|
|
192
201
|
methods?: string[];
|
|
193
202
|
/** Optional. A list of paths to match against. The match can be one of exact, prefix, suffix, or contains (substring match). Matches are always case sensitive unless the ignoreCase is set. Limited to 10 paths per Authorization Policy. Note that this path match includes the query parameters. For gRPC services, this should be a fully-qualified name of the form /package.service/method. */
|
|
194
203
|
paths?: AuthzPolicyAuthzRuleStringMatch[];
|
|
204
|
+
/** Optional. A list of SNIs to match against. The match can be one of exact, prefix, suffix, or contains (substring match). If there is no SNI (i.e. plaintext HTTP traffic), the request will be denied. Matches are always case sensitive unless the ignoreCase is set. Limited to 10 SNIs per Authorization Policy. */
|
|
205
|
+
snis?: AuthzPolicyAuthzRuleStringMatch[];
|
|
195
206
|
}
|
|
196
207
|
interface AuthzPolicyAuthzRuleToRequestOperationHeaderSet {
|
|
197
208
|
/** Required. A list of headers to match against in http header. The match can be one of exact, prefix, suffix, or contains (substring match). The match follows AND semantics which means all the headers must match. Matches are always case sensitive unless the ignoreCase is set. Limited to 10 headers per Authorization Policy. */
|
|
198
209
|
headers?: AuthzPolicyAuthzRuleHeaderMatch[];
|
|
199
210
|
}
|
|
211
|
+
interface AuthzPolicyAuthzRuleToRequestOperationMCP {
|
|
212
|
+
/** Optional. If specified, matches on the MCP protocol’s non-access specific methods namely: * initialize * completion/ * logging/ * notifications/ * ping Defaults to SKIP_BASE_PROTOCOL_METHODS if not specified. */
|
|
213
|
+
baseProtocolMethodsOption?:
|
|
214
|
+
| 'BASE_PROTOCOL_METHODS_OPTION_UNSPECIFIED'
|
|
215
|
+
| 'SKIP_BASE_PROTOCOL_METHODS'
|
|
216
|
+
| 'MATCH_BASE_PROTOCOL_METHODS';
|
|
217
|
+
/** Optional. A list of MCP methods and associated parameters to match on. It is recommended to use this field to match on tools, prompts and resource accesses while setting the baseProtocolMethodsOption to MATCH_BASE_PROTOCOL_METHODS to match on all the other MCP protocol methods. Limited to 10 MCP methods per Authorization Policy. */
|
|
218
|
+
methods?: AuthzPolicyAuthzRuleToRequestOperationMCPMethod[];
|
|
219
|
+
}
|
|
220
|
+
interface AuthzPolicyAuthzRuleToRequestOperationMCPMethod {
|
|
221
|
+
/** Required. The MCP method to match against. Allowed values are as follows: 1. `tools`, `prompts`, `resources` - these will match against all sub methods under the respective methods. 2. `prompts/list`, `tools/list`, `resources/list`, `resources/templates/list` 3. `prompts/get`, `tools/call`, `resources/subscribe`, `resources/unsubscribe`, `resources/read` Params cannot be specified for categories 1 and 2. */
|
|
222
|
+
name?: string;
|
|
223
|
+
/** Optional. A list of MCP method parameters to match against. The match can be one of exact, prefix, suffix, or contains (substring match). Matches are always case sensitive unless the ignoreCase is set. Limited to 10 MCP method parameters per Authorization Policy. */
|
|
224
|
+
params?: AuthzPolicyAuthzRuleStringMatch[];
|
|
225
|
+
}
|
|
200
226
|
interface AuthzPolicyCustomProvider {
|
|
201
227
|
/** Optional. Delegate authorization decision to user authored Service Extension. Only one of cloudIap or authzExtension can be specified. */
|
|
202
228
|
authzExtension?: AuthzPolicyCustomProviderAuthzExtension;
|
|
@@ -209,13 +235,13 @@ declare namespace gapi.client {
|
|
|
209
235
|
}
|
|
210
236
|
interface AuthzPolicyCustomProviderCloudIap {}
|
|
211
237
|
interface AuthzPolicyTarget {
|
|
212
|
-
/**
|
|
238
|
+
/** Optional. All gateways and forwarding rules referenced by this policy and extensions must share the same load balancing scheme. Required only when targeting forwarding rules. If targeting Secure Web Proxy, this field must be `INTERNAL_MANAGED` or not specified. Must not be specified when targeting Agent Gateway. Supported values: `INTERNAL_MANAGED` and `EXTERNAL_MANAGED`. For more information, refer to [Backend services overview](https://cloud.google.com/load-balancing/docs/backend-service). */
|
|
213
239
|
loadBalancingScheme?:
|
|
214
240
|
| 'LOAD_BALANCING_SCHEME_UNSPECIFIED'
|
|
215
241
|
| 'INTERNAL_MANAGED'
|
|
216
242
|
| 'EXTERNAL_MANAGED'
|
|
217
243
|
| 'INTERNAL_SELF_MANAGED';
|
|
218
|
-
/** Required. A list of references to the Forwarding Rules on which this policy will be applied. */
|
|
244
|
+
/** Required. A list of references to the Forwarding Rules, Secure Web Proxy Gateways, or Agent Gateways on which this policy will be applied. */
|
|
219
245
|
resources?: string[];
|
|
220
246
|
}
|
|
221
247
|
interface BackendAuthenticationConfig {
|
|
@@ -311,11 +337,11 @@ declare namespace gapi.client {
|
|
|
311
337
|
title?: string;
|
|
312
338
|
}
|
|
313
339
|
interface FirewallEndpoint {
|
|
314
|
-
/** Output only. List of networks that are associated with this endpoint in the local zone. This is a projection of the FirewallEndpointAssociations pointing at this endpoint. A network will only appear in this list after traffic routing is fully configured. Format: projects/{project}/global/networks/{name}. */
|
|
340
|
+
/** Output only. Deprecated: List of networks that are associated with this endpoint in the local zone. This is a projection of the FirewallEndpointAssociations pointing at this endpoint. A network will only appear in this list after traffic routing is fully configured. Format: projects/{project}/global/networks/{name}. */
|
|
315
341
|
associatedNetworks?: string[];
|
|
316
342
|
/** Output only. List of FirewallEndpointAssociations that are associated to this endpoint. An association will only appear in this list after traffic routing is fully configured. */
|
|
317
343
|
associations?: FirewallEndpointAssociationReference[];
|
|
318
|
-
/**
|
|
344
|
+
/** Optional. Project to charge for the deployed firewall endpoint. This field must be specified when creating the endpoint in the organization scope, and should be omitted otherwise. */
|
|
319
345
|
billingProjectId?: string;
|
|
320
346
|
/** Output only. Create time stamp. */
|
|
321
347
|
createTime?: string;
|
|
@@ -589,6 +615,8 @@ declare namespace gapi.client {
|
|
|
589
615
|
name?: string;
|
|
590
616
|
/** Required. Immutable. The VPC network that is associated. for example: `projects/123456789/global/networks/my-network`. See https://google.aip.dev/124. */
|
|
591
617
|
network?: string;
|
|
618
|
+
/** Output only. Identifier used by the data-path. See the NSI GENEVE format for more details: https://docs.cloud.google.com/network-security-integration/docs/understand-geneve#network_id */
|
|
619
|
+
networkCookie?: number;
|
|
592
620
|
/** Output only. The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This part of the normal operation (e.g. adding a new location to the target deployment group). See https://google.aip.dev/128. */
|
|
593
621
|
reconciling?: boolean;
|
|
594
622
|
/** Output only. Current state of the endpoint group association. */
|
|
@@ -769,7 +797,7 @@ declare namespace gapi.client {
|
|
|
769
797
|
mirroringDeployments?: MirroringDeployment[];
|
|
770
798
|
/** A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. See https://google.aip.dev/158 for more details. */
|
|
771
799
|
nextPageToken?: string;
|
|
772
|
-
/** Locations that could not be reached. */
|
|
800
|
+
/** Unordered list. Locations that could not be reached. See https://google.aip.dev/217 for more details. */
|
|
773
801
|
unreachable?: string[];
|
|
774
802
|
}
|
|
775
803
|
interface ListMirroringEndpointGroupAssociationsResponse {
|
|
@@ -792,6 +820,22 @@ declare namespace gapi.client {
|
|
|
792
820
|
/** Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections. For example, when attempting to list all resources across all supported locations. */
|
|
793
821
|
unreachable?: string[];
|
|
794
822
|
}
|
|
823
|
+
interface ListSACAttachmentsResponse {
|
|
824
|
+
/** A token identifying a page of results the server should return. */
|
|
825
|
+
nextPageToken?: string;
|
|
826
|
+
/** The list of SACAttachments. */
|
|
827
|
+
sacAttachments?: SACAttachment[];
|
|
828
|
+
/** Locations that could not be reached. */
|
|
829
|
+
unreachable?: string[];
|
|
830
|
+
}
|
|
831
|
+
interface ListSACRealmsResponse {
|
|
832
|
+
/** A token identifying a page of results the server should return. */
|
|
833
|
+
nextPageToken?: string;
|
|
834
|
+
/** The list of SACRealms. */
|
|
835
|
+
sacRealms?: SACRealm[];
|
|
836
|
+
/** Locations that could not be reached. */
|
|
837
|
+
unreachable?: string[];
|
|
838
|
+
}
|
|
795
839
|
interface ListSecurityProfileGroupsResponse {
|
|
796
840
|
/** If there might be more results than those appearing in this response, then `next_page_token` is included. To get the next set of results, call this method again using the value of `next_page_token` as `page_token`. */
|
|
797
841
|
nextPageToken?: string;
|
|
@@ -1055,6 +1099,55 @@ declare namespace gapi.client {
|
|
|
1055
1099
|
/** Optional. List of attributes for the traffic source. All of the sources must match. A source is a match if both principals and ip_blocks match. If not set, the action specified in the 'action' field will be applied without any rule checks for the source. */
|
|
1056
1100
|
sources?: Source[];
|
|
1057
1101
|
}
|
|
1102
|
+
interface SACAttachment {
|
|
1103
|
+
/** Output only. Timestamp when the attachment was created. */
|
|
1104
|
+
createTime?: string;
|
|
1105
|
+
/** Optional. Optional list of labels applied to the resource. */
|
|
1106
|
+
labels?: {[P in string]: string};
|
|
1107
|
+
/** Identifier. Resource name, in the form `projects/{project}/locations/{location}/sacAttachments/{sac_attachment}`. */
|
|
1108
|
+
name?: string;
|
|
1109
|
+
/** Required. NCC Gateway associated with the attachment. This can be input as an ID or a full resource name. The output always has the form `projects/{project_number}/locations/{location}/spokes/{ncc_gateway}`. */
|
|
1110
|
+
nccGateway?: string;
|
|
1111
|
+
/** Required. SAC Realm which owns the attachment. This can be input as an ID or a full resource name. The output always has the form `projects/{project_number}/locations/{location}/sacRealms/{sac_realm}`. */
|
|
1112
|
+
sacRealm?: string;
|
|
1113
|
+
/** Output only. State of the attachment. */
|
|
1114
|
+
state?:
|
|
1115
|
+
| 'STATE_UNSPECIFIED'
|
|
1116
|
+
| 'PENDING_PARTNER_ATTACHMENT'
|
|
1117
|
+
| 'PARTNER_ATTACHED'
|
|
1118
|
+
| 'PARTNER_DETACHED';
|
|
1119
|
+
/** Output only. Timestamp when the attachment was last updated. */
|
|
1120
|
+
updateTime?: string;
|
|
1121
|
+
}
|
|
1122
|
+
interface SACRealm {
|
|
1123
|
+
/** Output only. Timestamp when the realm was created. */
|
|
1124
|
+
createTime?: string;
|
|
1125
|
+
/** Optional. Optional list of labels applied to the resource. */
|
|
1126
|
+
labels?: {[P in string]: string};
|
|
1127
|
+
/** Identifier. Resource name, in the form `projects/{project}/locations/global/sacRealms/{sacRealm}`. */
|
|
1128
|
+
name?: string;
|
|
1129
|
+
/** Output only. Key to be shared with SSE service provider during pairing. */
|
|
1130
|
+
pairingKey?: SACRealmPairingKey;
|
|
1131
|
+
/** Immutable. SSE service provider associated with the realm. */
|
|
1132
|
+
securityService?:
|
|
1133
|
+
| 'SECURITY_SERVICE_UNSPECIFIED'
|
|
1134
|
+
| 'PALO_ALTO_PRISMA_ACCESS';
|
|
1135
|
+
/** Output only. State of the realm. */
|
|
1136
|
+
state?:
|
|
1137
|
+
| 'STATE_UNSPECIFIED'
|
|
1138
|
+
| 'PENDING_PARTNER_ATTACHMENT'
|
|
1139
|
+
| 'PARTNER_ATTACHED'
|
|
1140
|
+
| 'PARTNER_DETACHED'
|
|
1141
|
+
| 'KEY_EXPIRED';
|
|
1142
|
+
/** Output only. Timestamp when the realm was last updated. */
|
|
1143
|
+
updateTime?: string;
|
|
1144
|
+
}
|
|
1145
|
+
interface SACRealmPairingKey {
|
|
1146
|
+
/** Output only. Timestamp in UTC of when this resource is considered expired. It expires 7 days after creation. */
|
|
1147
|
+
expireTime?: string;
|
|
1148
|
+
/** Output only. Key value. */
|
|
1149
|
+
key?: string;
|
|
1150
|
+
}
|
|
1058
1151
|
interface SecurityProfile {
|
|
1059
1152
|
/** Output only. Resource creation timestamp. */
|
|
1060
1153
|
createTime?: string;
|
|
@@ -1153,7 +1246,7 @@ declare namespace gapi.client {
|
|
|
1153
1246
|
/** The status code, which should be an enum value of google.rpc.Code. */
|
|
1154
1247
|
code?: number;
|
|
1155
1248
|
/** A list of messages that carry the error details. There is a common set of message types for APIs to use. */
|
|
1156
|
-
details?:
|
|
1249
|
+
details?: {[P in string]: any}[];
|
|
1157
1250
|
/** 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. */
|
|
1158
1251
|
message?: string;
|
|
1159
1252
|
}
|
|
@@ -1673,6 +1766,36 @@ declare namespace gapi.client {
|
|
|
1673
1766
|
},
|
|
1674
1767
|
body: RemoveAddressGroupItemsRequest,
|
|
1675
1768
|
): Request<Operation>;
|
|
1769
|
+
/** Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a `NOT_FOUND` error. Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning. */
|
|
1770
|
+
testIamPermissions(
|
|
1771
|
+
request: {
|
|
1772
|
+
/** V1 error format. */
|
|
1773
|
+
'$.xgafv'?: '1' | '2';
|
|
1774
|
+
/** OAuth access token. */
|
|
1775
|
+
access_token?: string;
|
|
1776
|
+
/** Data format for response. */
|
|
1777
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1778
|
+
/** JSONP */
|
|
1779
|
+
callback?: string;
|
|
1780
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1781
|
+
fields?: string;
|
|
1782
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1783
|
+
key?: string;
|
|
1784
|
+
/** OAuth 2.0 token for the current user. */
|
|
1785
|
+
oauth_token?: string;
|
|
1786
|
+
/** Returns response with indentations and line breaks. */
|
|
1787
|
+
prettyPrint?: boolean;
|
|
1788
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1789
|
+
quotaUser?: string;
|
|
1790
|
+
/** REQUIRED: The resource for which the policy detail is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field. */
|
|
1791
|
+
resource: string;
|
|
1792
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1793
|
+
upload_protocol?: string;
|
|
1794
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1795
|
+
uploadType?: string;
|
|
1796
|
+
},
|
|
1797
|
+
body: GoogleIamV1TestIamPermissionsRequest,
|
|
1798
|
+
): Request<GoogleIamV1TestIamPermissionsResponse>;
|
|
1676
1799
|
}
|
|
1677
1800
|
interface FirewallEndpointsResource {
|
|
1678
1801
|
/** Creates a new FirewallEndpoint in a given organization and location. */
|
|
@@ -2475,6 +2598,68 @@ declare namespace gapi.client {
|
|
|
2475
2598
|
): Request<Operation>;
|
|
2476
2599
|
}
|
|
2477
2600
|
interface LocationsResource {
|
|
2601
|
+
/** Gets information about a location. */
|
|
2602
|
+
get(request?: {
|
|
2603
|
+
/** V1 error format. */
|
|
2604
|
+
'$.xgafv'?: '1' | '2';
|
|
2605
|
+
/** OAuth access token. */
|
|
2606
|
+
access_token?: string;
|
|
2607
|
+
/** Data format for response. */
|
|
2608
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2609
|
+
/** JSONP */
|
|
2610
|
+
callback?: string;
|
|
2611
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2612
|
+
fields?: string;
|
|
2613
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2614
|
+
key?: string;
|
|
2615
|
+
/** Resource name for the location. */
|
|
2616
|
+
name: string;
|
|
2617
|
+
/** OAuth 2.0 token for the current user. */
|
|
2618
|
+
oauth_token?: string;
|
|
2619
|
+
/** Returns response with indentations and line breaks. */
|
|
2620
|
+
prettyPrint?: boolean;
|
|
2621
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2622
|
+
quotaUser?: string;
|
|
2623
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2624
|
+
upload_protocol?: string;
|
|
2625
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2626
|
+
uploadType?: string;
|
|
2627
|
+
}): Request<Location>;
|
|
2628
|
+
/** Lists information about the supported locations for this service. This method lists locations based on the resource scope provided in the ListLocationsRequest.name field: * **Global locations**: If `name` is empty, the method lists the public locations available to all projects. * **Project-specific locations**: If `name` follows the format `projects/{project}`, the method lists locations visible to that specific project. This includes public, private, or other project-specific locations enabled for the project. For gRPC and client library implementations, the resource name is passed as the `name` field. For direct service calls, the resource name is incorporated into the request path based on the specific service implementation and version. */
|
|
2629
|
+
list(request?: {
|
|
2630
|
+
/** V1 error format. */
|
|
2631
|
+
'$.xgafv'?: '1' | '2';
|
|
2632
|
+
/** OAuth access token. */
|
|
2633
|
+
access_token?: string;
|
|
2634
|
+
/** Data format for response. */
|
|
2635
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2636
|
+
/** JSONP */
|
|
2637
|
+
callback?: string;
|
|
2638
|
+
/** Optional. Do not use this field unless explicitly documented otherwise. This is primarily for internal usage. */
|
|
2639
|
+
extraLocationTypes?: string | string[];
|
|
2640
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2641
|
+
fields?: string;
|
|
2642
|
+
/** A filter to narrow down results to a preferred subset. The filtering language accepts strings like `"displayName=tokyo"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160). */
|
|
2643
|
+
filter?: string;
|
|
2644
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
2645
|
+
key?: string;
|
|
2646
|
+
/** The resource that owns the locations collection, if applicable. */
|
|
2647
|
+
name: string;
|
|
2648
|
+
/** OAuth 2.0 token for the current user. */
|
|
2649
|
+
oauth_token?: string;
|
|
2650
|
+
/** The maximum number of results to return. If not set, the service selects a default. */
|
|
2651
|
+
pageSize?: number;
|
|
2652
|
+
/** A page token received from the `next_page_token` field in the response. Send that page token to receive the subsequent page. */
|
|
2653
|
+
pageToken?: string;
|
|
2654
|
+
/** Returns response with indentations and line breaks. */
|
|
2655
|
+
prettyPrint?: boolean;
|
|
2656
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
2657
|
+
quotaUser?: string;
|
|
2658
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2659
|
+
upload_protocol?: string;
|
|
2660
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2661
|
+
uploadType?: string;
|
|
2662
|
+
}): Request<ListLocationsResponse>;
|
|
2478
2663
|
addressGroups: AddressGroupsResource;
|
|
2479
2664
|
firewallEndpoints: FirewallEndpointsResource;
|
|
2480
2665
|
operations: OperationsResource;
|
|
@@ -4564,8 +4749,8 @@ declare namespace gapi.client {
|
|
|
4564
4749
|
body: FirewallEndpointAssociation,
|
|
4565
4750
|
): Request<Operation>;
|
|
4566
4751
|
}
|
|
4567
|
-
interface
|
|
4568
|
-
/** Creates a new
|
|
4752
|
+
interface FirewallEndpointsResource {
|
|
4753
|
+
/** Creates a new FirewallEndpoint in a given project and location. */
|
|
4569
4754
|
create(request: {
|
|
4570
4755
|
/** V1 error format. */
|
|
4571
4756
|
'$.xgafv'?: '1' | '2';
|
|
@@ -4577,24 +4762,26 @@ declare namespace gapi.client {
|
|
|
4577
4762
|
callback?: string;
|
|
4578
4763
|
/** Selector specifying which fields to include in a partial response. */
|
|
4579
4764
|
fields?: string;
|
|
4580
|
-
/**
|
|
4581
|
-
|
|
4765
|
+
/** Required. Id of the requesting object. If auto-generating Id server-side, remove this field and firewall_endpoint_id from the method_signature of Create RPC. */
|
|
4766
|
+
firewallEndpointId?: string;
|
|
4582
4767
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
4583
4768
|
key?: string;
|
|
4584
4769
|
/** OAuth 2.0 token for the current user. */
|
|
4585
4770
|
oauth_token?: string;
|
|
4586
|
-
/** Required.
|
|
4771
|
+
/** Required. Value for parent. */
|
|
4587
4772
|
parent: string;
|
|
4588
4773
|
/** Returns response with indentations and line breaks. */
|
|
4589
4774
|
prettyPrint?: boolean;
|
|
4590
4775
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
4591
4776
|
quotaUser?: string;
|
|
4777
|
+
/** Optional. An optional 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 since 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). */
|
|
4778
|
+
requestId?: string;
|
|
4592
4779
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4593
4780
|
upload_protocol?: string;
|
|
4594
4781
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4595
4782
|
uploadType?: string;
|
|
4596
4783
|
/** Request body */
|
|
4597
|
-
resource:
|
|
4784
|
+
resource: FirewallEndpoint;
|
|
4598
4785
|
}): Request<Operation>;
|
|
4599
4786
|
create(
|
|
4600
4787
|
request: {
|
|
@@ -4608,26 +4795,28 @@ declare namespace gapi.client {
|
|
|
4608
4795
|
callback?: string;
|
|
4609
4796
|
/** Selector specifying which fields to include in a partial response. */
|
|
4610
4797
|
fields?: string;
|
|
4611
|
-
/**
|
|
4612
|
-
|
|
4798
|
+
/** Required. Id of the requesting object. If auto-generating Id server-side, remove this field and firewall_endpoint_id from the method_signature of Create RPC. */
|
|
4799
|
+
firewallEndpointId?: string;
|
|
4613
4800
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
4614
4801
|
key?: string;
|
|
4615
4802
|
/** OAuth 2.0 token for the current user. */
|
|
4616
4803
|
oauth_token?: string;
|
|
4617
|
-
/** Required.
|
|
4804
|
+
/** Required. Value for parent. */
|
|
4618
4805
|
parent: string;
|
|
4619
4806
|
/** Returns response with indentations and line breaks. */
|
|
4620
4807
|
prettyPrint?: boolean;
|
|
4621
4808
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
4622
4809
|
quotaUser?: string;
|
|
4810
|
+
/** Optional. An optional 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 since 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). */
|
|
4811
|
+
requestId?: string;
|
|
4623
4812
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4624
4813
|
upload_protocol?: string;
|
|
4625
4814
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4626
4815
|
uploadType?: string;
|
|
4627
4816
|
},
|
|
4628
|
-
body:
|
|
4817
|
+
body: FirewallEndpoint,
|
|
4629
4818
|
): Request<Operation>;
|
|
4630
|
-
/** Deletes a single
|
|
4819
|
+
/** Deletes a single project Endpoint. */
|
|
4631
4820
|
delete(request?: {
|
|
4632
4821
|
/** V1 error format. */
|
|
4633
4822
|
'$.xgafv'?: '1' | '2';
|
|
@@ -4641,7 +4830,7 @@ declare namespace gapi.client {
|
|
|
4641
4830
|
fields?: string;
|
|
4642
4831
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
4643
4832
|
key?: string;
|
|
4644
|
-
/** Required.
|
|
4833
|
+
/** Required. Name of the resource */
|
|
4645
4834
|
name: string;
|
|
4646
4835
|
/** OAuth 2.0 token for the current user. */
|
|
4647
4836
|
oauth_token?: string;
|
|
@@ -4649,12 +4838,14 @@ declare namespace gapi.client {
|
|
|
4649
4838
|
prettyPrint?: boolean;
|
|
4650
4839
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
4651
4840
|
quotaUser?: string;
|
|
4841
|
+
/** Optional. An optional 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). */
|
|
4842
|
+
requestId?: string;
|
|
4652
4843
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4653
4844
|
upload_protocol?: string;
|
|
4654
4845
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4655
4846
|
uploadType?: string;
|
|
4656
4847
|
}): Request<Operation>;
|
|
4657
|
-
/** Gets details of a single
|
|
4848
|
+
/** Gets details of a single project Endpoint. */
|
|
4658
4849
|
get(request?: {
|
|
4659
4850
|
/** V1 error format. */
|
|
4660
4851
|
'$.xgafv'?: '1' | '2';
|
|
@@ -4668,7 +4859,7 @@ declare namespace gapi.client {
|
|
|
4668
4859
|
fields?: string;
|
|
4669
4860
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
4670
4861
|
key?: string;
|
|
4671
|
-
/** Required.
|
|
4862
|
+
/** Required. Name of the resource */
|
|
4672
4863
|
name: string;
|
|
4673
4864
|
/** OAuth 2.0 token for the current user. */
|
|
4674
4865
|
oauth_token?: string;
|
|
@@ -4680,8 +4871,8 @@ declare namespace gapi.client {
|
|
|
4680
4871
|
upload_protocol?: string;
|
|
4681
4872
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4682
4873
|
uploadType?: string;
|
|
4683
|
-
}): Request<
|
|
4684
|
-
/** Lists
|
|
4874
|
+
}): Request<FirewallEndpoint>;
|
|
4875
|
+
/** Lists FirewallEndpoints in a given project and location. */
|
|
4685
4876
|
list(request?: {
|
|
4686
4877
|
/** V1 error format. */
|
|
4687
4878
|
'$.xgafv'?: '1' | '2';
|
|
@@ -4693,15 +4884,19 @@ declare namespace gapi.client {
|
|
|
4693
4884
|
callback?: string;
|
|
4694
4885
|
/** Selector specifying which fields to include in a partial response. */
|
|
4695
4886
|
fields?: string;
|
|
4887
|
+
/** Optional. Filtering results */
|
|
4888
|
+
filter?: string;
|
|
4696
4889
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
4697
4890
|
key?: string;
|
|
4698
4891
|
/** OAuth 2.0 token for the current user. */
|
|
4699
4892
|
oauth_token?: string;
|
|
4700
|
-
/**
|
|
4893
|
+
/** Hint for how to order the results */
|
|
4894
|
+
orderBy?: string;
|
|
4895
|
+
/** Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. */
|
|
4701
4896
|
pageSize?: number;
|
|
4702
|
-
/**
|
|
4897
|
+
/** A token identifying a page of results the server should return. */
|
|
4703
4898
|
pageToken?: string;
|
|
4704
|
-
/** Required.
|
|
4899
|
+
/** Required. Parent value for ListEndpointsRequest */
|
|
4705
4900
|
parent: string;
|
|
4706
4901
|
/** Returns response with indentations and line breaks. */
|
|
4707
4902
|
prettyPrint?: boolean;
|
|
@@ -4711,8 +4906,8 @@ declare namespace gapi.client {
|
|
|
4711
4906
|
upload_protocol?: string;
|
|
4712
4907
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4713
4908
|
uploadType?: string;
|
|
4714
|
-
}): Request<
|
|
4715
|
-
/**
|
|
4909
|
+
}): Request<ListFirewallEndpointsResponse>;
|
|
4910
|
+
/** Update a single project Endpoint. */
|
|
4716
4911
|
patch(request: {
|
|
4717
4912
|
/** V1 error format. */
|
|
4718
4913
|
'$.xgafv'?: '1' | '2';
|
|
@@ -4726,7 +4921,7 @@ declare namespace gapi.client {
|
|
|
4726
4921
|
fields?: string;
|
|
4727
4922
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
4728
4923
|
key?: string;
|
|
4729
|
-
/**
|
|
4924
|
+
/** Immutable. Identifier. Name of resource. */
|
|
4730
4925
|
name: string;
|
|
4731
4926
|
/** OAuth 2.0 token for the current user. */
|
|
4732
4927
|
oauth_token?: string;
|
|
@@ -4734,14 +4929,16 @@ declare namespace gapi.client {
|
|
|
4734
4929
|
prettyPrint?: boolean;
|
|
4735
4930
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
4736
4931
|
quotaUser?: string;
|
|
4737
|
-
/** Optional.
|
|
4932
|
+
/** Optional. An optional 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 since 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). */
|
|
4933
|
+
requestId?: string;
|
|
4934
|
+
/** Required. Field mask is used to specify the fields to be overwritten in the Endpoint resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten. */
|
|
4738
4935
|
updateMask?: string;
|
|
4739
4936
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4740
4937
|
upload_protocol?: string;
|
|
4741
4938
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4742
4939
|
uploadType?: string;
|
|
4743
4940
|
/** Request body */
|
|
4744
|
-
resource:
|
|
4941
|
+
resource: FirewallEndpoint;
|
|
4745
4942
|
}): Request<Operation>;
|
|
4746
4943
|
patch(
|
|
4747
4944
|
request: {
|
|
@@ -4757,7 +4954,7 @@ declare namespace gapi.client {
|
|
|
4757
4954
|
fields?: string;
|
|
4758
4955
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
4759
4956
|
key?: string;
|
|
4760
|
-
/**
|
|
4957
|
+
/** Immutable. Identifier. Name of resource. */
|
|
4761
4958
|
name: string;
|
|
4762
4959
|
/** OAuth 2.0 token for the current user. */
|
|
4763
4960
|
oauth_token?: string;
|
|
@@ -4765,17 +4962,19 @@ declare namespace gapi.client {
|
|
|
4765
4962
|
prettyPrint?: boolean;
|
|
4766
4963
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
4767
4964
|
quotaUser?: string;
|
|
4768
|
-
/** Optional.
|
|
4965
|
+
/** Optional. An optional 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 since 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). */
|
|
4966
|
+
requestId?: string;
|
|
4967
|
+
/** Required. Field mask is used to specify the fields to be overwritten in the Endpoint resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten. */
|
|
4769
4968
|
updateMask?: string;
|
|
4770
4969
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4771
4970
|
upload_protocol?: string;
|
|
4772
4971
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4773
4972
|
uploadType?: string;
|
|
4774
4973
|
},
|
|
4775
|
-
body:
|
|
4974
|
+
body: FirewallEndpoint,
|
|
4776
4975
|
): Request<Operation>;
|
|
4777
4976
|
}
|
|
4778
|
-
interface
|
|
4977
|
+
interface RulesResource {
|
|
4779
4978
|
/** Creates a new GatewaySecurityPolicy in a given project and location. */
|
|
4780
4979
|
create(request: {
|
|
4781
4980
|
/** V1 error format. */
|
|
@@ -4788,13 +4987,13 @@ declare namespace gapi.client {
|
|
|
4788
4987
|
callback?: string;
|
|
4789
4988
|
/** Selector specifying which fields to include in a partial response. */
|
|
4790
4989
|
fields?: string;
|
|
4791
|
-
/**
|
|
4792
|
-
|
|
4990
|
+
/** The ID to use for the rule, which will become the final component of the rule's resource name. This value should be 4-63 characters, and valid characters are /a-z-/. */
|
|
4991
|
+
gatewaySecurityPolicyRuleId?: string;
|
|
4793
4992
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
4794
4993
|
key?: string;
|
|
4795
4994
|
/** OAuth 2.0 token for the current user. */
|
|
4796
4995
|
oauth_token?: string;
|
|
4797
|
-
/** Required. The parent
|
|
4996
|
+
/** Required. The parent where this rule will be created. Format : projects/{project}/location/{location}/gatewaySecurityPolicies/* */
|
|
4798
4997
|
parent: string;
|
|
4799
4998
|
/** Returns response with indentations and line breaks. */
|
|
4800
4999
|
prettyPrint?: boolean;
|
|
@@ -4805,7 +5004,7 @@ declare namespace gapi.client {
|
|
|
4805
5004
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4806
5005
|
uploadType?: string;
|
|
4807
5006
|
/** Request body */
|
|
4808
|
-
resource:
|
|
5007
|
+
resource: GatewaySecurityPolicyRule;
|
|
4809
5008
|
}): Request<Operation>;
|
|
4810
5009
|
create(
|
|
4811
5010
|
request: {
|
|
@@ -4819,13 +5018,13 @@ declare namespace gapi.client {
|
|
|
4819
5018
|
callback?: string;
|
|
4820
5019
|
/** Selector specifying which fields to include in a partial response. */
|
|
4821
5020
|
fields?: string;
|
|
4822
|
-
/**
|
|
4823
|
-
|
|
5021
|
+
/** The ID to use for the rule, which will become the final component of the rule's resource name. This value should be 4-63 characters, and valid characters are /a-z-/. */
|
|
5022
|
+
gatewaySecurityPolicyRuleId?: string;
|
|
4824
5023
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
4825
5024
|
key?: string;
|
|
4826
5025
|
/** OAuth 2.0 token for the current user. */
|
|
4827
5026
|
oauth_token?: string;
|
|
4828
|
-
/** Required. The parent
|
|
5027
|
+
/** Required. The parent where this rule will be created. Format : projects/{project}/location/{location}/gatewaySecurityPolicies/* */
|
|
4829
5028
|
parent: string;
|
|
4830
5029
|
/** Returns response with indentations and line breaks. */
|
|
4831
5030
|
prettyPrint?: boolean;
|
|
@@ -4836,9 +5035,9 @@ declare namespace gapi.client {
|
|
|
4836
5035
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4837
5036
|
uploadType?: string;
|
|
4838
5037
|
},
|
|
4839
|
-
body:
|
|
5038
|
+
body: GatewaySecurityPolicyRule,
|
|
4840
5039
|
): Request<Operation>;
|
|
4841
|
-
/** Deletes a single
|
|
5040
|
+
/** Deletes a single GatewaySecurityPolicyRule. */
|
|
4842
5041
|
delete(request?: {
|
|
4843
5042
|
/** V1 error format. */
|
|
4844
5043
|
'$.xgafv'?: '1' | '2';
|
|
@@ -4852,7 +5051,7 @@ declare namespace gapi.client {
|
|
|
4852
5051
|
fields?: string;
|
|
4853
5052
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
4854
5053
|
key?: string;
|
|
4855
|
-
/** Required. A name of the
|
|
5054
|
+
/** Required. A name of the GatewaySecurityPolicyRule to delete. Must be in the format `projects/{project}/locations/{location}/gatewaySecurityPolicies/{gatewaySecurityPolicy}/rules/*`. */
|
|
4856
5055
|
name: string;
|
|
4857
5056
|
/** OAuth 2.0 token for the current user. */
|
|
4858
5057
|
oauth_token?: string;
|
|
@@ -4865,7 +5064,7 @@ declare namespace gapi.client {
|
|
|
4865
5064
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4866
5065
|
uploadType?: string;
|
|
4867
5066
|
}): Request<Operation>;
|
|
4868
|
-
/** Gets details of a single
|
|
5067
|
+
/** Gets details of a single GatewaySecurityPolicyRule. */
|
|
4869
5068
|
get(request?: {
|
|
4870
5069
|
/** V1 error format. */
|
|
4871
5070
|
'$.xgafv'?: '1' | '2';
|
|
@@ -4879,7 +5078,7 @@ declare namespace gapi.client {
|
|
|
4879
5078
|
fields?: string;
|
|
4880
5079
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
4881
5080
|
key?: string;
|
|
4882
|
-
/** Required.
|
|
5081
|
+
/** Required. The name of the GatewaySecurityPolicyRule to retrieve. Format: projects/{project}/location/{location}/gatewaySecurityPolicies/*/rules/* */
|
|
4883
5082
|
name: string;
|
|
4884
5083
|
/** OAuth 2.0 token for the current user. */
|
|
4885
5084
|
oauth_token?: string;
|
|
@@ -4891,8 +5090,8 @@ declare namespace gapi.client {
|
|
|
4891
5090
|
upload_protocol?: string;
|
|
4892
5091
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4893
5092
|
uploadType?: string;
|
|
4894
|
-
}): Request<
|
|
4895
|
-
/** Lists
|
|
5093
|
+
}): Request<GatewaySecurityPolicyRule>;
|
|
5094
|
+
/** Lists GatewaySecurityPolicyRules in a given project and location. */
|
|
4896
5095
|
list(request?: {
|
|
4897
5096
|
/** V1 error format. */
|
|
4898
5097
|
'$.xgafv'?: '1' | '2';
|
|
@@ -4908,11 +5107,11 @@ declare namespace gapi.client {
|
|
|
4908
5107
|
key?: string;
|
|
4909
5108
|
/** OAuth 2.0 token for the current user. */
|
|
4910
5109
|
oauth_token?: string;
|
|
4911
|
-
/** Maximum number of
|
|
5110
|
+
/** Maximum number of GatewaySecurityPolicyRules to return per call. */
|
|
4912
5111
|
pageSize?: number;
|
|
4913
|
-
/** The value returned by the last '
|
|
5112
|
+
/** The value returned by the last 'ListGatewaySecurityPolicyRulesResponse' Indicates that this is a continuation of a prior 'ListGatewaySecurityPolicyRules' call, and that the system should return the next page of data. */
|
|
4914
5113
|
pageToken?: string;
|
|
4915
|
-
/** Required. The project and
|
|
5114
|
+
/** Required. The project, location and GatewaySecurityPolicy from which the GatewaySecurityPolicyRules should be listed, specified in the format `projects/{project}/locations/{location}/gatewaySecurityPolicies/{gatewaySecurityPolicy}`. */
|
|
4916
5115
|
parent: string;
|
|
4917
5116
|
/** Returns response with indentations and line breaks. */
|
|
4918
5117
|
prettyPrint?: boolean;
|
|
@@ -4922,8 +5121,8 @@ declare namespace gapi.client {
|
|
|
4922
5121
|
upload_protocol?: string;
|
|
4923
5122
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4924
5123
|
uploadType?: string;
|
|
4925
|
-
}): Request<
|
|
4926
|
-
/** Updates the parameters of a single
|
|
5124
|
+
}): Request<ListGatewaySecurityPolicyRulesResponse>;
|
|
5125
|
+
/** Updates the parameters of a single GatewaySecurityPolicyRule. */
|
|
4927
5126
|
patch(request: {
|
|
4928
5127
|
/** V1 error format. */
|
|
4929
5128
|
'$.xgafv'?: '1' | '2';
|
|
@@ -4937,7 +5136,7 @@ declare namespace gapi.client {
|
|
|
4937
5136
|
fields?: string;
|
|
4938
5137
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
4939
5138
|
key?: string;
|
|
4940
|
-
/** Required. Name of the resource.
|
|
5139
|
+
/** Required. Immutable. Name of the resource. ame is the full resource name so projects/{project}/locations/{location}/gatewaySecurityPolicies/{gateway_security_policy}/rules/{rule} rule should match the pattern: (^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$). */
|
|
4941
5140
|
name: string;
|
|
4942
5141
|
/** OAuth 2.0 token for the current user. */
|
|
4943
5142
|
oauth_token?: string;
|
|
@@ -4952,7 +5151,7 @@ declare namespace gapi.client {
|
|
|
4952
5151
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4953
5152
|
uploadType?: string;
|
|
4954
5153
|
/** Request body */
|
|
4955
|
-
resource:
|
|
5154
|
+
resource: GatewaySecurityPolicyRule;
|
|
4956
5155
|
}): Request<Operation>;
|
|
4957
5156
|
patch(
|
|
4958
5157
|
request: {
|
|
@@ -4968,7 +5167,7 @@ declare namespace gapi.client {
|
|
|
4968
5167
|
fields?: string;
|
|
4969
5168
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
4970
5169
|
key?: string;
|
|
4971
|
-
/** Required. Name of the resource.
|
|
5170
|
+
/** Required. Immutable. Name of the resource. ame is the full resource name so projects/{project}/locations/{location}/gatewaySecurityPolicies/{gateway_security_policy}/rules/{rule} rule should match the pattern: (^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$). */
|
|
4972
5171
|
name: string;
|
|
4973
5172
|
/** OAuth 2.0 token for the current user. */
|
|
4974
5173
|
oauth_token?: string;
|
|
@@ -4983,12 +5182,11 @@ declare namespace gapi.client {
|
|
|
4983
5182
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4984
5183
|
uploadType?: string;
|
|
4985
5184
|
},
|
|
4986
|
-
body:
|
|
5185
|
+
body: GatewaySecurityPolicyRule,
|
|
4987
5186
|
): Request<Operation>;
|
|
4988
|
-
rules: RulesResource;
|
|
4989
5187
|
}
|
|
4990
|
-
interface
|
|
4991
|
-
/** Creates a
|
|
5188
|
+
interface GatewaySecurityPoliciesResource {
|
|
5189
|
+
/** Creates a new GatewaySecurityPolicy in a given project and location. */
|
|
4992
5190
|
create(request: {
|
|
4993
5191
|
/** V1 error format. */
|
|
4994
5192
|
'$.xgafv'?: '1' | '2';
|
|
@@ -5000,26 +5198,24 @@ declare namespace gapi.client {
|
|
|
5000
5198
|
callback?: string;
|
|
5001
5199
|
/** Selector specifying which fields to include in a partial response. */
|
|
5002
5200
|
fields?: string;
|
|
5003
|
-
/** Required.
|
|
5004
|
-
|
|
5201
|
+
/** Required. Short name of the GatewaySecurityPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "gateway_security_policy1". */
|
|
5202
|
+
gatewaySecurityPolicyId?: string;
|
|
5005
5203
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
5006
5204
|
key?: string;
|
|
5007
5205
|
/** OAuth 2.0 token for the current user. */
|
|
5008
5206
|
oauth_token?: string;
|
|
5009
|
-
/** Required. The parent resource
|
|
5207
|
+
/** Required. The parent resource of the GatewaySecurityPolicy. Must be in the format `projects/{project}/locations/{location}`. */
|
|
5010
5208
|
parent: string;
|
|
5011
5209
|
/** Returns response with indentations and line breaks. */
|
|
5012
5210
|
prettyPrint?: boolean;
|
|
5013
5211
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
5014
5212
|
quotaUser?: string;
|
|
5015
|
-
/** Optional. A unique identifier for this request. Must be a UUID4. This request is only idempotent if a `request_id` is provided. See https://google.aip.dev/155 for more details. */
|
|
5016
|
-
requestId?: string;
|
|
5017
5213
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5018
5214
|
upload_protocol?: string;
|
|
5019
5215
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5020
5216
|
uploadType?: string;
|
|
5021
5217
|
/** Request body */
|
|
5022
|
-
resource:
|
|
5218
|
+
resource: GatewaySecurityPolicy;
|
|
5023
5219
|
}): Request<Operation>;
|
|
5024
5220
|
create(
|
|
5025
5221
|
request: {
|
|
@@ -5033,28 +5229,242 @@ declare namespace gapi.client {
|
|
|
5033
5229
|
callback?: string;
|
|
5034
5230
|
/** Selector specifying which fields to include in a partial response. */
|
|
5035
5231
|
fields?: string;
|
|
5036
|
-
/** Required.
|
|
5037
|
-
|
|
5232
|
+
/** Required. Short name of the GatewaySecurityPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "gateway_security_policy1". */
|
|
5233
|
+
gatewaySecurityPolicyId?: string;
|
|
5038
5234
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
5039
5235
|
key?: string;
|
|
5040
5236
|
/** OAuth 2.0 token for the current user. */
|
|
5041
5237
|
oauth_token?: string;
|
|
5042
|
-
/** Required. The parent resource
|
|
5238
|
+
/** Required. The parent resource of the GatewaySecurityPolicy. Must be in the format `projects/{project}/locations/{location}`. */
|
|
5043
5239
|
parent: string;
|
|
5044
5240
|
/** Returns response with indentations and line breaks. */
|
|
5045
5241
|
prettyPrint?: boolean;
|
|
5046
5242
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
5047
5243
|
quotaUser?: string;
|
|
5048
|
-
/** Optional. A unique identifier for this request. Must be a UUID4. This request is only idempotent if a `request_id` is provided. See https://google.aip.dev/155 for more details. */
|
|
5049
|
-
requestId?: string;
|
|
5050
5244
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5051
5245
|
upload_protocol?: string;
|
|
5052
5246
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5053
5247
|
uploadType?: string;
|
|
5054
5248
|
},
|
|
5055
|
-
body:
|
|
5249
|
+
body: GatewaySecurityPolicy,
|
|
5056
5250
|
): Request<Operation>;
|
|
5057
|
-
/** Deletes a
|
|
5251
|
+
/** Deletes a single GatewaySecurityPolicy. */
|
|
5252
|
+
delete(request?: {
|
|
5253
|
+
/** V1 error format. */
|
|
5254
|
+
'$.xgafv'?: '1' | '2';
|
|
5255
|
+
/** OAuth access token. */
|
|
5256
|
+
access_token?: string;
|
|
5257
|
+
/** Data format for response. */
|
|
5258
|
+
alt?: 'json' | 'media' | 'proto';
|
|
5259
|
+
/** JSONP */
|
|
5260
|
+
callback?: string;
|
|
5261
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
5262
|
+
fields?: string;
|
|
5263
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
5264
|
+
key?: string;
|
|
5265
|
+
/** Required. A name of the GatewaySecurityPolicy to delete. Must be in the format `projects/{project}/locations/{location}/gatewaySecurityPolicies/*`. */
|
|
5266
|
+
name: string;
|
|
5267
|
+
/** OAuth 2.0 token for the current user. */
|
|
5268
|
+
oauth_token?: string;
|
|
5269
|
+
/** Returns response with indentations and line breaks. */
|
|
5270
|
+
prettyPrint?: boolean;
|
|
5271
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
5272
|
+
quotaUser?: string;
|
|
5273
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5274
|
+
upload_protocol?: string;
|
|
5275
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5276
|
+
uploadType?: string;
|
|
5277
|
+
}): Request<Operation>;
|
|
5278
|
+
/** Gets details of a single GatewaySecurityPolicy. */
|
|
5279
|
+
get(request?: {
|
|
5280
|
+
/** V1 error format. */
|
|
5281
|
+
'$.xgafv'?: '1' | '2';
|
|
5282
|
+
/** OAuth access token. */
|
|
5283
|
+
access_token?: string;
|
|
5284
|
+
/** Data format for response. */
|
|
5285
|
+
alt?: 'json' | 'media' | 'proto';
|
|
5286
|
+
/** JSONP */
|
|
5287
|
+
callback?: string;
|
|
5288
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
5289
|
+
fields?: string;
|
|
5290
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
5291
|
+
key?: string;
|
|
5292
|
+
/** Required. A name of the GatewaySecurityPolicy to get. Must be in the format `projects/{project}/locations/{location}/gatewaySecurityPolicies/*`. */
|
|
5293
|
+
name: string;
|
|
5294
|
+
/** OAuth 2.0 token for the current user. */
|
|
5295
|
+
oauth_token?: string;
|
|
5296
|
+
/** Returns response with indentations and line breaks. */
|
|
5297
|
+
prettyPrint?: boolean;
|
|
5298
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
5299
|
+
quotaUser?: string;
|
|
5300
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5301
|
+
upload_protocol?: string;
|
|
5302
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5303
|
+
uploadType?: string;
|
|
5304
|
+
}): Request<GatewaySecurityPolicy>;
|
|
5305
|
+
/** Lists GatewaySecurityPolicies in a given project and location. */
|
|
5306
|
+
list(request?: {
|
|
5307
|
+
/** V1 error format. */
|
|
5308
|
+
'$.xgafv'?: '1' | '2';
|
|
5309
|
+
/** OAuth access token. */
|
|
5310
|
+
access_token?: string;
|
|
5311
|
+
/** Data format for response. */
|
|
5312
|
+
alt?: 'json' | 'media' | 'proto';
|
|
5313
|
+
/** JSONP */
|
|
5314
|
+
callback?: string;
|
|
5315
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
5316
|
+
fields?: string;
|
|
5317
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
5318
|
+
key?: string;
|
|
5319
|
+
/** OAuth 2.0 token for the current user. */
|
|
5320
|
+
oauth_token?: string;
|
|
5321
|
+
/** Maximum number of GatewaySecurityPolicies to return per call. */
|
|
5322
|
+
pageSize?: number;
|
|
5323
|
+
/** The value returned by the last 'ListGatewaySecurityPoliciesResponse' Indicates that this is a continuation of a prior 'ListGatewaySecurityPolicies' call, and that the system should return the next page of data. */
|
|
5324
|
+
pageToken?: string;
|
|
5325
|
+
/** Required. The project and location from which the GatewaySecurityPolicies should be listed, specified in the format `projects/{project}/locations/{location}`. */
|
|
5326
|
+
parent: string;
|
|
5327
|
+
/** Returns response with indentations and line breaks. */
|
|
5328
|
+
prettyPrint?: boolean;
|
|
5329
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
5330
|
+
quotaUser?: string;
|
|
5331
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5332
|
+
upload_protocol?: string;
|
|
5333
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5334
|
+
uploadType?: string;
|
|
5335
|
+
}): Request<ListGatewaySecurityPoliciesResponse>;
|
|
5336
|
+
/** Updates the parameters of a single GatewaySecurityPolicy. */
|
|
5337
|
+
patch(request: {
|
|
5338
|
+
/** V1 error format. */
|
|
5339
|
+
'$.xgafv'?: '1' | '2';
|
|
5340
|
+
/** OAuth access token. */
|
|
5341
|
+
access_token?: string;
|
|
5342
|
+
/** Data format for response. */
|
|
5343
|
+
alt?: 'json' | 'media' | 'proto';
|
|
5344
|
+
/** JSONP */
|
|
5345
|
+
callback?: string;
|
|
5346
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
5347
|
+
fields?: string;
|
|
5348
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
5349
|
+
key?: string;
|
|
5350
|
+
/** Required. Name of the resource. Name is of the form projects/{project}/locations/{location}/gatewaySecurityPolicies/{gateway_security_policy} gateway_security_policy should match the pattern:(^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$). */
|
|
5351
|
+
name: string;
|
|
5352
|
+
/** OAuth 2.0 token for the current user. */
|
|
5353
|
+
oauth_token?: string;
|
|
5354
|
+
/** Returns response with indentations and line breaks. */
|
|
5355
|
+
prettyPrint?: boolean;
|
|
5356
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
5357
|
+
quotaUser?: string;
|
|
5358
|
+
/** Optional. Field mask is used to specify the fields to be overwritten in the GatewaySecurityPolicy resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten. */
|
|
5359
|
+
updateMask?: string;
|
|
5360
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5361
|
+
upload_protocol?: string;
|
|
5362
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5363
|
+
uploadType?: string;
|
|
5364
|
+
/** Request body */
|
|
5365
|
+
resource: GatewaySecurityPolicy;
|
|
5366
|
+
}): Request<Operation>;
|
|
5367
|
+
patch(
|
|
5368
|
+
request: {
|
|
5369
|
+
/** V1 error format. */
|
|
5370
|
+
'$.xgafv'?: '1' | '2';
|
|
5371
|
+
/** OAuth access token. */
|
|
5372
|
+
access_token?: string;
|
|
5373
|
+
/** Data format for response. */
|
|
5374
|
+
alt?: 'json' | 'media' | 'proto';
|
|
5375
|
+
/** JSONP */
|
|
5376
|
+
callback?: string;
|
|
5377
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
5378
|
+
fields?: string;
|
|
5379
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
5380
|
+
key?: string;
|
|
5381
|
+
/** Required. Name of the resource. Name is of the form projects/{project}/locations/{location}/gatewaySecurityPolicies/{gateway_security_policy} gateway_security_policy should match the pattern:(^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$). */
|
|
5382
|
+
name: string;
|
|
5383
|
+
/** OAuth 2.0 token for the current user. */
|
|
5384
|
+
oauth_token?: string;
|
|
5385
|
+
/** Returns response with indentations and line breaks. */
|
|
5386
|
+
prettyPrint?: boolean;
|
|
5387
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
5388
|
+
quotaUser?: string;
|
|
5389
|
+
/** Optional. Field mask is used to specify the fields to be overwritten in the GatewaySecurityPolicy resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten. */
|
|
5390
|
+
updateMask?: string;
|
|
5391
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5392
|
+
upload_protocol?: string;
|
|
5393
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5394
|
+
uploadType?: string;
|
|
5395
|
+
},
|
|
5396
|
+
body: GatewaySecurityPolicy,
|
|
5397
|
+
): Request<Operation>;
|
|
5398
|
+
rules: RulesResource;
|
|
5399
|
+
}
|
|
5400
|
+
interface InterceptDeploymentGroupsResource {
|
|
5401
|
+
/** Creates a deployment group in a given project and location. See https://google.aip.dev/133. */
|
|
5402
|
+
create(request: {
|
|
5403
|
+
/** V1 error format. */
|
|
5404
|
+
'$.xgafv'?: '1' | '2';
|
|
5405
|
+
/** OAuth access token. */
|
|
5406
|
+
access_token?: string;
|
|
5407
|
+
/** Data format for response. */
|
|
5408
|
+
alt?: 'json' | 'media' | 'proto';
|
|
5409
|
+
/** JSONP */
|
|
5410
|
+
callback?: string;
|
|
5411
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
5412
|
+
fields?: string;
|
|
5413
|
+
/** Required. The ID to use for the new deployment group, which will become the final component of the deployment group's resource name. */
|
|
5414
|
+
interceptDeploymentGroupId?: string;
|
|
5415
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
5416
|
+
key?: string;
|
|
5417
|
+
/** OAuth 2.0 token for the current user. */
|
|
5418
|
+
oauth_token?: string;
|
|
5419
|
+
/** Required. The parent resource where this deployment group will be created. Format: projects/{project}/locations/{location} */
|
|
5420
|
+
parent: string;
|
|
5421
|
+
/** Returns response with indentations and line breaks. */
|
|
5422
|
+
prettyPrint?: boolean;
|
|
5423
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
5424
|
+
quotaUser?: string;
|
|
5425
|
+
/** Optional. A unique identifier for this request. Must be a UUID4. This request is only idempotent if a `request_id` is provided. See https://google.aip.dev/155 for more details. */
|
|
5426
|
+
requestId?: string;
|
|
5427
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5428
|
+
upload_protocol?: string;
|
|
5429
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5430
|
+
uploadType?: string;
|
|
5431
|
+
/** Request body */
|
|
5432
|
+
resource: InterceptDeploymentGroup;
|
|
5433
|
+
}): Request<Operation>;
|
|
5434
|
+
create(
|
|
5435
|
+
request: {
|
|
5436
|
+
/** V1 error format. */
|
|
5437
|
+
'$.xgafv'?: '1' | '2';
|
|
5438
|
+
/** OAuth access token. */
|
|
5439
|
+
access_token?: string;
|
|
5440
|
+
/** Data format for response. */
|
|
5441
|
+
alt?: 'json' | 'media' | 'proto';
|
|
5442
|
+
/** JSONP */
|
|
5443
|
+
callback?: string;
|
|
5444
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
5445
|
+
fields?: string;
|
|
5446
|
+
/** Required. The ID to use for the new deployment group, which will become the final component of the deployment group's resource name. */
|
|
5447
|
+
interceptDeploymentGroupId?: string;
|
|
5448
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
5449
|
+
key?: string;
|
|
5450
|
+
/** OAuth 2.0 token for the current user. */
|
|
5451
|
+
oauth_token?: string;
|
|
5452
|
+
/** Required. The parent resource where this deployment group will be created. Format: projects/{project}/locations/{location} */
|
|
5453
|
+
parent: string;
|
|
5454
|
+
/** Returns response with indentations and line breaks. */
|
|
5455
|
+
prettyPrint?: boolean;
|
|
5456
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
5457
|
+
quotaUser?: string;
|
|
5458
|
+
/** Optional. A unique identifier for this request. Must be a UUID4. This request is only idempotent if a `request_id` is provided. See https://google.aip.dev/155 for more details. */
|
|
5459
|
+
requestId?: string;
|
|
5460
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
5461
|
+
upload_protocol?: string;
|
|
5462
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
5463
|
+
uploadType?: string;
|
|
5464
|
+
},
|
|
5465
|
+
body: InterceptDeploymentGroup,
|
|
5466
|
+
): Request<Operation>;
|
|
5467
|
+
/** Deletes a deployment group. See https://google.aip.dev/135. */
|
|
5058
5468
|
delete(request?: {
|
|
5059
5469
|
/** V1 error format. */
|
|
5060
5470
|
'$.xgafv'?: '1' | '2';
|
|
@@ -6936,8 +7346,8 @@ declare namespace gapi.client {
|
|
|
6936
7346
|
uploadType?: string;
|
|
6937
7347
|
}): Request<ListOperationsResponse>;
|
|
6938
7348
|
}
|
|
6939
|
-
interface
|
|
6940
|
-
/** Creates a new
|
|
7349
|
+
interface SacAttachmentsResource {
|
|
7350
|
+
/** Creates a new SACAttachment in a given project and location. */
|
|
6941
7351
|
create(request: {
|
|
6942
7352
|
/** V1 error format. */
|
|
6943
7353
|
'$.xgafv'?: '1' | '2';
|
|
@@ -6953,20 +7363,22 @@ declare namespace gapi.client {
|
|
|
6953
7363
|
key?: string;
|
|
6954
7364
|
/** OAuth 2.0 token for the current user. */
|
|
6955
7365
|
oauth_token?: string;
|
|
6956
|
-
/** Required. The parent
|
|
7366
|
+
/** Required. The parent, in the form `projects/{project}/locations/{location}`. */
|
|
6957
7367
|
parent: string;
|
|
6958
7368
|
/** Returns response with indentations and line breaks. */
|
|
6959
7369
|
prettyPrint?: boolean;
|
|
6960
7370
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
6961
7371
|
quotaUser?: string;
|
|
6962
|
-
/**
|
|
6963
|
-
|
|
7372
|
+
/** Optional. An optional 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 since 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). */
|
|
7373
|
+
requestId?: string;
|
|
7374
|
+
/** Required. ID of the created attachment. The ID must be 1-63 characters long, and comply with RFC1035. Specifically, it must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. */
|
|
7375
|
+
sacAttachmentId?: string;
|
|
6964
7376
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6965
7377
|
upload_protocol?: string;
|
|
6966
7378
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6967
7379
|
uploadType?: string;
|
|
6968
7380
|
/** Request body */
|
|
6969
|
-
resource:
|
|
7381
|
+
resource: SACAttachment;
|
|
6970
7382
|
}): Request<Operation>;
|
|
6971
7383
|
create(
|
|
6972
7384
|
request: {
|
|
@@ -6984,22 +7396,24 @@ declare namespace gapi.client {
|
|
|
6984
7396
|
key?: string;
|
|
6985
7397
|
/** OAuth 2.0 token for the current user. */
|
|
6986
7398
|
oauth_token?: string;
|
|
6987
|
-
/** Required. The parent
|
|
7399
|
+
/** Required. The parent, in the form `projects/{project}/locations/{location}`. */
|
|
6988
7400
|
parent: string;
|
|
6989
7401
|
/** Returns response with indentations and line breaks. */
|
|
6990
7402
|
prettyPrint?: boolean;
|
|
6991
7403
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
6992
7404
|
quotaUser?: string;
|
|
6993
|
-
/**
|
|
6994
|
-
|
|
7405
|
+
/** Optional. An optional 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 since 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). */
|
|
7406
|
+
requestId?: string;
|
|
7407
|
+
/** Required. ID of the created attachment. The ID must be 1-63 characters long, and comply with RFC1035. Specifically, it must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. */
|
|
7408
|
+
sacAttachmentId?: string;
|
|
6995
7409
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6996
7410
|
upload_protocol?: string;
|
|
6997
7411
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6998
7412
|
uploadType?: string;
|
|
6999
7413
|
},
|
|
7000
|
-
body:
|
|
7414
|
+
body: SACAttachment,
|
|
7001
7415
|
): Request<Operation>;
|
|
7002
|
-
/** Deletes
|
|
7416
|
+
/** Deletes the specified attachment. */
|
|
7003
7417
|
delete(request?: {
|
|
7004
7418
|
/** V1 error format. */
|
|
7005
7419
|
'$.xgafv'?: '1' | '2';
|
|
@@ -7013,7 +7427,7 @@ declare namespace gapi.client {
|
|
|
7013
7427
|
fields?: string;
|
|
7014
7428
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
7015
7429
|
key?: string;
|
|
7016
|
-
/** Required.
|
|
7430
|
+
/** Required. Name of the resource, in the form `projects/{project}/locations/{location}/sacAttachments/{sac_attachment}`. */
|
|
7017
7431
|
name: string;
|
|
7018
7432
|
/** OAuth 2.0 token for the current user. */
|
|
7019
7433
|
oauth_token?: string;
|
|
@@ -7021,12 +7435,14 @@ declare namespace gapi.client {
|
|
|
7021
7435
|
prettyPrint?: boolean;
|
|
7022
7436
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
7023
7437
|
quotaUser?: string;
|
|
7438
|
+
/** Optional. An optional 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). */
|
|
7439
|
+
requestId?: string;
|
|
7024
7440
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
7025
7441
|
upload_protocol?: string;
|
|
7026
7442
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
7027
7443
|
uploadType?: string;
|
|
7028
7444
|
}): Request<Operation>;
|
|
7029
|
-
/**
|
|
7445
|
+
/** Returns the specified attachment. */
|
|
7030
7446
|
get(request?: {
|
|
7031
7447
|
/** V1 error format. */
|
|
7032
7448
|
'$.xgafv'?: '1' | '2';
|
|
@@ -7040,7 +7456,7 @@ declare namespace gapi.client {
|
|
|
7040
7456
|
fields?: string;
|
|
7041
7457
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
7042
7458
|
key?: string;
|
|
7043
|
-
/** Required.
|
|
7459
|
+
/** Required. Name of the resource, in the form `projects/{project}/locations/{location}/sacAttachments/{sac_attachment}`. */
|
|
7044
7460
|
name: string;
|
|
7045
7461
|
/** OAuth 2.0 token for the current user. */
|
|
7046
7462
|
oauth_token?: string;
|
|
@@ -7052,9 +7468,9 @@ declare namespace gapi.client {
|
|
|
7052
7468
|
upload_protocol?: string;
|
|
7053
7469
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
7054
7470
|
uploadType?: string;
|
|
7055
|
-
}): Request<
|
|
7056
|
-
/**
|
|
7057
|
-
|
|
7471
|
+
}): Request<SACAttachment>;
|
|
7472
|
+
/** Lists SACAttachments in a given project and location. */
|
|
7473
|
+
list(request?: {
|
|
7058
7474
|
/** V1 error format. */
|
|
7059
7475
|
'$.xgafv'?: '1' | '2';
|
|
7060
7476
|
/** OAuth access token. */
|
|
@@ -7065,25 +7481,33 @@ declare namespace gapi.client {
|
|
|
7065
7481
|
callback?: string;
|
|
7066
7482
|
/** Selector specifying which fields to include in a partial response. */
|
|
7067
7483
|
fields?: string;
|
|
7484
|
+
/** Optional. An expression that filters the list of results. */
|
|
7485
|
+
filter?: string;
|
|
7068
7486
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
7069
7487
|
key?: string;
|
|
7070
7488
|
/** OAuth 2.0 token for the current user. */
|
|
7071
7489
|
oauth_token?: string;
|
|
7072
|
-
/** Optional.
|
|
7073
|
-
|
|
7490
|
+
/** Optional. Sort the results by a certain order. */
|
|
7491
|
+
orderBy?: string;
|
|
7492
|
+
/** Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. */
|
|
7493
|
+
pageSize?: number;
|
|
7494
|
+
/** Optional. A token identifying a page of results the server should return. */
|
|
7495
|
+
pageToken?: string;
|
|
7496
|
+
/** Required. The parent, in the form `projects/{project}/locations/{location}`. */
|
|
7497
|
+
parent: string;
|
|
7074
7498
|
/** Returns response with indentations and line breaks. */
|
|
7075
7499
|
prettyPrint?: boolean;
|
|
7076
7500
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
7077
7501
|
quotaUser?: string;
|
|
7078
|
-
/** REQUIRED: The resource for which the policy is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field. */
|
|
7079
|
-
resource: string;
|
|
7080
7502
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
7081
7503
|
upload_protocol?: string;
|
|
7082
7504
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
7083
7505
|
uploadType?: string;
|
|
7084
|
-
}): Request<
|
|
7085
|
-
|
|
7086
|
-
|
|
7506
|
+
}): Request<ListSACAttachmentsResponse>;
|
|
7507
|
+
}
|
|
7508
|
+
interface SacRealmsResource {
|
|
7509
|
+
/** Creates a new SACRealm in a given project. */
|
|
7510
|
+
create(request: {
|
|
7087
7511
|
/** V1 error format. */
|
|
7088
7512
|
'$.xgafv'?: '1' | '2';
|
|
7089
7513
|
/** OAuth access token. */
|
|
@@ -7098,7 +7522,737 @@ declare namespace gapi.client {
|
|
|
7098
7522
|
key?: string;
|
|
7099
7523
|
/** OAuth 2.0 token for the current user. */
|
|
7100
7524
|
oauth_token?: string;
|
|
7101
|
-
/**
|
|
7525
|
+
/** Required. The parent, in the form `projects/{project}/locations/global`. */
|
|
7526
|
+
parent: string;
|
|
7527
|
+
/** Returns response with indentations and line breaks. */
|
|
7528
|
+
prettyPrint?: boolean;
|
|
7529
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
7530
|
+
quotaUser?: string;
|
|
7531
|
+
/** Optional. An optional 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 since 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). */
|
|
7532
|
+
requestId?: string;
|
|
7533
|
+
/** Required. ID of the created realm. The ID must be 1-63 characters long, and comply with RFC1035. Specifically, it must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. */
|
|
7534
|
+
sacRealmId?: string;
|
|
7535
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
7536
|
+
upload_protocol?: string;
|
|
7537
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
7538
|
+
uploadType?: string;
|
|
7539
|
+
/** Request body */
|
|
7540
|
+
resource: SACRealm;
|
|
7541
|
+
}): Request<Operation>;
|
|
7542
|
+
create(
|
|
7543
|
+
request: {
|
|
7544
|
+
/** V1 error format. */
|
|
7545
|
+
'$.xgafv'?: '1' | '2';
|
|
7546
|
+
/** OAuth access token. */
|
|
7547
|
+
access_token?: string;
|
|
7548
|
+
/** Data format for response. */
|
|
7549
|
+
alt?: 'json' | 'media' | 'proto';
|
|
7550
|
+
/** JSONP */
|
|
7551
|
+
callback?: string;
|
|
7552
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
7553
|
+
fields?: string;
|
|
7554
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
7555
|
+
key?: string;
|
|
7556
|
+
/** OAuth 2.0 token for the current user. */
|
|
7557
|
+
oauth_token?: string;
|
|
7558
|
+
/** Required. The parent, in the form `projects/{project}/locations/global`. */
|
|
7559
|
+
parent: string;
|
|
7560
|
+
/** Returns response with indentations and line breaks. */
|
|
7561
|
+
prettyPrint?: boolean;
|
|
7562
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
7563
|
+
quotaUser?: string;
|
|
7564
|
+
/** Optional. An optional 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 since 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). */
|
|
7565
|
+
requestId?: string;
|
|
7566
|
+
/** Required. ID of the created realm. The ID must be 1-63 characters long, and comply with RFC1035. Specifically, it must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. */
|
|
7567
|
+
sacRealmId?: string;
|
|
7568
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
7569
|
+
upload_protocol?: string;
|
|
7570
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
7571
|
+
uploadType?: string;
|
|
7572
|
+
},
|
|
7573
|
+
body: SACRealm,
|
|
7574
|
+
): Request<Operation>;
|
|
7575
|
+
/** Deletes the specified realm. */
|
|
7576
|
+
delete(request?: {
|
|
7577
|
+
/** V1 error format. */
|
|
7578
|
+
'$.xgafv'?: '1' | '2';
|
|
7579
|
+
/** OAuth access token. */
|
|
7580
|
+
access_token?: string;
|
|
7581
|
+
/** Data format for response. */
|
|
7582
|
+
alt?: 'json' | 'media' | 'proto';
|
|
7583
|
+
/** JSONP */
|
|
7584
|
+
callback?: string;
|
|
7585
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
7586
|
+
fields?: string;
|
|
7587
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
7588
|
+
key?: string;
|
|
7589
|
+
/** Required. Name of the resource, in the form `projects/{project}/locations/global/sacRealms/{sacRealm}`. */
|
|
7590
|
+
name: string;
|
|
7591
|
+
/** OAuth 2.0 token for the current user. */
|
|
7592
|
+
oauth_token?: string;
|
|
7593
|
+
/** Returns response with indentations and line breaks. */
|
|
7594
|
+
prettyPrint?: boolean;
|
|
7595
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
7596
|
+
quotaUser?: string;
|
|
7597
|
+
/** Optional. An optional 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). */
|
|
7598
|
+
requestId?: string;
|
|
7599
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
7600
|
+
upload_protocol?: string;
|
|
7601
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
7602
|
+
uploadType?: string;
|
|
7603
|
+
}): Request<Operation>;
|
|
7604
|
+
/** Returns the specified realm. */
|
|
7605
|
+
get(request?: {
|
|
7606
|
+
/** V1 error format. */
|
|
7607
|
+
'$.xgafv'?: '1' | '2';
|
|
7608
|
+
/** OAuth access token. */
|
|
7609
|
+
access_token?: string;
|
|
7610
|
+
/** Data format for response. */
|
|
7611
|
+
alt?: 'json' | 'media' | 'proto';
|
|
7612
|
+
/** JSONP */
|
|
7613
|
+
callback?: string;
|
|
7614
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
7615
|
+
fields?: string;
|
|
7616
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
7617
|
+
key?: string;
|
|
7618
|
+
/** Required. Name of the resource, in the form `projects/{project}/locations/global/sacRealms/{sacRealm}`. */
|
|
7619
|
+
name: string;
|
|
7620
|
+
/** OAuth 2.0 token for the current user. */
|
|
7621
|
+
oauth_token?: string;
|
|
7622
|
+
/** Returns response with indentations and line breaks. */
|
|
7623
|
+
prettyPrint?: boolean;
|
|
7624
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
7625
|
+
quotaUser?: string;
|
|
7626
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
7627
|
+
upload_protocol?: string;
|
|
7628
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
7629
|
+
uploadType?: string;
|
|
7630
|
+
}): Request<SACRealm>;
|
|
7631
|
+
/** Lists SACRealms in a given project. */
|
|
7632
|
+
list(request?: {
|
|
7633
|
+
/** V1 error format. */
|
|
7634
|
+
'$.xgafv'?: '1' | '2';
|
|
7635
|
+
/** OAuth access token. */
|
|
7636
|
+
access_token?: string;
|
|
7637
|
+
/** Data format for response. */
|
|
7638
|
+
alt?: 'json' | 'media' | 'proto';
|
|
7639
|
+
/** JSONP */
|
|
7640
|
+
callback?: string;
|
|
7641
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
7642
|
+
fields?: string;
|
|
7643
|
+
/** Optional. An expression that filters the list of results. */
|
|
7644
|
+
filter?: string;
|
|
7645
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
7646
|
+
key?: string;
|
|
7647
|
+
/** OAuth 2.0 token for the current user. */
|
|
7648
|
+
oauth_token?: string;
|
|
7649
|
+
/** Optional. Sort the results by a certain order. */
|
|
7650
|
+
orderBy?: string;
|
|
7651
|
+
/** Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. */
|
|
7652
|
+
pageSize?: number;
|
|
7653
|
+
/** Optional. A token identifying a page of results the server should return. */
|
|
7654
|
+
pageToken?: string;
|
|
7655
|
+
/** Required. The parent, in the form `projects/{project}/locations/global`. */
|
|
7656
|
+
parent: string;
|
|
7657
|
+
/** Returns response with indentations and line breaks. */
|
|
7658
|
+
prettyPrint?: boolean;
|
|
7659
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
7660
|
+
quotaUser?: string;
|
|
7661
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
7662
|
+
upload_protocol?: string;
|
|
7663
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
7664
|
+
uploadType?: string;
|
|
7665
|
+
}): Request<ListSACRealmsResponse>;
|
|
7666
|
+
}
|
|
7667
|
+
interface SecurityProfileGroupsResource {
|
|
7668
|
+
/** Creates a new SecurityProfileGroup in a given project and location. */
|
|
7669
|
+
create(request: {
|
|
7670
|
+
/** V1 error format. */
|
|
7671
|
+
'$.xgafv'?: '1' | '2';
|
|
7672
|
+
/** OAuth access token. */
|
|
7673
|
+
access_token?: string;
|
|
7674
|
+
/** Data format for response. */
|
|
7675
|
+
alt?: 'json' | 'media' | 'proto';
|
|
7676
|
+
/** JSONP */
|
|
7677
|
+
callback?: string;
|
|
7678
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
7679
|
+
fields?: string;
|
|
7680
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
7681
|
+
key?: string;
|
|
7682
|
+
/** OAuth 2.0 token for the current user. */
|
|
7683
|
+
oauth_token?: string;
|
|
7684
|
+
/** Required. The parent resource of the SecurityProfileGroup. Must be in the format `projects|organizations/*/locations/{location}`. */
|
|
7685
|
+
parent: string;
|
|
7686
|
+
/** Returns response with indentations and line breaks. */
|
|
7687
|
+
prettyPrint?: boolean;
|
|
7688
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
7689
|
+
quotaUser?: string;
|
|
7690
|
+
/** Required. Short name of the SecurityProfileGroup resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "security_profile_group1". */
|
|
7691
|
+
securityProfileGroupId?: string;
|
|
7692
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
7693
|
+
upload_protocol?: string;
|
|
7694
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
7695
|
+
uploadType?: string;
|
|
7696
|
+
/** Request body */
|
|
7697
|
+
resource: SecurityProfileGroup;
|
|
7698
|
+
}): Request<Operation>;
|
|
7699
|
+
create(
|
|
7700
|
+
request: {
|
|
7701
|
+
/** V1 error format. */
|
|
7702
|
+
'$.xgafv'?: '1' | '2';
|
|
7703
|
+
/** OAuth access token. */
|
|
7704
|
+
access_token?: string;
|
|
7705
|
+
/** Data format for response. */
|
|
7706
|
+
alt?: 'json' | 'media' | 'proto';
|
|
7707
|
+
/** JSONP */
|
|
7708
|
+
callback?: string;
|
|
7709
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
7710
|
+
fields?: string;
|
|
7711
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
7712
|
+
key?: string;
|
|
7713
|
+
/** OAuth 2.0 token for the current user. */
|
|
7714
|
+
oauth_token?: string;
|
|
7715
|
+
/** Required. The parent resource of the SecurityProfileGroup. Must be in the format `projects|organizations/*/locations/{location}`. */
|
|
7716
|
+
parent: string;
|
|
7717
|
+
/** Returns response with indentations and line breaks. */
|
|
7718
|
+
prettyPrint?: boolean;
|
|
7719
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
7720
|
+
quotaUser?: string;
|
|
7721
|
+
/** Required. Short name of the SecurityProfileGroup resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "security_profile_group1". */
|
|
7722
|
+
securityProfileGroupId?: string;
|
|
7723
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
7724
|
+
upload_protocol?: string;
|
|
7725
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
7726
|
+
uploadType?: string;
|
|
7727
|
+
},
|
|
7728
|
+
body: SecurityProfileGroup,
|
|
7729
|
+
): Request<Operation>;
|
|
7730
|
+
/** Deletes a single SecurityProfileGroup. */
|
|
7731
|
+
delete(request?: {
|
|
7732
|
+
/** V1 error format. */
|
|
7733
|
+
'$.xgafv'?: '1' | '2';
|
|
7734
|
+
/** OAuth access token. */
|
|
7735
|
+
access_token?: string;
|
|
7736
|
+
/** Data format for response. */
|
|
7737
|
+
alt?: 'json' | 'media' | 'proto';
|
|
7738
|
+
/** JSONP */
|
|
7739
|
+
callback?: string;
|
|
7740
|
+
/** Optional. If client provided etag is out of date, delete will return FAILED_PRECONDITION error. */
|
|
7741
|
+
etag?: string;
|
|
7742
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
7743
|
+
fields?: string;
|
|
7744
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
7745
|
+
key?: string;
|
|
7746
|
+
/** Required. A name of the SecurityProfileGroup to delete. Must be in the format `projects|organizations/*/locations/{location}/securityProfileGroups/{security_profile_group}`. */
|
|
7747
|
+
name: string;
|
|
7748
|
+
/** OAuth 2.0 token for the current user. */
|
|
7749
|
+
oauth_token?: string;
|
|
7750
|
+
/** Returns response with indentations and line breaks. */
|
|
7751
|
+
prettyPrint?: boolean;
|
|
7752
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
7753
|
+
quotaUser?: string;
|
|
7754
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
7755
|
+
upload_protocol?: string;
|
|
7756
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
7757
|
+
uploadType?: string;
|
|
7758
|
+
}): Request<Operation>;
|
|
7759
|
+
/** Gets details of a single SecurityProfileGroup. */
|
|
7760
|
+
get(request?: {
|
|
7761
|
+
/** V1 error format. */
|
|
7762
|
+
'$.xgafv'?: '1' | '2';
|
|
7763
|
+
/** OAuth access token. */
|
|
7764
|
+
access_token?: string;
|
|
7765
|
+
/** Data format for response. */
|
|
7766
|
+
alt?: 'json' | 'media' | 'proto';
|
|
7767
|
+
/** JSONP */
|
|
7768
|
+
callback?: string;
|
|
7769
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
7770
|
+
fields?: string;
|
|
7771
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
7772
|
+
key?: string;
|
|
7773
|
+
/** Required. A name of the SecurityProfileGroup to get. Must be in the format `projects|organizations/*/locations/{location}/securityProfileGroups/{security_profile_group}`. */
|
|
7774
|
+
name: string;
|
|
7775
|
+
/** OAuth 2.0 token for the current user. */
|
|
7776
|
+
oauth_token?: string;
|
|
7777
|
+
/** Returns response with indentations and line breaks. */
|
|
7778
|
+
prettyPrint?: boolean;
|
|
7779
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
7780
|
+
quotaUser?: string;
|
|
7781
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
7782
|
+
upload_protocol?: string;
|
|
7783
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
7784
|
+
uploadType?: string;
|
|
7785
|
+
}): Request<SecurityProfileGroup>;
|
|
7786
|
+
/** Lists SecurityProfileGroups in a given project and location. */
|
|
7787
|
+
list(request?: {
|
|
7788
|
+
/** V1 error format. */
|
|
7789
|
+
'$.xgafv'?: '1' | '2';
|
|
7790
|
+
/** OAuth access token. */
|
|
7791
|
+
access_token?: string;
|
|
7792
|
+
/** Data format for response. */
|
|
7793
|
+
alt?: 'json' | 'media' | 'proto';
|
|
7794
|
+
/** JSONP */
|
|
7795
|
+
callback?: string;
|
|
7796
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
7797
|
+
fields?: string;
|
|
7798
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
7799
|
+
key?: string;
|
|
7800
|
+
/** OAuth 2.0 token for the current user. */
|
|
7801
|
+
oauth_token?: string;
|
|
7802
|
+
/** Optional. Maximum number of SecurityProfileGroups to return per call. */
|
|
7803
|
+
pageSize?: number;
|
|
7804
|
+
/** Optional. The value returned by the last `ListSecurityProfileGroupsResponse` Indicates that this is a continuation of a prior `ListSecurityProfileGroups` call, and that the system should return the next page of data. */
|
|
7805
|
+
pageToken?: string;
|
|
7806
|
+
/** Required. The project or organization and location from which the SecurityProfileGroups should be listed, specified in the format `projects|organizations/*/locations/{location}`. */
|
|
7807
|
+
parent: string;
|
|
7808
|
+
/** Returns response with indentations and line breaks. */
|
|
7809
|
+
prettyPrint?: boolean;
|
|
7810
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
7811
|
+
quotaUser?: string;
|
|
7812
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
7813
|
+
upload_protocol?: string;
|
|
7814
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
7815
|
+
uploadType?: string;
|
|
7816
|
+
}): Request<ListSecurityProfileGroupsResponse>;
|
|
7817
|
+
/** Updates the parameters of a single SecurityProfileGroup. */
|
|
7818
|
+
patch(request: {
|
|
7819
|
+
/** V1 error format. */
|
|
7820
|
+
'$.xgafv'?: '1' | '2';
|
|
7821
|
+
/** OAuth access token. */
|
|
7822
|
+
access_token?: string;
|
|
7823
|
+
/** Data format for response. */
|
|
7824
|
+
alt?: 'json' | 'media' | 'proto';
|
|
7825
|
+
/** JSONP */
|
|
7826
|
+
callback?: string;
|
|
7827
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
7828
|
+
fields?: string;
|
|
7829
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
7830
|
+
key?: string;
|
|
7831
|
+
/** Immutable. Identifier. Name of the SecurityProfileGroup resource. It matches pattern `projects|organizations/*/locations/{location}/securityProfileGroups/{security_profile_group}`. */
|
|
7832
|
+
name: string;
|
|
7833
|
+
/** OAuth 2.0 token for the current user. */
|
|
7834
|
+
oauth_token?: string;
|
|
7835
|
+
/** Returns response with indentations and line breaks. */
|
|
7836
|
+
prettyPrint?: boolean;
|
|
7837
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
7838
|
+
quotaUser?: string;
|
|
7839
|
+
/** Required. Field mask is used to specify the fields to be overwritten in the SecurityProfileGroup resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. */
|
|
7840
|
+
updateMask?: string;
|
|
7841
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
7842
|
+
upload_protocol?: string;
|
|
7843
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
7844
|
+
uploadType?: string;
|
|
7845
|
+
/** Request body */
|
|
7846
|
+
resource: SecurityProfileGroup;
|
|
7847
|
+
}): Request<Operation>;
|
|
7848
|
+
patch(
|
|
7849
|
+
request: {
|
|
7850
|
+
/** V1 error format. */
|
|
7851
|
+
'$.xgafv'?: '1' | '2';
|
|
7852
|
+
/** OAuth access token. */
|
|
7853
|
+
access_token?: string;
|
|
7854
|
+
/** Data format for response. */
|
|
7855
|
+
alt?: 'json' | 'media' | 'proto';
|
|
7856
|
+
/** JSONP */
|
|
7857
|
+
callback?: string;
|
|
7858
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
7859
|
+
fields?: string;
|
|
7860
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
7861
|
+
key?: string;
|
|
7862
|
+
/** Immutable. Identifier. Name of the SecurityProfileGroup resource. It matches pattern `projects|organizations/*/locations/{location}/securityProfileGroups/{security_profile_group}`. */
|
|
7863
|
+
name: string;
|
|
7864
|
+
/** OAuth 2.0 token for the current user. */
|
|
7865
|
+
oauth_token?: string;
|
|
7866
|
+
/** Returns response with indentations and line breaks. */
|
|
7867
|
+
prettyPrint?: boolean;
|
|
7868
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
7869
|
+
quotaUser?: string;
|
|
7870
|
+
/** Required. Field mask is used to specify the fields to be overwritten in the SecurityProfileGroup resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. */
|
|
7871
|
+
updateMask?: string;
|
|
7872
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
7873
|
+
upload_protocol?: string;
|
|
7874
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
7875
|
+
uploadType?: string;
|
|
7876
|
+
},
|
|
7877
|
+
body: SecurityProfileGroup,
|
|
7878
|
+
): Request<Operation>;
|
|
7879
|
+
}
|
|
7880
|
+
interface SecurityProfilesResource {
|
|
7881
|
+
/** Creates a new SecurityProfile in a given project and location. */
|
|
7882
|
+
create(request: {
|
|
7883
|
+
/** V1 error format. */
|
|
7884
|
+
'$.xgafv'?: '1' | '2';
|
|
7885
|
+
/** OAuth access token. */
|
|
7886
|
+
access_token?: string;
|
|
7887
|
+
/** Data format for response. */
|
|
7888
|
+
alt?: 'json' | 'media' | 'proto';
|
|
7889
|
+
/** JSONP */
|
|
7890
|
+
callback?: string;
|
|
7891
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
7892
|
+
fields?: string;
|
|
7893
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
7894
|
+
key?: string;
|
|
7895
|
+
/** OAuth 2.0 token for the current user. */
|
|
7896
|
+
oauth_token?: string;
|
|
7897
|
+
/** Required. The parent resource of the SecurityProfile. Must be in the format `projects|organizations/*/locations/{location}`. */
|
|
7898
|
+
parent: string;
|
|
7899
|
+
/** Returns response with indentations and line breaks. */
|
|
7900
|
+
prettyPrint?: boolean;
|
|
7901
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
7902
|
+
quotaUser?: string;
|
|
7903
|
+
/** Required. Short name of the SecurityProfile resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "security_profile1". */
|
|
7904
|
+
securityProfileId?: string;
|
|
7905
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
7906
|
+
upload_protocol?: string;
|
|
7907
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
7908
|
+
uploadType?: string;
|
|
7909
|
+
/** Request body */
|
|
7910
|
+
resource: SecurityProfile;
|
|
7911
|
+
}): Request<Operation>;
|
|
7912
|
+
create(
|
|
7913
|
+
request: {
|
|
7914
|
+
/** V1 error format. */
|
|
7915
|
+
'$.xgafv'?: '1' | '2';
|
|
7916
|
+
/** OAuth access token. */
|
|
7917
|
+
access_token?: string;
|
|
7918
|
+
/** Data format for response. */
|
|
7919
|
+
alt?: 'json' | 'media' | 'proto';
|
|
7920
|
+
/** JSONP */
|
|
7921
|
+
callback?: string;
|
|
7922
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
7923
|
+
fields?: string;
|
|
7924
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
7925
|
+
key?: string;
|
|
7926
|
+
/** OAuth 2.0 token for the current user. */
|
|
7927
|
+
oauth_token?: string;
|
|
7928
|
+
/** Required. The parent resource of the SecurityProfile. Must be in the format `projects|organizations/*/locations/{location}`. */
|
|
7929
|
+
parent: string;
|
|
7930
|
+
/** Returns response with indentations and line breaks. */
|
|
7931
|
+
prettyPrint?: boolean;
|
|
7932
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
7933
|
+
quotaUser?: string;
|
|
7934
|
+
/** Required. Short name of the SecurityProfile resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "security_profile1". */
|
|
7935
|
+
securityProfileId?: string;
|
|
7936
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
7937
|
+
upload_protocol?: string;
|
|
7938
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
7939
|
+
uploadType?: string;
|
|
7940
|
+
},
|
|
7941
|
+
body: SecurityProfile,
|
|
7942
|
+
): Request<Operation>;
|
|
7943
|
+
/** Deletes a single SecurityProfile. */
|
|
7944
|
+
delete(request?: {
|
|
7945
|
+
/** V1 error format. */
|
|
7946
|
+
'$.xgafv'?: '1' | '2';
|
|
7947
|
+
/** OAuth access token. */
|
|
7948
|
+
access_token?: string;
|
|
7949
|
+
/** Data format for response. */
|
|
7950
|
+
alt?: 'json' | 'media' | 'proto';
|
|
7951
|
+
/** JSONP */
|
|
7952
|
+
callback?: string;
|
|
7953
|
+
/** Optional. If client provided etag is out of date, delete will return FAILED_PRECONDITION error. */
|
|
7954
|
+
etag?: string;
|
|
7955
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
7956
|
+
fields?: string;
|
|
7957
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
7958
|
+
key?: string;
|
|
7959
|
+
/** Required. A name of the SecurityProfile to delete. Must be in the format `projects|organizations/*/locations/{location}/securityProfiles/{security_profile_id}`. */
|
|
7960
|
+
name: string;
|
|
7961
|
+
/** OAuth 2.0 token for the current user. */
|
|
7962
|
+
oauth_token?: string;
|
|
7963
|
+
/** Returns response with indentations and line breaks. */
|
|
7964
|
+
prettyPrint?: boolean;
|
|
7965
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
7966
|
+
quotaUser?: string;
|
|
7967
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
7968
|
+
upload_protocol?: string;
|
|
7969
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
7970
|
+
uploadType?: string;
|
|
7971
|
+
}): Request<Operation>;
|
|
7972
|
+
/** Gets details of a single SecurityProfile. */
|
|
7973
|
+
get(request?: {
|
|
7974
|
+
/** V1 error format. */
|
|
7975
|
+
'$.xgafv'?: '1' | '2';
|
|
7976
|
+
/** OAuth access token. */
|
|
7977
|
+
access_token?: string;
|
|
7978
|
+
/** Data format for response. */
|
|
7979
|
+
alt?: 'json' | 'media' | 'proto';
|
|
7980
|
+
/** JSONP */
|
|
7981
|
+
callback?: string;
|
|
7982
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
7983
|
+
fields?: string;
|
|
7984
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
7985
|
+
key?: string;
|
|
7986
|
+
/** Required. A name of the SecurityProfile to get. Must be in the format `projects|organizations/*/locations/{location}/securityProfiles/{security_profile_id}`. */
|
|
7987
|
+
name: string;
|
|
7988
|
+
/** OAuth 2.0 token for the current user. */
|
|
7989
|
+
oauth_token?: string;
|
|
7990
|
+
/** Returns response with indentations and line breaks. */
|
|
7991
|
+
prettyPrint?: boolean;
|
|
7992
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
7993
|
+
quotaUser?: string;
|
|
7994
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
7995
|
+
upload_protocol?: string;
|
|
7996
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
7997
|
+
uploadType?: string;
|
|
7998
|
+
}): Request<SecurityProfile>;
|
|
7999
|
+
/** Lists SecurityProfiles in a given project and location. */
|
|
8000
|
+
list(request?: {
|
|
8001
|
+
/** V1 error format. */
|
|
8002
|
+
'$.xgafv'?: '1' | '2';
|
|
8003
|
+
/** OAuth access token. */
|
|
8004
|
+
access_token?: string;
|
|
8005
|
+
/** Data format for response. */
|
|
8006
|
+
alt?: 'json' | 'media' | 'proto';
|
|
8007
|
+
/** JSONP */
|
|
8008
|
+
callback?: string;
|
|
8009
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
8010
|
+
fields?: string;
|
|
8011
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
8012
|
+
key?: string;
|
|
8013
|
+
/** OAuth 2.0 token for the current user. */
|
|
8014
|
+
oauth_token?: string;
|
|
8015
|
+
/** Optional. Maximum number of SecurityProfiles to return per call. */
|
|
8016
|
+
pageSize?: number;
|
|
8017
|
+
/** Optional. The value returned by the last `ListSecurityProfilesResponse` Indicates that this is a continuation of a prior `ListSecurityProfiles` call, and that the system should return the next page of data. */
|
|
8018
|
+
pageToken?: string;
|
|
8019
|
+
/** Required. The project or organization and location from which the SecurityProfiles should be listed, specified in the format `projects|organizations/*/locations/{location}`. */
|
|
8020
|
+
parent: string;
|
|
8021
|
+
/** Returns response with indentations and line breaks. */
|
|
8022
|
+
prettyPrint?: boolean;
|
|
8023
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
8024
|
+
quotaUser?: string;
|
|
8025
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
8026
|
+
upload_protocol?: string;
|
|
8027
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
8028
|
+
uploadType?: string;
|
|
8029
|
+
}): Request<ListSecurityProfilesResponse>;
|
|
8030
|
+
/** Updates the parameters of a single SecurityProfile. */
|
|
8031
|
+
patch(request: {
|
|
8032
|
+
/** V1 error format. */
|
|
8033
|
+
'$.xgafv'?: '1' | '2';
|
|
8034
|
+
/** OAuth access token. */
|
|
8035
|
+
access_token?: string;
|
|
8036
|
+
/** Data format for response. */
|
|
8037
|
+
alt?: 'json' | 'media' | 'proto';
|
|
8038
|
+
/** JSONP */
|
|
8039
|
+
callback?: string;
|
|
8040
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
8041
|
+
fields?: string;
|
|
8042
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
8043
|
+
key?: string;
|
|
8044
|
+
/** Immutable. Identifier. Name of the SecurityProfile resource. It matches pattern `projects|organizations/*/locations/{location}/securityProfiles/{security_profile}`. */
|
|
8045
|
+
name: string;
|
|
8046
|
+
/** OAuth 2.0 token for the current user. */
|
|
8047
|
+
oauth_token?: string;
|
|
8048
|
+
/** Returns response with indentations and line breaks. */
|
|
8049
|
+
prettyPrint?: boolean;
|
|
8050
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
8051
|
+
quotaUser?: string;
|
|
8052
|
+
/** Required. Field mask is used to specify the fields to be overwritten in the SecurityProfile resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. */
|
|
8053
|
+
updateMask?: string;
|
|
8054
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
8055
|
+
upload_protocol?: string;
|
|
8056
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
8057
|
+
uploadType?: string;
|
|
8058
|
+
/** Request body */
|
|
8059
|
+
resource: SecurityProfile;
|
|
8060
|
+
}): Request<Operation>;
|
|
8061
|
+
patch(
|
|
8062
|
+
request: {
|
|
8063
|
+
/** V1 error format. */
|
|
8064
|
+
'$.xgafv'?: '1' | '2';
|
|
8065
|
+
/** OAuth access token. */
|
|
8066
|
+
access_token?: string;
|
|
8067
|
+
/** Data format for response. */
|
|
8068
|
+
alt?: 'json' | 'media' | 'proto';
|
|
8069
|
+
/** JSONP */
|
|
8070
|
+
callback?: string;
|
|
8071
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
8072
|
+
fields?: string;
|
|
8073
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
8074
|
+
key?: string;
|
|
8075
|
+
/** Immutable. Identifier. Name of the SecurityProfile resource. It matches pattern `projects|organizations/*/locations/{location}/securityProfiles/{security_profile}`. */
|
|
8076
|
+
name: string;
|
|
8077
|
+
/** OAuth 2.0 token for the current user. */
|
|
8078
|
+
oauth_token?: string;
|
|
8079
|
+
/** Returns response with indentations and line breaks. */
|
|
8080
|
+
prettyPrint?: boolean;
|
|
8081
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
8082
|
+
quotaUser?: string;
|
|
8083
|
+
/** Required. Field mask is used to specify the fields to be overwritten in the SecurityProfile resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. */
|
|
8084
|
+
updateMask?: string;
|
|
8085
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
8086
|
+
upload_protocol?: string;
|
|
8087
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
8088
|
+
uploadType?: string;
|
|
8089
|
+
},
|
|
8090
|
+
body: SecurityProfile,
|
|
8091
|
+
): Request<Operation>;
|
|
8092
|
+
}
|
|
8093
|
+
interface ServerTlsPoliciesResource {
|
|
8094
|
+
/** Creates a new ServerTlsPolicy in a given project and location. */
|
|
8095
|
+
create(request: {
|
|
8096
|
+
/** V1 error format. */
|
|
8097
|
+
'$.xgafv'?: '1' | '2';
|
|
8098
|
+
/** OAuth access token. */
|
|
8099
|
+
access_token?: string;
|
|
8100
|
+
/** Data format for response. */
|
|
8101
|
+
alt?: 'json' | 'media' | 'proto';
|
|
8102
|
+
/** JSONP */
|
|
8103
|
+
callback?: string;
|
|
8104
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
8105
|
+
fields?: string;
|
|
8106
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
8107
|
+
key?: string;
|
|
8108
|
+
/** OAuth 2.0 token for the current user. */
|
|
8109
|
+
oauth_token?: string;
|
|
8110
|
+
/** Required. The parent resource of the ServerTlsPolicy. Must be in the format `projects/*/locations/{location}`. */
|
|
8111
|
+
parent: string;
|
|
8112
|
+
/** Returns response with indentations and line breaks. */
|
|
8113
|
+
prettyPrint?: boolean;
|
|
8114
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
8115
|
+
quotaUser?: string;
|
|
8116
|
+
/** Required. Short name of the ServerTlsPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "server_mtls_policy". */
|
|
8117
|
+
serverTlsPolicyId?: string;
|
|
8118
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
8119
|
+
upload_protocol?: string;
|
|
8120
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
8121
|
+
uploadType?: string;
|
|
8122
|
+
/** Request body */
|
|
8123
|
+
resource: ServerTlsPolicy;
|
|
8124
|
+
}): Request<Operation>;
|
|
8125
|
+
create(
|
|
8126
|
+
request: {
|
|
8127
|
+
/** V1 error format. */
|
|
8128
|
+
'$.xgafv'?: '1' | '2';
|
|
8129
|
+
/** OAuth access token. */
|
|
8130
|
+
access_token?: string;
|
|
8131
|
+
/** Data format for response. */
|
|
8132
|
+
alt?: 'json' | 'media' | 'proto';
|
|
8133
|
+
/** JSONP */
|
|
8134
|
+
callback?: string;
|
|
8135
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
8136
|
+
fields?: string;
|
|
8137
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
8138
|
+
key?: string;
|
|
8139
|
+
/** OAuth 2.0 token for the current user. */
|
|
8140
|
+
oauth_token?: string;
|
|
8141
|
+
/** Required. The parent resource of the ServerTlsPolicy. Must be in the format `projects/*/locations/{location}`. */
|
|
8142
|
+
parent: string;
|
|
8143
|
+
/** Returns response with indentations and line breaks. */
|
|
8144
|
+
prettyPrint?: boolean;
|
|
8145
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
8146
|
+
quotaUser?: string;
|
|
8147
|
+
/** Required. Short name of the ServerTlsPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "server_mtls_policy". */
|
|
8148
|
+
serverTlsPolicyId?: string;
|
|
8149
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
8150
|
+
upload_protocol?: string;
|
|
8151
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
8152
|
+
uploadType?: string;
|
|
8153
|
+
},
|
|
8154
|
+
body: ServerTlsPolicy,
|
|
8155
|
+
): Request<Operation>;
|
|
8156
|
+
/** Deletes a single ServerTlsPolicy. */
|
|
8157
|
+
delete(request?: {
|
|
8158
|
+
/** V1 error format. */
|
|
8159
|
+
'$.xgafv'?: '1' | '2';
|
|
8160
|
+
/** OAuth access token. */
|
|
8161
|
+
access_token?: string;
|
|
8162
|
+
/** Data format for response. */
|
|
8163
|
+
alt?: 'json' | 'media' | 'proto';
|
|
8164
|
+
/** JSONP */
|
|
8165
|
+
callback?: string;
|
|
8166
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
8167
|
+
fields?: string;
|
|
8168
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
8169
|
+
key?: string;
|
|
8170
|
+
/** Required. A name of the ServerTlsPolicy to delete. Must be in the format `projects/*/locations/{location}/serverTlsPolicies/*`. */
|
|
8171
|
+
name: string;
|
|
8172
|
+
/** OAuth 2.0 token for the current user. */
|
|
8173
|
+
oauth_token?: string;
|
|
8174
|
+
/** Returns response with indentations and line breaks. */
|
|
8175
|
+
prettyPrint?: boolean;
|
|
8176
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
8177
|
+
quotaUser?: string;
|
|
8178
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
8179
|
+
upload_protocol?: string;
|
|
8180
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
8181
|
+
uploadType?: string;
|
|
8182
|
+
}): Request<Operation>;
|
|
8183
|
+
/** Gets details of a single ServerTlsPolicy. */
|
|
8184
|
+
get(request?: {
|
|
8185
|
+
/** V1 error format. */
|
|
8186
|
+
'$.xgafv'?: '1' | '2';
|
|
8187
|
+
/** OAuth access token. */
|
|
8188
|
+
access_token?: string;
|
|
8189
|
+
/** Data format for response. */
|
|
8190
|
+
alt?: 'json' | 'media' | 'proto';
|
|
8191
|
+
/** JSONP */
|
|
8192
|
+
callback?: string;
|
|
8193
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
8194
|
+
fields?: string;
|
|
8195
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
8196
|
+
key?: string;
|
|
8197
|
+
/** Required. A name of the ServerTlsPolicy to get. Must be in the format `projects/*/locations/{location}/serverTlsPolicies/*`. */
|
|
8198
|
+
name: string;
|
|
8199
|
+
/** OAuth 2.0 token for the current user. */
|
|
8200
|
+
oauth_token?: string;
|
|
8201
|
+
/** Returns response with indentations and line breaks. */
|
|
8202
|
+
prettyPrint?: boolean;
|
|
8203
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
8204
|
+
quotaUser?: string;
|
|
8205
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
8206
|
+
upload_protocol?: string;
|
|
8207
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
8208
|
+
uploadType?: string;
|
|
8209
|
+
}): Request<ServerTlsPolicy>;
|
|
8210
|
+
/** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
|
|
8211
|
+
getIamPolicy(request?: {
|
|
8212
|
+
/** V1 error format. */
|
|
8213
|
+
'$.xgafv'?: '1' | '2';
|
|
8214
|
+
/** OAuth access token. */
|
|
8215
|
+
access_token?: string;
|
|
8216
|
+
/** Data format for response. */
|
|
8217
|
+
alt?: 'json' | 'media' | 'proto';
|
|
8218
|
+
/** JSONP */
|
|
8219
|
+
callback?: string;
|
|
8220
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
8221
|
+
fields?: string;
|
|
8222
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
8223
|
+
key?: string;
|
|
8224
|
+
/** OAuth 2.0 token for the current user. */
|
|
8225
|
+
oauth_token?: string;
|
|
8226
|
+
/** Optional. The maximum policy version that will be used to format the policy. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. Requests for policies with any conditional role bindings must specify version 3. Policies with no conditional role bindings may specify any valid value or leave the field unset. The policy in the response might use the policy version that you specified, or it might use a lower policy version. For example, if you specify version 3, but the policy has no conditional role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). */
|
|
8227
|
+
'options.requestedPolicyVersion'?: number;
|
|
8228
|
+
/** Returns response with indentations and line breaks. */
|
|
8229
|
+
prettyPrint?: boolean;
|
|
8230
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
8231
|
+
quotaUser?: string;
|
|
8232
|
+
/** REQUIRED: The resource for which the policy is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field. */
|
|
8233
|
+
resource: string;
|
|
8234
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
8235
|
+
upload_protocol?: string;
|
|
8236
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
8237
|
+
uploadType?: string;
|
|
8238
|
+
}): Request<GoogleIamV1Policy>;
|
|
8239
|
+
/** Lists ServerTlsPolicies in a given project and location. */
|
|
8240
|
+
list(request?: {
|
|
8241
|
+
/** V1 error format. */
|
|
8242
|
+
'$.xgafv'?: '1' | '2';
|
|
8243
|
+
/** OAuth access token. */
|
|
8244
|
+
access_token?: string;
|
|
8245
|
+
/** Data format for response. */
|
|
8246
|
+
alt?: 'json' | 'media' | 'proto';
|
|
8247
|
+
/** JSONP */
|
|
8248
|
+
callback?: string;
|
|
8249
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
8250
|
+
fields?: string;
|
|
8251
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
8252
|
+
key?: string;
|
|
8253
|
+
/** OAuth 2.0 token for the current user. */
|
|
8254
|
+
oauth_token?: string;
|
|
8255
|
+
/** Maximum number of ServerTlsPolicies to return per call. */
|
|
7102
8256
|
pageSize?: number;
|
|
7103
8257
|
/** The value returned by the last `ListServerTlsPoliciesResponse` Indicates that this is a continuation of a prior `ListServerTlsPolicies` call, and that the system should return the next page of data. */
|
|
7104
8258
|
pageToken?: string;
|
|
@@ -7690,7 +8844,7 @@ declare namespace gapi.client {
|
|
|
7690
8844
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
7691
8845
|
uploadType?: string;
|
|
7692
8846
|
}): Request<Location>;
|
|
7693
|
-
/** Lists information about the supported locations for this service. This method
|
|
8847
|
+
/** Lists information about the supported locations for this service. This method lists locations based on the resource scope provided in the ListLocationsRequest.name field: * **Global locations**: If `name` is empty, the method lists the public locations available to all projects. * **Project-specific locations**: If `name` follows the format `projects/{project}`, the method lists locations visible to that specific project. This includes public, private, or other project-specific locations enabled for the project. For gRPC and client library implementations, the resource name is passed as the `name` field. For direct service calls, the resource name is incorporated into the request path based on the specific service implementation and version. */
|
|
7694
8848
|
list(request?: {
|
|
7695
8849
|
/** V1 error format. */
|
|
7696
8850
|
'$.xgafv'?: '1' | '2';
|
|
@@ -7700,7 +8854,7 @@ declare namespace gapi.client {
|
|
|
7700
8854
|
alt?: 'json' | 'media' | 'proto';
|
|
7701
8855
|
/** JSONP */
|
|
7702
8856
|
callback?: string;
|
|
7703
|
-
/** Optional. Do not use this field
|
|
8857
|
+
/** Optional. Do not use this field unless explicitly documented otherwise. This is primarily for internal usage. */
|
|
7704
8858
|
extraLocationTypes?: string | string[];
|
|
7705
8859
|
/** Selector specifying which fields to include in a partial response. */
|
|
7706
8860
|
fields?: string;
|
|
@@ -7732,6 +8886,7 @@ declare namespace gapi.client {
|
|
|
7732
8886
|
clientTlsPolicies: ClientTlsPoliciesResource;
|
|
7733
8887
|
dnsThreatDetectors: DnsThreatDetectorsResource;
|
|
7734
8888
|
firewallEndpointAssociations: FirewallEndpointAssociationsResource;
|
|
8889
|
+
firewallEndpoints: FirewallEndpointsResource;
|
|
7735
8890
|
gatewaySecurityPolicies: GatewaySecurityPoliciesResource;
|
|
7736
8891
|
interceptDeploymentGroups: InterceptDeploymentGroupsResource;
|
|
7737
8892
|
interceptDeployments: InterceptDeploymentsResource;
|
|
@@ -7742,6 +8897,10 @@ declare namespace gapi.client {
|
|
|
7742
8897
|
mirroringEndpointGroupAssociations: MirroringEndpointGroupAssociationsResource;
|
|
7743
8898
|
mirroringEndpointGroups: MirroringEndpointGroupsResource;
|
|
7744
8899
|
operations: OperationsResource;
|
|
8900
|
+
sacAttachments: SacAttachmentsResource;
|
|
8901
|
+
sacRealms: SacRealmsResource;
|
|
8902
|
+
securityProfileGroups: SecurityProfileGroupsResource;
|
|
8903
|
+
securityProfiles: SecurityProfilesResource;
|
|
7745
8904
|
serverTlsPolicies: ServerTlsPoliciesResource;
|
|
7746
8905
|
tlsInspectionPolicies: TlsInspectionPoliciesResource;
|
|
7747
8906
|
urlLists: UrlListsResource;
|