@maxim_mazurok/gapi.client.networksecurity-v1beta1 0.0.20230701 → 0.0.20230713
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 +1258 -429
- package/package.json +1 -1
- package/tests.ts +121 -1
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230713
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -115,6 +115,59 @@ gapi.load('client', async () => {
|
|
|
115
115
|
],
|
|
116
116
|
requestId: "Test string",
|
|
117
117
|
});
|
|
118
|
+
/** Creates a new FirewallEndpoint in a given project and location. */
|
|
119
|
+
await gapi.client.networksecurity.organizations.locations.firewallEndpoints.create({
|
|
120
|
+
firewallEndpointId: "Test string",
|
|
121
|
+
parent: "Test string",
|
|
122
|
+
requestId: "Test string",
|
|
123
|
+
}, {
|
|
124
|
+
associatedNetworks: [
|
|
125
|
+
"Test string"
|
|
126
|
+
],
|
|
127
|
+
createTime: "Test string",
|
|
128
|
+
labels: {
|
|
129
|
+
A: "Test string"
|
|
130
|
+
},
|
|
131
|
+
name: "Test string",
|
|
132
|
+
reconciling: true,
|
|
133
|
+
state: "Test string",
|
|
134
|
+
updateTime: "Test string",
|
|
135
|
+
});
|
|
136
|
+
/** Deletes a single Endpoint. */
|
|
137
|
+
await gapi.client.networksecurity.organizations.locations.firewallEndpoints.delete({
|
|
138
|
+
name: "Test string",
|
|
139
|
+
requestId: "Test string",
|
|
140
|
+
});
|
|
141
|
+
/** Gets details of a single Endpoint. */
|
|
142
|
+
await gapi.client.networksecurity.organizations.locations.firewallEndpoints.get({
|
|
143
|
+
name: "Test string",
|
|
144
|
+
});
|
|
145
|
+
/** Lists FirewallEndpoints in a given project and location. */
|
|
146
|
+
await gapi.client.networksecurity.organizations.locations.firewallEndpoints.list({
|
|
147
|
+
filter: "Test string",
|
|
148
|
+
orderBy: "Test string",
|
|
149
|
+
pageSize: 42,
|
|
150
|
+
pageToken: "Test string",
|
|
151
|
+
parent: "Test string",
|
|
152
|
+
});
|
|
153
|
+
/** Update a single Endpoint. */
|
|
154
|
+
await gapi.client.networksecurity.organizations.locations.firewallEndpoints.patch({
|
|
155
|
+
name: "Test string",
|
|
156
|
+
requestId: "Test string",
|
|
157
|
+
updateMask: "Test string",
|
|
158
|
+
}, {
|
|
159
|
+
associatedNetworks: [
|
|
160
|
+
"Test string"
|
|
161
|
+
],
|
|
162
|
+
createTime: "Test string",
|
|
163
|
+
labels: {
|
|
164
|
+
A: "Test string"
|
|
165
|
+
},
|
|
166
|
+
name: "Test string",
|
|
167
|
+
reconciling: true,
|
|
168
|
+
state: "Test string",
|
|
169
|
+
updateTime: "Test string",
|
|
170
|
+
});
|
|
118
171
|
/**
|
|
119
172
|
* Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this
|
|
120
173
|
* method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation
|
|
@@ -581,6 +634,59 @@ gapi.load('client', async () => {
|
|
|
581
634
|
"Test string"
|
|
582
635
|
],
|
|
583
636
|
});
|
|
637
|
+
/** Creates a new FirewallEndpointAssociation in a given project and location. */
|
|
638
|
+
await gapi.client.networksecurity.projects.locations.firewallEndpointAssociations.create({
|
|
639
|
+
firewallEndpointAssociationId: "Test string",
|
|
640
|
+
parent: "Test string",
|
|
641
|
+
requestId: "Test string",
|
|
642
|
+
}, {
|
|
643
|
+
createTime: "Test string",
|
|
644
|
+
firewallEndpoint: "Test string",
|
|
645
|
+
labels: {
|
|
646
|
+
A: "Test string"
|
|
647
|
+
},
|
|
648
|
+
name: "Test string",
|
|
649
|
+
network: "Test string",
|
|
650
|
+
reconciling: true,
|
|
651
|
+
state: "Test string",
|
|
652
|
+
tlsInspectionPolicy: "Test string",
|
|
653
|
+
updateTime: "Test string",
|
|
654
|
+
});
|
|
655
|
+
/** Deletes a single FirewallEndpointAssociation. */
|
|
656
|
+
await gapi.client.networksecurity.projects.locations.firewallEndpointAssociations.delete({
|
|
657
|
+
name: "Test string",
|
|
658
|
+
requestId: "Test string",
|
|
659
|
+
});
|
|
660
|
+
/** Gets details of a single FirewallEndpointAssociation. */
|
|
661
|
+
await gapi.client.networksecurity.projects.locations.firewallEndpointAssociations.get({
|
|
662
|
+
name: "Test string",
|
|
663
|
+
});
|
|
664
|
+
/** Lists Associations in a given project and location. */
|
|
665
|
+
await gapi.client.networksecurity.projects.locations.firewallEndpointAssociations.list({
|
|
666
|
+
filter: "Test string",
|
|
667
|
+
orderBy: "Test string",
|
|
668
|
+
pageSize: 42,
|
|
669
|
+
pageToken: "Test string",
|
|
670
|
+
parent: "Test string",
|
|
671
|
+
});
|
|
672
|
+
/** Update a single FirewallEndpointAssociation. */
|
|
673
|
+
await gapi.client.networksecurity.projects.locations.firewallEndpointAssociations.patch({
|
|
674
|
+
name: "Test string",
|
|
675
|
+
requestId: "Test string",
|
|
676
|
+
updateMask: "Test string",
|
|
677
|
+
}, {
|
|
678
|
+
createTime: "Test string",
|
|
679
|
+
firewallEndpoint: "Test string",
|
|
680
|
+
labels: {
|
|
681
|
+
A: "Test string"
|
|
682
|
+
},
|
|
683
|
+
name: "Test string",
|
|
684
|
+
network: "Test string",
|
|
685
|
+
reconciling: true,
|
|
686
|
+
state: "Test string",
|
|
687
|
+
tlsInspectionPolicy: "Test string",
|
|
688
|
+
updateTime: "Test string",
|
|
689
|
+
});
|
|
584
690
|
/** Creates a new GatewaySecurityPolicy in a given project and location. */
|
|
585
691
|
await gapi.client.networksecurity.projects.locations.gatewaySecurityPolicies.create({
|
|
586
692
|
gatewaySecurityPolicyId: "Test string",
|
|
@@ -837,8 +943,15 @@ gapi.load('client', async () => {
|
|
|
837
943
|
}, {
|
|
838
944
|
caPool: "Test string",
|
|
839
945
|
createTime: "Test string",
|
|
946
|
+
customTlsFeatures: [
|
|
947
|
+
"Test string"
|
|
948
|
+
],
|
|
840
949
|
description: "Test string",
|
|
950
|
+
excludePublicCaSet: true,
|
|
951
|
+
minTlsVersion: "Test string",
|
|
841
952
|
name: "Test string",
|
|
953
|
+
tlsFeatureProfile: "Test string",
|
|
954
|
+
trustConfig: "Test string",
|
|
842
955
|
updateTime: "Test string",
|
|
843
956
|
});
|
|
844
957
|
/** Deletes a single TlsInspectionPolicy. */
|
|
@@ -863,8 +976,15 @@ gapi.load('client', async () => {
|
|
|
863
976
|
}, {
|
|
864
977
|
caPool: "Test string",
|
|
865
978
|
createTime: "Test string",
|
|
979
|
+
customTlsFeatures: [
|
|
980
|
+
"Test string"
|
|
981
|
+
],
|
|
866
982
|
description: "Test string",
|
|
983
|
+
excludePublicCaSet: true,
|
|
984
|
+
minTlsVersion: "Test string",
|
|
867
985
|
name: "Test string",
|
|
986
|
+
tlsFeatureProfile: "Test string",
|
|
987
|
+
trustConfig: "Test string",
|
|
868
988
|
updateTime: "Test string",
|
|
869
989
|
});
|
|
870
990
|
/** Creates a new UrlList in a given project and location. */
|