@maxim_mazurok/gapi.client.networksecurity-v1beta1 0.0.20250428 → 0.0.20250514
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 +397 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://networksecurity.googleapis.com/$discovery/rest?version=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250514
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -113,8 +113,6 @@ declare namespace gapi.client {
|
|
|
113
113
|
sources?: AuthzPolicyAuthzRuleFromRequestSource[];
|
|
114
114
|
}
|
|
115
115
|
interface AuthzPolicyAuthzRuleFromRequestSource {
|
|
116
|
-
/** Optional. A list of identities derived from the client's certificate. This field is under development and we don't recommend using it at this time. Limited to 5 principals. */
|
|
117
|
-
principals?: AuthzPolicyAuthzRuleStringMatch[];
|
|
118
116
|
/** Optional. A list of resources to match against the resource of the source VM of a request. Limited to 5 resources. */
|
|
119
117
|
resources?: AuthzPolicyAuthzRuleRequestResource[];
|
|
120
118
|
}
|
|
@@ -679,6 +677,22 @@ declare namespace gapi.client {
|
|
|
679
677
|
/** A list of operations that matches the specified filter in the request. */
|
|
680
678
|
operations?: Operation[];
|
|
681
679
|
}
|
|
680
|
+
interface ListSACAttachmentsResponse {
|
|
681
|
+
/** A token identifying a page of results the server should return. */
|
|
682
|
+
nextPageToken?: string;
|
|
683
|
+
/** The list of SACAttachments */
|
|
684
|
+
sacAttachments?: SACAttachment[];
|
|
685
|
+
/** Locations that could not be reached. */
|
|
686
|
+
unreachable?: string[];
|
|
687
|
+
}
|
|
688
|
+
interface ListSACRealmsResponse {
|
|
689
|
+
/** A token identifying a page of results the server should return. */
|
|
690
|
+
nextPageToken?: string;
|
|
691
|
+
/** The list of SACRealms */
|
|
692
|
+
sacRealms?: SACRealm[];
|
|
693
|
+
/** Locations that could not be reached. */
|
|
694
|
+
unreachable?: string[];
|
|
695
|
+
}
|
|
682
696
|
interface ListSecurityProfileGroupsResponse {
|
|
683
697
|
/** 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`. */
|
|
684
698
|
nextPageToken?: string;
|
|
@@ -899,6 +913,66 @@ declare namespace gapi.client {
|
|
|
899
913
|
/** 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. */
|
|
900
914
|
sources?: Source[];
|
|
901
915
|
}
|
|
916
|
+
interface SACAttachment {
|
|
917
|
+
/** Optional. ISO-3166 alpha 2 country code used for localization. Only used for Symantec's API today, and is optional even for gateways connected to Symantec, since Symantec applies a default if we don't specify it. Not case-sensitive, since it will be upper-cased when sending to Symantec API. */
|
|
918
|
+
country?: string;
|
|
919
|
+
/** Output only. [Output only] Timestamp when the attachment was created. */
|
|
920
|
+
createTime?: string;
|
|
921
|
+
/** Optional. Optional list of labels applied to the resource. */
|
|
922
|
+
labels?: {[P in string]: string};
|
|
923
|
+
/** Identifier. Resource name, in the form `projects/{project}/locations/{location}/sacAttachments/{sac_attachment}`. */
|
|
924
|
+
name?: string;
|
|
925
|
+
/** Required. Name of the NCC Gateway which connects to the attachment. ID or full URI can be specified. Full URI is stored either way,in the form `projects/{project}/locations/{location}/spokes/{ncc_gateway}`. */
|
|
926
|
+
nccGateway?: string;
|
|
927
|
+
/** Required. Name of the SAC Realm which owns the attachment. The input can be either an ID for a full name. The output will always be the full name using project number instead of project ID. The format is `projects/{project_number}/locations/{location}/sacRealms/{sac_realm}`. */
|
|
928
|
+
sacRealm?: string;
|
|
929
|
+
/** Output only. [Output only] State of the attachment. */
|
|
930
|
+
state?: string;
|
|
931
|
+
/** Optional. Required iff the associated realm is of type SYMANTEC_CLOUD_SWG. */
|
|
932
|
+
symantecOptions?: SACAttachmentSACAttachmentSymantecOptions;
|
|
933
|
+
/** Optional. tzinfo identifier used for localization. Only used for Symantec's API today, and is optional even for gateways connected to Symantec, since Symantec applies a default if we don't specify it. Case sensitive. */
|
|
934
|
+
timeZone?: string;
|
|
935
|
+
/** Output only. [Output only] Timestamp when the attachment was last updated. */
|
|
936
|
+
updateTime?: string;
|
|
937
|
+
}
|
|
938
|
+
interface SACAttachmentSACAttachmentSymantecOptions {
|
|
939
|
+
/** Immutable. Name to be used for when creating a Location on the customer's behalf in Symantec's Location API. Required iff sac_realm uses SYMANTEC_CLOUD_SWG. Not to be confused with GCP locations. */
|
|
940
|
+
symantecLocationName?: string;
|
|
941
|
+
/** Immutable. Symantec data center identifier that this Attachment will connect to. Required iff sac_realm uses SYMANTEC_CLOUD_SWG. */
|
|
942
|
+
symantecSite?: string;
|
|
943
|
+
}
|
|
944
|
+
interface SACRealm {
|
|
945
|
+
/** Output only. [Output only] Create time stamp */
|
|
946
|
+
createTime?: string;
|
|
947
|
+
/** Optional. Labels as key value pairs */
|
|
948
|
+
labels?: {[P in string]: string};
|
|
949
|
+
/** Identifier. Resource name. It matches the pattern `projects/{project}/locations/{location}/sacRealms/{sacRealm}` */
|
|
950
|
+
name?: string;
|
|
951
|
+
/** Output only. [Output only] Key to be shared with SSE service provider to establish global handshake */
|
|
952
|
+
pairingKey?: SACRealmPairingKey;
|
|
953
|
+
/** Immutable. SSE service provider */
|
|
954
|
+
securityService?: string;
|
|
955
|
+
/** Output only. [Output only] State of the realm */
|
|
956
|
+
state?: string;
|
|
957
|
+
/** Optional. Required only if using SYMANTEC_CLOUD_SWG. */
|
|
958
|
+
symantecOptions?: SACRealmSACRealmSymantecOptions;
|
|
959
|
+
/** Output only. [Output only] Update time stamp */
|
|
960
|
+
updateTime?: string;
|
|
961
|
+
}
|
|
962
|
+
interface SACRealmPairingKey {
|
|
963
|
+
/** Output only. Timestamp in UTC of when this resource is considered expired. */
|
|
964
|
+
expireTime?: string;
|
|
965
|
+
/** Output only. The name of the key. It expires 7 days after creation. */
|
|
966
|
+
key?: string;
|
|
967
|
+
}
|
|
968
|
+
interface SACRealmSACRealmSymantecOptions {
|
|
969
|
+
/** Output only. Symantec site IDs that the user can choose to connect to. */
|
|
970
|
+
availableSymantecSites?: string[];
|
|
971
|
+
/** Optional. A secret ID or secret name can be specified, but it will be parsed and stored as secret URI in the format of "projects/{PROJECT_NUMBER}/secrets/my-secret". */
|
|
972
|
+
secretPath?: string;
|
|
973
|
+
/** Output only. [Output only] Connection status to Symantec API. */
|
|
974
|
+
symantecConnectionState?: string;
|
|
975
|
+
}
|
|
902
976
|
interface SecurityProfile {
|
|
903
977
|
/** Output only. Resource creation timestamp. */
|
|
904
978
|
createTime?: string;
|
|
@@ -6512,6 +6586,324 @@ declare namespace gapi.client {
|
|
|
6512
6586
|
uploadType?: string;
|
|
6513
6587
|
}): Request<ListOperationsResponse>;
|
|
6514
6588
|
}
|
|
6589
|
+
interface SacAttachmentsResource {
|
|
6590
|
+
/** Creates a new SACAttachment in a given project and location. */
|
|
6591
|
+
create(request: {
|
|
6592
|
+
/** V1 error format. */
|
|
6593
|
+
'$.xgafv'?: string;
|
|
6594
|
+
/** OAuth access token. */
|
|
6595
|
+
access_token?: string;
|
|
6596
|
+
/** Data format for response. */
|
|
6597
|
+
alt?: string;
|
|
6598
|
+
/** JSONP */
|
|
6599
|
+
callback?: string;
|
|
6600
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
6601
|
+
fields?: string;
|
|
6602
|
+
/** 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. */
|
|
6603
|
+
key?: string;
|
|
6604
|
+
/** OAuth 2.0 token for the current user. */
|
|
6605
|
+
oauth_token?: string;
|
|
6606
|
+
/** Required. Value for parent. */
|
|
6607
|
+
parent: string;
|
|
6608
|
+
/** Returns response with indentations and line breaks. */
|
|
6609
|
+
prettyPrint?: boolean;
|
|
6610
|
+
/** 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. */
|
|
6611
|
+
quotaUser?: string;
|
|
6612
|
+
/** 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). */
|
|
6613
|
+
requestId?: string;
|
|
6614
|
+
/** Required. Id of the requesting object If auto-generating Id server-side, remove this field and sac_attachment_id from the method_signature of Create RPC */
|
|
6615
|
+
sacAttachmentId?: string;
|
|
6616
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6617
|
+
upload_protocol?: string;
|
|
6618
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6619
|
+
uploadType?: string;
|
|
6620
|
+
/** Request body */
|
|
6621
|
+
resource: SACAttachment;
|
|
6622
|
+
}): Request<Operation>;
|
|
6623
|
+
create(
|
|
6624
|
+
request: {
|
|
6625
|
+
/** V1 error format. */
|
|
6626
|
+
'$.xgafv'?: string;
|
|
6627
|
+
/** OAuth access token. */
|
|
6628
|
+
access_token?: string;
|
|
6629
|
+
/** Data format for response. */
|
|
6630
|
+
alt?: string;
|
|
6631
|
+
/** JSONP */
|
|
6632
|
+
callback?: string;
|
|
6633
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
6634
|
+
fields?: string;
|
|
6635
|
+
/** 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. */
|
|
6636
|
+
key?: string;
|
|
6637
|
+
/** OAuth 2.0 token for the current user. */
|
|
6638
|
+
oauth_token?: string;
|
|
6639
|
+
/** Required. Value for parent. */
|
|
6640
|
+
parent: string;
|
|
6641
|
+
/** Returns response with indentations and line breaks. */
|
|
6642
|
+
prettyPrint?: boolean;
|
|
6643
|
+
/** 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. */
|
|
6644
|
+
quotaUser?: string;
|
|
6645
|
+
/** 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). */
|
|
6646
|
+
requestId?: string;
|
|
6647
|
+
/** Required. Id of the requesting object If auto-generating Id server-side, remove this field and sac_attachment_id from the method_signature of Create RPC */
|
|
6648
|
+
sacAttachmentId?: string;
|
|
6649
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6650
|
+
upload_protocol?: string;
|
|
6651
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6652
|
+
uploadType?: string;
|
|
6653
|
+
},
|
|
6654
|
+
body: SACAttachment,
|
|
6655
|
+
): Request<Operation>;
|
|
6656
|
+
/** Deletes a single SACAttachment. */
|
|
6657
|
+
delete(request?: {
|
|
6658
|
+
/** V1 error format. */
|
|
6659
|
+
'$.xgafv'?: string;
|
|
6660
|
+
/** OAuth access token. */
|
|
6661
|
+
access_token?: string;
|
|
6662
|
+
/** Data format for response. */
|
|
6663
|
+
alt?: string;
|
|
6664
|
+
/** JSONP */
|
|
6665
|
+
callback?: string;
|
|
6666
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
6667
|
+
fields?: string;
|
|
6668
|
+
/** 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. */
|
|
6669
|
+
key?: string;
|
|
6670
|
+
/** Required. Name of the resource */
|
|
6671
|
+
name: string;
|
|
6672
|
+
/** OAuth 2.0 token for the current user. */
|
|
6673
|
+
oauth_token?: string;
|
|
6674
|
+
/** Returns response with indentations and line breaks. */
|
|
6675
|
+
prettyPrint?: boolean;
|
|
6676
|
+
/** 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. */
|
|
6677
|
+
quotaUser?: string;
|
|
6678
|
+
/** 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). */
|
|
6679
|
+
requestId?: string;
|
|
6680
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6681
|
+
upload_protocol?: string;
|
|
6682
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6683
|
+
uploadType?: string;
|
|
6684
|
+
}): Request<Operation>;
|
|
6685
|
+
/** Gets details of a single SACAttachment. */
|
|
6686
|
+
get(request?: {
|
|
6687
|
+
/** V1 error format. */
|
|
6688
|
+
'$.xgafv'?: string;
|
|
6689
|
+
/** OAuth access token. */
|
|
6690
|
+
access_token?: string;
|
|
6691
|
+
/** Data format for response. */
|
|
6692
|
+
alt?: string;
|
|
6693
|
+
/** JSONP */
|
|
6694
|
+
callback?: string;
|
|
6695
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
6696
|
+
fields?: string;
|
|
6697
|
+
/** 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. */
|
|
6698
|
+
key?: string;
|
|
6699
|
+
/** Required. Name of the resource */
|
|
6700
|
+
name: string;
|
|
6701
|
+
/** OAuth 2.0 token for the current user. */
|
|
6702
|
+
oauth_token?: string;
|
|
6703
|
+
/** Returns response with indentations and line breaks. */
|
|
6704
|
+
prettyPrint?: boolean;
|
|
6705
|
+
/** 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. */
|
|
6706
|
+
quotaUser?: string;
|
|
6707
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6708
|
+
upload_protocol?: string;
|
|
6709
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6710
|
+
uploadType?: string;
|
|
6711
|
+
}): Request<SACAttachment>;
|
|
6712
|
+
/** Lists SACAttachments in a given project and location. */
|
|
6713
|
+
list(request?: {
|
|
6714
|
+
/** V1 error format. */
|
|
6715
|
+
'$.xgafv'?: string;
|
|
6716
|
+
/** OAuth access token. */
|
|
6717
|
+
access_token?: string;
|
|
6718
|
+
/** Data format for response. */
|
|
6719
|
+
alt?: string;
|
|
6720
|
+
/** JSONP */
|
|
6721
|
+
callback?: string;
|
|
6722
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
6723
|
+
fields?: string;
|
|
6724
|
+
/** Optional. Filtering results */
|
|
6725
|
+
filter?: string;
|
|
6726
|
+
/** 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. */
|
|
6727
|
+
key?: string;
|
|
6728
|
+
/** OAuth 2.0 token for the current user. */
|
|
6729
|
+
oauth_token?: string;
|
|
6730
|
+
/** Optional. Hint for how to order the results */
|
|
6731
|
+
orderBy?: string;
|
|
6732
|
+
/** Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. */
|
|
6733
|
+
pageSize?: number;
|
|
6734
|
+
/** Optional. A token identifying a page of results the server should return. */
|
|
6735
|
+
pageToken?: string;
|
|
6736
|
+
/** Required. Parent value for ListSACAttachmentsRequest */
|
|
6737
|
+
parent: string;
|
|
6738
|
+
/** Returns response with indentations and line breaks. */
|
|
6739
|
+
prettyPrint?: boolean;
|
|
6740
|
+
/** 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. */
|
|
6741
|
+
quotaUser?: string;
|
|
6742
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6743
|
+
upload_protocol?: string;
|
|
6744
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6745
|
+
uploadType?: string;
|
|
6746
|
+
}): Request<ListSACAttachmentsResponse>;
|
|
6747
|
+
}
|
|
6748
|
+
interface SacRealmsResource {
|
|
6749
|
+
/** Creates a new SACRealm in a given project. */
|
|
6750
|
+
create(request: {
|
|
6751
|
+
/** V1 error format. */
|
|
6752
|
+
'$.xgafv'?: string;
|
|
6753
|
+
/** OAuth access token. */
|
|
6754
|
+
access_token?: string;
|
|
6755
|
+
/** Data format for response. */
|
|
6756
|
+
alt?: string;
|
|
6757
|
+
/** JSONP */
|
|
6758
|
+
callback?: string;
|
|
6759
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
6760
|
+
fields?: string;
|
|
6761
|
+
/** 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. */
|
|
6762
|
+
key?: string;
|
|
6763
|
+
/** OAuth 2.0 token for the current user. */
|
|
6764
|
+
oauth_token?: string;
|
|
6765
|
+
/** Required. Value for parent. */
|
|
6766
|
+
parent: string;
|
|
6767
|
+
/** Returns response with indentations and line breaks. */
|
|
6768
|
+
prettyPrint?: boolean;
|
|
6769
|
+
/** 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. */
|
|
6770
|
+
quotaUser?: string;
|
|
6771
|
+
/** 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). */
|
|
6772
|
+
requestId?: string;
|
|
6773
|
+
/** Required. Id of the requesting object If auto-generating Id server-side, remove this field and sac_realm_id from the method_signature of Create RPC */
|
|
6774
|
+
sacRealmId?: string;
|
|
6775
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6776
|
+
upload_protocol?: string;
|
|
6777
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6778
|
+
uploadType?: string;
|
|
6779
|
+
/** Request body */
|
|
6780
|
+
resource: SACRealm;
|
|
6781
|
+
}): Request<Operation>;
|
|
6782
|
+
create(
|
|
6783
|
+
request: {
|
|
6784
|
+
/** V1 error format. */
|
|
6785
|
+
'$.xgafv'?: string;
|
|
6786
|
+
/** OAuth access token. */
|
|
6787
|
+
access_token?: string;
|
|
6788
|
+
/** Data format for response. */
|
|
6789
|
+
alt?: string;
|
|
6790
|
+
/** JSONP */
|
|
6791
|
+
callback?: string;
|
|
6792
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
6793
|
+
fields?: string;
|
|
6794
|
+
/** 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. */
|
|
6795
|
+
key?: string;
|
|
6796
|
+
/** OAuth 2.0 token for the current user. */
|
|
6797
|
+
oauth_token?: string;
|
|
6798
|
+
/** Required. Value for parent. */
|
|
6799
|
+
parent: string;
|
|
6800
|
+
/** Returns response with indentations and line breaks. */
|
|
6801
|
+
prettyPrint?: boolean;
|
|
6802
|
+
/** 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. */
|
|
6803
|
+
quotaUser?: string;
|
|
6804
|
+
/** 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). */
|
|
6805
|
+
requestId?: string;
|
|
6806
|
+
/** Required. Id of the requesting object If auto-generating Id server-side, remove this field and sac_realm_id from the method_signature of Create RPC */
|
|
6807
|
+
sacRealmId?: string;
|
|
6808
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6809
|
+
upload_protocol?: string;
|
|
6810
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6811
|
+
uploadType?: string;
|
|
6812
|
+
},
|
|
6813
|
+
body: SACRealm,
|
|
6814
|
+
): Request<Operation>;
|
|
6815
|
+
/** Deletes a single SACRealm. */
|
|
6816
|
+
delete(request?: {
|
|
6817
|
+
/** V1 error format. */
|
|
6818
|
+
'$.xgafv'?: string;
|
|
6819
|
+
/** OAuth access token. */
|
|
6820
|
+
access_token?: string;
|
|
6821
|
+
/** Data format for response. */
|
|
6822
|
+
alt?: string;
|
|
6823
|
+
/** JSONP */
|
|
6824
|
+
callback?: string;
|
|
6825
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
6826
|
+
fields?: string;
|
|
6827
|
+
/** 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. */
|
|
6828
|
+
key?: string;
|
|
6829
|
+
/** Required. Name of the resource */
|
|
6830
|
+
name: string;
|
|
6831
|
+
/** OAuth 2.0 token for the current user. */
|
|
6832
|
+
oauth_token?: string;
|
|
6833
|
+
/** Returns response with indentations and line breaks. */
|
|
6834
|
+
prettyPrint?: boolean;
|
|
6835
|
+
/** 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. */
|
|
6836
|
+
quotaUser?: string;
|
|
6837
|
+
/** 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). */
|
|
6838
|
+
requestId?: string;
|
|
6839
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6840
|
+
upload_protocol?: string;
|
|
6841
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6842
|
+
uploadType?: string;
|
|
6843
|
+
}): Request<Operation>;
|
|
6844
|
+
/** Gets details of a single SACRealm. */
|
|
6845
|
+
get(request?: {
|
|
6846
|
+
/** V1 error format. */
|
|
6847
|
+
'$.xgafv'?: string;
|
|
6848
|
+
/** OAuth access token. */
|
|
6849
|
+
access_token?: string;
|
|
6850
|
+
/** Data format for response. */
|
|
6851
|
+
alt?: string;
|
|
6852
|
+
/** JSONP */
|
|
6853
|
+
callback?: string;
|
|
6854
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
6855
|
+
fields?: string;
|
|
6856
|
+
/** 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. */
|
|
6857
|
+
key?: string;
|
|
6858
|
+
/** Required. Name of the resource */
|
|
6859
|
+
name: string;
|
|
6860
|
+
/** OAuth 2.0 token for the current user. */
|
|
6861
|
+
oauth_token?: string;
|
|
6862
|
+
/** Returns response with indentations and line breaks. */
|
|
6863
|
+
prettyPrint?: boolean;
|
|
6864
|
+
/** 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. */
|
|
6865
|
+
quotaUser?: string;
|
|
6866
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6867
|
+
upload_protocol?: string;
|
|
6868
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6869
|
+
uploadType?: string;
|
|
6870
|
+
}): Request<SACRealm>;
|
|
6871
|
+
/** Lists SACRealms in a given project. */
|
|
6872
|
+
list(request?: {
|
|
6873
|
+
/** V1 error format. */
|
|
6874
|
+
'$.xgafv'?: string;
|
|
6875
|
+
/** OAuth access token. */
|
|
6876
|
+
access_token?: string;
|
|
6877
|
+
/** Data format for response. */
|
|
6878
|
+
alt?: string;
|
|
6879
|
+
/** JSONP */
|
|
6880
|
+
callback?: string;
|
|
6881
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
6882
|
+
fields?: string;
|
|
6883
|
+
/** Optional. Filtering results */
|
|
6884
|
+
filter?: string;
|
|
6885
|
+
/** 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. */
|
|
6886
|
+
key?: string;
|
|
6887
|
+
/** OAuth 2.0 token for the current user. */
|
|
6888
|
+
oauth_token?: string;
|
|
6889
|
+
/** Optional. Hint for how to order the results */
|
|
6890
|
+
orderBy?: string;
|
|
6891
|
+
/** Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. */
|
|
6892
|
+
pageSize?: number;
|
|
6893
|
+
/** Optional. A token identifying a page of results the server should return. */
|
|
6894
|
+
pageToken?: string;
|
|
6895
|
+
/** Required. Parent value for ListSACRealmsRequest */
|
|
6896
|
+
parent: string;
|
|
6897
|
+
/** Returns response with indentations and line breaks. */
|
|
6898
|
+
prettyPrint?: boolean;
|
|
6899
|
+
/** 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. */
|
|
6900
|
+
quotaUser?: string;
|
|
6901
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6902
|
+
upload_protocol?: string;
|
|
6903
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6904
|
+
uploadType?: string;
|
|
6905
|
+
}): Request<ListSACRealmsResponse>;
|
|
6906
|
+
}
|
|
6515
6907
|
interface ServerTlsPoliciesResource {
|
|
6516
6908
|
/** Creates a new ServerTlsPolicy in a given project and location. */
|
|
6517
6909
|
create(request: {
|
|
@@ -7317,6 +7709,8 @@ declare namespace gapi.client {
|
|
|
7317
7709
|
mirroringEndpointGroupAssociations: MirroringEndpointGroupAssociationsResource;
|
|
7318
7710
|
mirroringEndpointGroups: MirroringEndpointGroupsResource;
|
|
7319
7711
|
operations: OperationsResource;
|
|
7712
|
+
sacAttachments: SacAttachmentsResource;
|
|
7713
|
+
sacRealms: SacRealmsResource;
|
|
7320
7714
|
serverTlsPolicies: ServerTlsPoliciesResource;
|
|
7321
7715
|
tlsInspectionPolicies: TlsInspectionPoliciesResource;
|
|
7322
7716
|
urlLists: UrlListsResource;
|