@maxim_mazurok/gapi.client.networksecurity-v1beta1 0.0.20250527 → 0.0.20250604
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 +48 -48
- 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: 20250604
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -688,7 +688,7 @@ declare namespace gapi.client {
|
|
|
688
688
|
interface ListSACAttachmentsResponse {
|
|
689
689
|
/** A token identifying a page of results the server should return. */
|
|
690
690
|
nextPageToken?: string;
|
|
691
|
-
/** The list of SACAttachments */
|
|
691
|
+
/** The list of SACAttachments. */
|
|
692
692
|
sacAttachments?: SACAttachment[];
|
|
693
693
|
/** Locations that could not be reached. */
|
|
694
694
|
unreachable?: string[];
|
|
@@ -696,7 +696,7 @@ declare namespace gapi.client {
|
|
|
696
696
|
interface ListSACRealmsResponse {
|
|
697
697
|
/** A token identifying a page of results the server should return. */
|
|
698
698
|
nextPageToken?: string;
|
|
699
|
-
/** The list of SACRealms */
|
|
699
|
+
/** The list of SACRealms. */
|
|
700
700
|
sacRealms?: SACRealm[];
|
|
701
701
|
/** Locations that could not be reached. */
|
|
702
702
|
unreachable?: string[];
|
|
@@ -922,63 +922,63 @@ declare namespace gapi.client {
|
|
|
922
922
|
sources?: Source[];
|
|
923
923
|
}
|
|
924
924
|
interface SACAttachment {
|
|
925
|
-
/** Optional. ISO-3166 alpha
|
|
925
|
+
/** Optional. Case-insensitive ISO-3166 alpha-2 country code used for localization. Only valid for Symantec attachments. */
|
|
926
926
|
country?: string;
|
|
927
|
-
/** Output only.
|
|
927
|
+
/** Output only. Timestamp when the attachment was created. */
|
|
928
928
|
createTime?: string;
|
|
929
929
|
/** Optional. Optional list of labels applied to the resource. */
|
|
930
930
|
labels?: {[P in string]: string};
|
|
931
931
|
/** Identifier. Resource name, in the form `projects/{project}/locations/{location}/sacAttachments/{sac_attachment}`. */
|
|
932
932
|
name?: string;
|
|
933
|
-
/** Required.
|
|
933
|
+
/** 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}`. */
|
|
934
934
|
nccGateway?: string;
|
|
935
|
-
/** Required.
|
|
935
|
+
/** 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}`. */
|
|
936
936
|
sacRealm?: string;
|
|
937
|
-
/** Output only.
|
|
937
|
+
/** Output only. State of the attachment. */
|
|
938
938
|
state?: string;
|
|
939
|
-
/** Optional.
|
|
939
|
+
/** Optional. Configuration required for Symantec attachments. */
|
|
940
940
|
symantecOptions?: SACAttachmentSACAttachmentSymantecOptions;
|
|
941
|
-
/** Optional. tzinfo identifier used for localization. Only
|
|
941
|
+
/** Optional. Case-sensitive tzinfo identifier used for localization. Only valid for Symantec attachments. */
|
|
942
942
|
timeZone?: string;
|
|
943
|
-
/** Output only.
|
|
943
|
+
/** Output only. Timestamp when the attachment was last updated. */
|
|
944
944
|
updateTime?: string;
|
|
945
945
|
}
|
|
946
946
|
interface SACAttachmentSACAttachmentSymantecOptions {
|
|
947
|
-
/** Immutable. Name to be used
|
|
947
|
+
/** Immutable. Name to be used when creating a location on the customer's behalf in Symantec's Location API. Not to be confused with GCP locations. */
|
|
948
948
|
symantecLocationName?: string;
|
|
949
|
-
/** Immutable. Symantec data center identifier that this
|
|
949
|
+
/** Immutable. Symantec data center identifier that this attachment will connect to. */
|
|
950
950
|
symantecSite?: string;
|
|
951
951
|
}
|
|
952
952
|
interface SACRealm {
|
|
953
|
-
/** Output only.
|
|
953
|
+
/** Output only. Timestamp when the realm was created. */
|
|
954
954
|
createTime?: string;
|
|
955
|
-
/** Optional.
|
|
955
|
+
/** Optional. Optional list of labels applied to the resource. */
|
|
956
956
|
labels?: {[P in string]: string};
|
|
957
|
-
/** Identifier. Resource name
|
|
957
|
+
/** Identifier. Resource name, in the form `projects/{project}/locations/global/sacRealms/{sacRealm}`. */
|
|
958
958
|
name?: string;
|
|
959
|
-
/** Output only.
|
|
959
|
+
/** Output only. Key to be shared with SSE service provider during pairing. */
|
|
960
960
|
pairingKey?: SACRealmPairingKey;
|
|
961
|
-
/** Immutable. SSE service provider */
|
|
961
|
+
/** Immutable. SSE service provider associated with the realm. */
|
|
962
962
|
securityService?: string;
|
|
963
|
-
/** Output only.
|
|
963
|
+
/** Output only. State of the realm. */
|
|
964
964
|
state?: string;
|
|
965
|
-
/** Optional.
|
|
965
|
+
/** Optional. Configuration required for Symantec realms. */
|
|
966
966
|
symantecOptions?: SACRealmSACRealmSymantecOptions;
|
|
967
|
-
/** Output only.
|
|
967
|
+
/** Output only. Timestamp when the realm was last updated. */
|
|
968
968
|
updateTime?: string;
|
|
969
969
|
}
|
|
970
970
|
interface SACRealmPairingKey {
|
|
971
|
-
/** Output only. Timestamp in UTC of when this resource is considered expired. */
|
|
971
|
+
/** Output only. Timestamp in UTC of when this resource is considered expired. It expires 7 days after creation. */
|
|
972
972
|
expireTime?: string;
|
|
973
|
-
/** Output only.
|
|
973
|
+
/** Output only. Key value. */
|
|
974
974
|
key?: string;
|
|
975
975
|
}
|
|
976
976
|
interface SACRealmSACRealmSymantecOptions {
|
|
977
|
-
/** Output only. Symantec site IDs
|
|
977
|
+
/** Output only. Symantec site IDs which the user can choose to connect to. */
|
|
978
978
|
availableSymantecSites?: string[];
|
|
979
|
-
/** Optional. API Key used to call Symantec APIs on the user's behalf. Required if using
|
|
979
|
+
/** Optional. API Key used to call Symantec APIs on the user's behalf. Required if using Symantec Cloud SWG. P4SA account needs permissions granted to read this secret. A secret ID, secret name, or secret URI can be specified, but it will be parsed and stored as a secret URI in the form `projects/{project_number}/secrets/my-secret`. */
|
|
980
980
|
secretPath?: string;
|
|
981
|
-
/** Output only.
|
|
981
|
+
/** Output only. Connection status to Symantec API. */
|
|
982
982
|
symantecConnectionState?: string;
|
|
983
983
|
}
|
|
984
984
|
interface SecurityProfile {
|
|
@@ -6611,7 +6611,7 @@ declare namespace gapi.client {
|
|
|
6611
6611
|
key?: string;
|
|
6612
6612
|
/** OAuth 2.0 token for the current user. */
|
|
6613
6613
|
oauth_token?: string;
|
|
6614
|
-
/** Required.
|
|
6614
|
+
/** Required. The parent, in the form `projects/{project}/locations/{location}`. */
|
|
6615
6615
|
parent: string;
|
|
6616
6616
|
/** Returns response with indentations and line breaks. */
|
|
6617
6617
|
prettyPrint?: boolean;
|
|
@@ -6619,7 +6619,7 @@ declare namespace gapi.client {
|
|
|
6619
6619
|
quotaUser?: string;
|
|
6620
6620
|
/** 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). */
|
|
6621
6621
|
requestId?: string;
|
|
6622
|
-
/** Required.
|
|
6622
|
+
/** 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. */
|
|
6623
6623
|
sacAttachmentId?: string;
|
|
6624
6624
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6625
6625
|
upload_protocol?: string;
|
|
@@ -6644,7 +6644,7 @@ declare namespace gapi.client {
|
|
|
6644
6644
|
key?: string;
|
|
6645
6645
|
/** OAuth 2.0 token for the current user. */
|
|
6646
6646
|
oauth_token?: string;
|
|
6647
|
-
/** Required.
|
|
6647
|
+
/** Required. The parent, in the form `projects/{project}/locations/{location}`. */
|
|
6648
6648
|
parent: string;
|
|
6649
6649
|
/** Returns response with indentations and line breaks. */
|
|
6650
6650
|
prettyPrint?: boolean;
|
|
@@ -6652,7 +6652,7 @@ declare namespace gapi.client {
|
|
|
6652
6652
|
quotaUser?: string;
|
|
6653
6653
|
/** 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). */
|
|
6654
6654
|
requestId?: string;
|
|
6655
|
-
/** Required.
|
|
6655
|
+
/** 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. */
|
|
6656
6656
|
sacAttachmentId?: string;
|
|
6657
6657
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6658
6658
|
upload_protocol?: string;
|
|
@@ -6661,7 +6661,7 @@ declare namespace gapi.client {
|
|
|
6661
6661
|
},
|
|
6662
6662
|
body: SACAttachment,
|
|
6663
6663
|
): Request<Operation>;
|
|
6664
|
-
/** Deletes
|
|
6664
|
+
/** Deletes the specified attachment. */
|
|
6665
6665
|
delete(request?: {
|
|
6666
6666
|
/** V1 error format. */
|
|
6667
6667
|
'$.xgafv'?: string;
|
|
@@ -6675,7 +6675,7 @@ declare namespace gapi.client {
|
|
|
6675
6675
|
fields?: string;
|
|
6676
6676
|
/** 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. */
|
|
6677
6677
|
key?: string;
|
|
6678
|
-
/** Required. Name of the resource */
|
|
6678
|
+
/** Required. Name of the resource, in the form `projects/{project}/locations/{location}/sacAttachments/{sac_attachment}`. */
|
|
6679
6679
|
name: string;
|
|
6680
6680
|
/** OAuth 2.0 token for the current user. */
|
|
6681
6681
|
oauth_token?: string;
|
|
@@ -6690,7 +6690,7 @@ declare namespace gapi.client {
|
|
|
6690
6690
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6691
6691
|
uploadType?: string;
|
|
6692
6692
|
}): Request<Operation>;
|
|
6693
|
-
/**
|
|
6693
|
+
/** Returns the specified attachment. */
|
|
6694
6694
|
get(request?: {
|
|
6695
6695
|
/** V1 error format. */
|
|
6696
6696
|
'$.xgafv'?: string;
|
|
@@ -6704,7 +6704,7 @@ declare namespace gapi.client {
|
|
|
6704
6704
|
fields?: string;
|
|
6705
6705
|
/** 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. */
|
|
6706
6706
|
key?: string;
|
|
6707
|
-
/** Required. Name of the resource */
|
|
6707
|
+
/** Required. Name of the resource, in the form `projects/{project}/locations/{location}/sacAttachments/{sac_attachment}`. */
|
|
6708
6708
|
name: string;
|
|
6709
6709
|
/** OAuth 2.0 token for the current user. */
|
|
6710
6710
|
oauth_token?: string;
|
|
@@ -6729,19 +6729,19 @@ declare namespace gapi.client {
|
|
|
6729
6729
|
callback?: string;
|
|
6730
6730
|
/** Selector specifying which fields to include in a partial response. */
|
|
6731
6731
|
fields?: string;
|
|
6732
|
-
/** Optional.
|
|
6732
|
+
/** Optional. An expression that filters the list of results. */
|
|
6733
6733
|
filter?: string;
|
|
6734
6734
|
/** 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. */
|
|
6735
6735
|
key?: string;
|
|
6736
6736
|
/** OAuth 2.0 token for the current user. */
|
|
6737
6737
|
oauth_token?: string;
|
|
6738
|
-
/** Optional.
|
|
6738
|
+
/** Optional. Sort the results by a certain order. */
|
|
6739
6739
|
orderBy?: string;
|
|
6740
6740
|
/** Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. */
|
|
6741
6741
|
pageSize?: number;
|
|
6742
6742
|
/** Optional. A token identifying a page of results the server should return. */
|
|
6743
6743
|
pageToken?: string;
|
|
6744
|
-
/** Required.
|
|
6744
|
+
/** Required. The parent, in the form `projects/{project}/locations/{location}`. */
|
|
6745
6745
|
parent: string;
|
|
6746
6746
|
/** Returns response with indentations and line breaks. */
|
|
6747
6747
|
prettyPrint?: boolean;
|
|
@@ -6770,7 +6770,7 @@ declare namespace gapi.client {
|
|
|
6770
6770
|
key?: string;
|
|
6771
6771
|
/** OAuth 2.0 token for the current user. */
|
|
6772
6772
|
oauth_token?: string;
|
|
6773
|
-
/** Required.
|
|
6773
|
+
/** Required. The parent, in the form `projects/{project}/locations/global`. */
|
|
6774
6774
|
parent: string;
|
|
6775
6775
|
/** Returns response with indentations and line breaks. */
|
|
6776
6776
|
prettyPrint?: boolean;
|
|
@@ -6778,7 +6778,7 @@ declare namespace gapi.client {
|
|
|
6778
6778
|
quotaUser?: string;
|
|
6779
6779
|
/** 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). */
|
|
6780
6780
|
requestId?: string;
|
|
6781
|
-
/** Required.
|
|
6781
|
+
/** 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. */
|
|
6782
6782
|
sacRealmId?: string;
|
|
6783
6783
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6784
6784
|
upload_protocol?: string;
|
|
@@ -6803,7 +6803,7 @@ declare namespace gapi.client {
|
|
|
6803
6803
|
key?: string;
|
|
6804
6804
|
/** OAuth 2.0 token for the current user. */
|
|
6805
6805
|
oauth_token?: string;
|
|
6806
|
-
/** Required.
|
|
6806
|
+
/** Required. The parent, in the form `projects/{project}/locations/global`. */
|
|
6807
6807
|
parent: string;
|
|
6808
6808
|
/** Returns response with indentations and line breaks. */
|
|
6809
6809
|
prettyPrint?: boolean;
|
|
@@ -6811,7 +6811,7 @@ declare namespace gapi.client {
|
|
|
6811
6811
|
quotaUser?: string;
|
|
6812
6812
|
/** 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). */
|
|
6813
6813
|
requestId?: string;
|
|
6814
|
-
/** Required.
|
|
6814
|
+
/** 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. */
|
|
6815
6815
|
sacRealmId?: string;
|
|
6816
6816
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
6817
6817
|
upload_protocol?: string;
|
|
@@ -6820,7 +6820,7 @@ declare namespace gapi.client {
|
|
|
6820
6820
|
},
|
|
6821
6821
|
body: SACRealm,
|
|
6822
6822
|
): Request<Operation>;
|
|
6823
|
-
/** Deletes
|
|
6823
|
+
/** Deletes the specified realm. */
|
|
6824
6824
|
delete(request?: {
|
|
6825
6825
|
/** V1 error format. */
|
|
6826
6826
|
'$.xgafv'?: string;
|
|
@@ -6834,7 +6834,7 @@ declare namespace gapi.client {
|
|
|
6834
6834
|
fields?: string;
|
|
6835
6835
|
/** 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. */
|
|
6836
6836
|
key?: string;
|
|
6837
|
-
/** Required. Name of the resource */
|
|
6837
|
+
/** Required. Name of the resource, in the form `projects/{project}/locations/global/sacRealms/{sacRealm}`. */
|
|
6838
6838
|
name: string;
|
|
6839
6839
|
/** OAuth 2.0 token for the current user. */
|
|
6840
6840
|
oauth_token?: string;
|
|
@@ -6849,7 +6849,7 @@ declare namespace gapi.client {
|
|
|
6849
6849
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
6850
6850
|
uploadType?: string;
|
|
6851
6851
|
}): Request<Operation>;
|
|
6852
|
-
/**
|
|
6852
|
+
/** Returns the specified realm. */
|
|
6853
6853
|
get(request?: {
|
|
6854
6854
|
/** V1 error format. */
|
|
6855
6855
|
'$.xgafv'?: string;
|
|
@@ -6863,7 +6863,7 @@ declare namespace gapi.client {
|
|
|
6863
6863
|
fields?: string;
|
|
6864
6864
|
/** 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. */
|
|
6865
6865
|
key?: string;
|
|
6866
|
-
/** Required. Name of the resource */
|
|
6866
|
+
/** Required. Name of the resource, in the form `projects/{project}/locations/global/sacRealms/{sacRealm}`. */
|
|
6867
6867
|
name: string;
|
|
6868
6868
|
/** OAuth 2.0 token for the current user. */
|
|
6869
6869
|
oauth_token?: string;
|
|
@@ -6888,19 +6888,19 @@ declare namespace gapi.client {
|
|
|
6888
6888
|
callback?: string;
|
|
6889
6889
|
/** Selector specifying which fields to include in a partial response. */
|
|
6890
6890
|
fields?: string;
|
|
6891
|
-
/** Optional.
|
|
6891
|
+
/** Optional. An expression that filters the list of results. */
|
|
6892
6892
|
filter?: string;
|
|
6893
6893
|
/** 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. */
|
|
6894
6894
|
key?: string;
|
|
6895
6895
|
/** OAuth 2.0 token for the current user. */
|
|
6896
6896
|
oauth_token?: string;
|
|
6897
|
-
/** Optional.
|
|
6897
|
+
/** Optional. Sort the results by a certain order. */
|
|
6898
6898
|
orderBy?: string;
|
|
6899
6899
|
/** Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. */
|
|
6900
6900
|
pageSize?: number;
|
|
6901
6901
|
/** Optional. A token identifying a page of results the server should return. */
|
|
6902
6902
|
pageToken?: string;
|
|
6903
|
-
/** Required.
|
|
6903
|
+
/** Required. The parent, in the form `projects/{project}/locations/global`. */
|
|
6904
6904
|
parent: string;
|
|
6905
6905
|
/** Returns response with indentations and line breaks. */
|
|
6906
6906
|
prettyPrint?: boolean;
|