@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.
Files changed (3) hide show
  1. package/index.d.ts +1258 -429
  2. package/package.json +1 -1
  3. package/tests.ts +121 -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: 20230701
12
+ // Revision: 20230713
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -179,6 +179,61 @@ declare namespace gapi.client {
179
179
  title?:
180
180
  string;
181
181
  }
182
+ interface FirewallEndpoint {
183
+ /**
184
+ * 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
185
+ * will only appear in this list after traffic routing is fully configured. Format: projects/{project}/global/networks/{name}.
186
+ */
187
+ associatedNetworks?:
188
+ string[];
189
+ /** Output only. Create time stamp */
190
+ createTime?:
191
+ string;
192
+ /** Labels as key value pairs */
193
+ labels?:
194
+ { [P in string]: string };
195
+ /** Output only. name of resource */
196
+ name?:
197
+ string;
198
+ /** Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128. */
199
+ reconciling?:
200
+ boolean;
201
+ /** Output only. Current state of the endpoint. */
202
+ state?:
203
+ string;
204
+ /** Output only. Update time stamp */
205
+ updateTime?:
206
+ string;
207
+ }
208
+ interface FirewallEndpointAssociation {
209
+ /** Output only. Create time stamp */
210
+ createTime?:
211
+ string;
212
+ /** Required. The URL of the FirewallEndpoint that is being associated. */
213
+ firewallEndpoint?:
214
+ string;
215
+ /** Labels as key value pairs */
216
+ labels?:
217
+ { [P in string]: string };
218
+ /** Output only. name of resource */
219
+ name?:
220
+ string;
221
+ /** Required. The URL of the network that is being associated. */
222
+ network?:
223
+ string;
224
+ /** Output only. Whether reconciling is in progress, recommended per https://google.aip.dev/128. */
225
+ reconciling?:
226
+ boolean;
227
+ /** Output only. Current state of the association. */
228
+ state?:
229
+ string;
230
+ /** Optional. The URL of the TlsInspectionPolicy that is being associated. */
231
+ tlsInspectionPolicy?:
232
+ string;
233
+ /** Output only. Update time stamp */
234
+ updateTime?:
235
+ string;
236
+ }
182
237
  interface GatewaySecurityPolicy {
183
238
  /** Output only. The timestamp when the resource was created. */
184
239
  createTime?:
@@ -422,6 +477,28 @@ declare namespace gapi.client {
422
477
  nextPageToken?:
423
478
  string;
424
479
  }
480
+ interface ListFirewallEndpointAssociationsResponse {
481
+ /** The list of Association */
482
+ firewallEndpointAssociations?:
483
+ FirewallEndpointAssociation[];
484
+ /** A token identifying a page of results the server should return. */
485
+ nextPageToken?:
486
+ string;
487
+ /** Locations that could not be reached. */
488
+ unreachable?:
489
+ string[];
490
+ }
491
+ interface ListFirewallEndpointsResponse {
492
+ /** The list of Endpoint */
493
+ firewallEndpoints?:
494
+ FirewallEndpoint[];
495
+ /** A token identifying a page of results the server should return. */
496
+ nextPageToken?:
497
+ string;
498
+ /** Locations that could not be reached. */
499
+ unreachable?:
500
+ string[];
501
+ }
425
502
  interface ListGatewaySecurityPoliciesResponse {
426
503
  /** List of GatewaySecurityPolicies resources. */
427
504
  gatewaySecurityPolicies?:
@@ -700,15 +777,51 @@ declare namespace gapi.client {
700
777
  /** Output only. The timestamp when the resource was created. */
701
778
  createTime?:
702
779
  string;
780
+ /**
781
+ * Optional. List of custom TLS cipher suites selected. This field is valid only if the selected tls_feature_profile is CUSTOM. The compute.SslPoliciesService.ListAvailableFeatures
782
+ * method returns the set of features that can be specified in this list. Note that Secure Web Proxy does not yet honor this field.
783
+ */
784
+ customTlsFeatures?:
785
+ string[];
703
786
  /** Optional. Free-text description of the resource. */
704
787
  description?:
705
788
  string;
789
+ /**
790
+ * Optional. If FALSE (the default), use our default set of public CAs in addition to any CAs specified in trust_config. These public CAs are currently based on the Mozilla Root
791
+ * Program and are subject to change over time. If TRUE, do not accept our default set of public CAs. Only CAs specified in trust_config will be accepted. This defaults to FALSE (use
792
+ * public CAs in addition to trust_config) for backwards compatibility, but trusting public root CAs is *not recommended* unless the traffic in question is outbound to public web
793
+ * servers. When possible, prefer setting this to "false" and explicitly specifying trusted CAs and certificates in a TrustConfig. Note that Secure Web Proxy does not yet honor this
794
+ * field.
795
+ */
796
+ excludePublicCaSet?:
797
+ boolean;
798
+ /**
799
+ * Optional. Minimum TLS version that the firewall should use when negotiating connections with both clients and servers. If this is not set, then the default value is to allow the
800
+ * broadest set of clients and servers (TLS 1.0 or higher). Setting this to more restrictive values may improve security, but may also prevent the firewall from connecting to some
801
+ * clients or servers. Note that Secure Web Proxy does not yet honor this field.
802
+ */
803
+ minTlsVersion?:
804
+ string;
706
805
  /**
707
806
  * Required. Name of the resource. Name is of the form projects/{project}/locations/{location}/tlsInspectionPolicies/{tls_inspection_policy} tls_inspection_policy should match the
708
807
  * pattern:(^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$).
709
808
  */
710
809
  name?:
711
810
  string;
811
+ /**
812
+ * Optional. The selected Profile. If this is not set, then the default value is to allow the broadest set of clients and servers ("PROFILE_COMPATIBLE"). Setting this to more
813
+ * restrictive values may improve security, but may also prevent the TLS inspection proxy from connecting to some clients or servers. Note that Secure Web Proxy does not yet honor this
814
+ * field.
815
+ */
816
+ tlsFeatureProfile?:
817
+ string;
818
+ /**
819
+ * Optional. A TrustConfig resource used when making a connection to the TLS server. This is a relative resource path following the form
820
+ * "projects/{project}/locations/{location}/trustConfigs/{trust_config}". This is necessary to intercept TLS connections to servers with certificates signed by a private CA or
821
+ * self-signed certificates. Note that Secure Web Proxy does not yet honor this field.
822
+ */
823
+ trustConfig?:
824
+ string;
712
825
  /** Output only. The timestamp when the resource was updated. */
713
826
  updateTime?:
714
827
  string;
@@ -1391,14 +1504,9 @@ declare namespace gapi.client {
1391
1504
  },
1392
1505
  body: RemoveAddressGroupItemsRequest): Request<Operation>;
1393
1506
  }
1394
- interface OperationsResource {
1395
- /**
1396
- * 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
1397
- * this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the
1398
- * operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a
1399
- * google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
1400
- */
1401
- cancel(request: {
1507
+ interface FirewallEndpointsResource {
1508
+ /** Creates a new FirewallEndpoint in a given project and location. */
1509
+ create(request: {
1402
1510
  /** V1 error format. */
1403
1511
  "$.xgafv"?:
1404
1512
  string;
@@ -1414,21 +1522,33 @@ declare namespace gapi.client {
1414
1522
  /** Selector specifying which fields to include in a partial response. */
1415
1523
  fields?:
1416
1524
  string;
1525
+ /** 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. */
1526
+ firewallEndpointId?:
1527
+ string;
1417
1528
  /** 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. */
1418
1529
  key?:
1419
1530
  string;
1420
- /** The name of the operation resource to be cancelled. */
1421
- name:
1422
- string;
1423
1531
  /** OAuth 2.0 token for the current user. */
1424
1532
  oauth_token?:
1425
1533
  string;
1534
+ /** Required. Value for parent. */
1535
+ parent:
1536
+ string;
1426
1537
  /** Returns response with indentations and line breaks. */
1427
1538
  prettyPrint?:
1428
1539
  boolean;
1429
1540
  /** 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. */
1430
1541
  quotaUser?:
1431
1542
  string;
1543
+ /**
1544
+ * 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
1545
+ * 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
1546
+ * 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
1547
+ * 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
1548
+ * supported (00000000-0000-0000-0000-000000000000).
1549
+ */
1550
+ requestId?:
1551
+ string;
1432
1552
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1433
1553
  upload_protocol?:
1434
1554
  string;
@@ -1437,9 +1557,9 @@ declare namespace gapi.client {
1437
1557
  string;
1438
1558
  /** Request body */
1439
1559
  resource:
1440
- CancelOperationRequest;
1441
- }): Request<{}>;
1442
- cancel(request: {
1560
+ FirewallEndpoint;
1561
+ }): Request<Operation>;
1562
+ create(request: {
1443
1563
  /** V1 error format. */
1444
1564
  "$.xgafv"?:
1445
1565
  string;
@@ -1455,21 +1575,33 @@ declare namespace gapi.client {
1455
1575
  /** Selector specifying which fields to include in a partial response. */
1456
1576
  fields?:
1457
1577
  string;
1578
+ /** 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. */
1579
+ firewallEndpointId?:
1580
+ string;
1458
1581
  /** 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. */
1459
1582
  key?:
1460
1583
  string;
1461
- /** The name of the operation resource to be cancelled. */
1462
- name:
1463
- string;
1464
1584
  /** OAuth 2.0 token for the current user. */
1465
1585
  oauth_token?:
1466
1586
  string;
1587
+ /** Required. Value for parent. */
1588
+ parent:
1589
+ string;
1467
1590
  /** Returns response with indentations and line breaks. */
1468
1591
  prettyPrint?:
1469
1592
  boolean;
1470
1593
  /** 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. */
1471
1594
  quotaUser?:
1472
1595
  string;
1596
+ /**
1597
+ * 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
1598
+ * 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
1599
+ * 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
1600
+ * 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
1601
+ * supported (00000000-0000-0000-0000-000000000000).
1602
+ */
1603
+ requestId?:
1604
+ string;
1473
1605
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1474
1606
  upload_protocol?:
1475
1607
  string;
@@ -1477,11 +1609,8 @@ declare namespace gapi.client {
1477
1609
  uploadType?:
1478
1610
  string;
1479
1611
  },
1480
- body: CancelOperationRequest): Request<{}>;
1481
- /**
1482
- * Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't
1483
- * support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
1484
- */
1612
+ body: FirewallEndpoint): Request<Operation>;
1613
+ /** Deletes a single Endpoint. */
1485
1614
  delete(request?: {
1486
1615
  /** V1 error format. */
1487
1616
  "$.xgafv"?:
@@ -1501,7 +1630,7 @@ declare namespace gapi.client {
1501
1630
  /** 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. */
1502
1631
  key?:
1503
1632
  string;
1504
- /** The name of the operation resource to be deleted. */
1633
+ /** Required. Name of the resource */
1505
1634
  name:
1506
1635
  string;
1507
1636
  /** OAuth 2.0 token for the current user. */
@@ -1513,14 +1642,23 @@ declare namespace gapi.client {
1513
1642
  /** 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. */
1514
1643
  quotaUser?:
1515
1644
  string;
1645
+ /**
1646
+ * 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
1647
+ * 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
1648
+ * 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
1649
+ * 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
1650
+ * supported (00000000-0000-0000-0000-000000000000).
1651
+ */
1652
+ requestId?:
1653
+ string;
1516
1654
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1517
1655
  upload_protocol?:
1518
1656
  string;
1519
1657
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1520
1658
  uploadType?:
1521
1659
  string;
1522
- }): Request<{}>;
1523
- /** Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */
1660
+ }): Request<Operation>;
1661
+ /** Gets details of a single Endpoint. */
1524
1662
  get(request?: {
1525
1663
  /** V1 error format. */
1526
1664
  "$.xgafv"?:
@@ -1540,7 +1678,7 @@ declare namespace gapi.client {
1540
1678
  /** 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. */
1541
1679
  key?:
1542
1680
  string;
1543
- /** The name of the operation resource. */
1681
+ /** Required. Name of the resource */
1544
1682
  name:
1545
1683
  string;
1546
1684
  /** OAuth 2.0 token for the current user. */
@@ -1558,8 +1696,8 @@ declare namespace gapi.client {
1558
1696
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1559
1697
  uploadType?:
1560
1698
  string;
1561
- }): Request<Operation>;
1562
- /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
1699
+ }): Request<FirewallEndpoint>;
1700
+ /** Lists FirewallEndpoints in a given project and location. */
1563
1701
  list(request?: {
1564
1702
  /** V1 error format. */
1565
1703
  "$.xgafv"?:
@@ -1576,24 +1714,27 @@ declare namespace gapi.client {
1576
1714
  /** Selector specifying which fields to include in a partial response. */
1577
1715
  fields?:
1578
1716
  string;
1579
- /** The standard list filter. */
1717
+ /** Filtering results */
1580
1718
  filter?:
1581
1719
  string;
1582
1720
  /** 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. */
1583
1721
  key?:
1584
1722
  string;
1585
- /** The name of the operation's parent resource. */
1586
- name:
1587
- string;
1588
1723
  /** OAuth 2.0 token for the current user. */
1589
1724
  oauth_token?:
1590
1725
  string;
1591
- /** The standard list page size. */
1726
+ /** Hint for how to order the results */
1727
+ orderBy?:
1728
+ string;
1729
+ /** Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. */
1592
1730
  pageSize?:
1593
1731
  number;
1594
- /** The standard list page token. */
1732
+ /** A token identifying a page of results the server should return. */
1595
1733
  pageToken?:
1596
1734
  string;
1735
+ /** Required. Parent value for ListEndpointsRequest */
1736
+ parent:
1737
+ string;
1597
1738
  /** Returns response with indentations and line breaks. */
1598
1739
  prettyPrint?:
1599
1740
  boolean;
@@ -1606,30 +1747,15 @@ declare namespace gapi.client {
1606
1747
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1607
1748
  uploadType?:
1608
1749
  string;
1609
- }): Request<ListOperationsResponse>;
1610
- }
1611
- interface LocationsResource {
1612
- addressGroups:
1613
- AddressGroupsResource;
1614
- operations:
1615
- OperationsResource;
1616
- }
1617
- interface OrganizationsResource {
1618
- locations:
1619
- LocationsResource;
1620
- }
1621
- interface AddressGroupsResource {
1622
- /** Adds items to an address group. */
1623
- addItems(request: {
1750
+ }): Request<ListFirewallEndpointsResponse>;
1751
+ /** Update a single Endpoint. */
1752
+ patch(request: {
1624
1753
  /** V1 error format. */
1625
1754
  "$.xgafv"?:
1626
1755
  string;
1627
1756
  /** OAuth access token. */
1628
1757
  access_token?:
1629
1758
  string;
1630
- /** Required. A name of the AddressGroup to add items to. Must be in the format `projects|organization/*‍/locations/{location}/addressGroups/*`. */
1631
- addressGroup:
1632
- string;
1633
1759
  /** Data format for response. */
1634
1760
  alt?:
1635
1761
  string;
@@ -1642,6 +1768,9 @@ declare namespace gapi.client {
1642
1768
  /** 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. */
1643
1769
  key?:
1644
1770
  string;
1771
+ /** Output only. name of resource */
1772
+ name:
1773
+ string;
1645
1774
  /** OAuth 2.0 token for the current user. */
1646
1775
  oauth_token?:
1647
1776
  string;
@@ -1651,6 +1780,21 @@ declare namespace gapi.client {
1651
1780
  /** 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. */
1652
1781
  quotaUser?:
1653
1782
  string;
1783
+ /**
1784
+ * 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
1785
+ * 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
1786
+ * 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
1787
+ * 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
1788
+ * supported (00000000-0000-0000-0000-000000000000).
1789
+ */
1790
+ requestId?:
1791
+ string;
1792
+ /**
1793
+ * 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
1794
+ * 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.
1795
+ */
1796
+ updateMask?:
1797
+ string;
1654
1798
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1655
1799
  upload_protocol?:
1656
1800
  string;
@@ -1659,18 +1803,15 @@ declare namespace gapi.client {
1659
1803
  string;
1660
1804
  /** Request body */
1661
1805
  resource:
1662
- AddAddressGroupItemsRequest;
1806
+ FirewallEndpoint;
1663
1807
  }): Request<Operation>;
1664
- addItems(request: {
1808
+ patch(request: {
1665
1809
  /** V1 error format. */
1666
1810
  "$.xgafv"?:
1667
1811
  string;
1668
1812
  /** OAuth access token. */
1669
1813
  access_token?:
1670
1814
  string;
1671
- /** Required. A name of the AddressGroup to add items to. Must be in the format `projects|organization/*‍/locations/{location}/addressGroups/*`. */
1672
- addressGroup:
1673
- string;
1674
1815
  /** Data format for response. */
1675
1816
  alt?:
1676
1817
  string;
@@ -1683,6 +1824,9 @@ declare namespace gapi.client {
1683
1824
  /** 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. */
1684
1825
  key?:
1685
1826
  string;
1827
+ /** Output only. name of resource */
1828
+ name:
1829
+ string;
1686
1830
  /** OAuth 2.0 token for the current user. */
1687
1831
  oauth_token?:
1688
1832
  string;
@@ -1692,6 +1836,21 @@ declare namespace gapi.client {
1692
1836
  /** 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. */
1693
1837
  quotaUser?:
1694
1838
  string;
1839
+ /**
1840
+ * 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
1841
+ * 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
1842
+ * 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
1843
+ * 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
1844
+ * supported (00000000-0000-0000-0000-000000000000).
1845
+ */
1846
+ requestId?:
1847
+ string;
1848
+ /**
1849
+ * 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
1850
+ * 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.
1851
+ */
1852
+ updateMask?:
1853
+ string;
1695
1854
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1696
1855
  upload_protocol?:
1697
1856
  string;
@@ -1699,18 +1858,22 @@ declare namespace gapi.client {
1699
1858
  uploadType?:
1700
1859
  string;
1701
1860
  },
1702
- body: AddAddressGroupItemsRequest): Request<Operation>;
1703
- /** Clones items from one address group to another. */
1704
- cloneItems(request: {
1861
+ body: FirewallEndpoint): Request<Operation>;
1862
+ }
1863
+ interface OperationsResource {
1864
+ /**
1865
+ * 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
1866
+ * this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the
1867
+ * operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a
1868
+ * google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
1869
+ */
1870
+ cancel(request: {
1705
1871
  /** V1 error format. */
1706
1872
  "$.xgafv"?:
1707
1873
  string;
1708
1874
  /** OAuth access token. */
1709
1875
  access_token?:
1710
1876
  string;
1711
- /** Required. A name of the AddressGroup to clone items to. Must be in the format `projects|organization/*‍/locations/{location}/addressGroups/*`. */
1712
- addressGroup:
1713
- string;
1714
1877
  /** Data format for response. */
1715
1878
  alt?:
1716
1879
  string;
@@ -1723,6 +1886,9 @@ declare namespace gapi.client {
1723
1886
  /** 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. */
1724
1887
  key?:
1725
1888
  string;
1889
+ /** The name of the operation resource to be cancelled. */
1890
+ name:
1891
+ string;
1726
1892
  /** OAuth 2.0 token for the current user. */
1727
1893
  oauth_token?:
1728
1894
  string;
@@ -1740,18 +1906,15 @@ declare namespace gapi.client {
1740
1906
  string;
1741
1907
  /** Request body */
1742
1908
  resource:
1743
- CloneAddressGroupItemsRequest;
1744
- }): Request<Operation>;
1745
- cloneItems(request: {
1909
+ CancelOperationRequest;
1910
+ }): Request<{}>;
1911
+ cancel(request: {
1746
1912
  /** V1 error format. */
1747
1913
  "$.xgafv"?:
1748
1914
  string;
1749
1915
  /** OAuth access token. */
1750
1916
  access_token?:
1751
1917
  string;
1752
- /** Required. A name of the AddressGroup to clone items to. Must be in the format `projects|organization/*‍/locations/{location}/addressGroups/*`. */
1753
- addressGroup:
1754
- string;
1755
1918
  /** Data format for response. */
1756
1919
  alt?:
1757
1920
  string;
@@ -1764,6 +1927,9 @@ declare namespace gapi.client {
1764
1927
  /** 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. */
1765
1928
  key?:
1766
1929
  string;
1930
+ /** The name of the operation resource to be cancelled. */
1931
+ name:
1932
+ string;
1767
1933
  /** OAuth 2.0 token for the current user. */
1768
1934
  oauth_token?:
1769
1935
  string;
@@ -1780,21 +1946,18 @@ declare namespace gapi.client {
1780
1946
  uploadType?:
1781
1947
  string;
1782
1948
  },
1783
- body: CloneAddressGroupItemsRequest): Request<Operation>;
1784
- /** Creates a new address group in a given project and location. */
1785
- create(request: {
1949
+ body: CancelOperationRequest): Request<{}>;
1950
+ /**
1951
+ * Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't
1952
+ * support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
1953
+ */
1954
+ delete(request?: {
1786
1955
  /** V1 error format. */
1787
1956
  "$.xgafv"?:
1788
1957
  string;
1789
1958
  /** OAuth access token. */
1790
1959
  access_token?:
1791
1960
  string;
1792
- /**
1793
- * Required. Short name of the AddressGroup resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and
1794
- * should not start with a number. E.g. "authz_policy".
1795
- */
1796
- addressGroupId?:
1797
- string;
1798
1961
  /** Data format for response. */
1799
1962
  alt?:
1800
1963
  string;
@@ -1807,46 +1970,354 @@ declare namespace gapi.client {
1807
1970
  /** 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. */
1808
1971
  key?:
1809
1972
  string;
1973
+ /** The name of the operation resource to be deleted. */
1974
+ name:
1975
+ string;
1810
1976
  /** OAuth 2.0 token for the current user. */
1811
1977
  oauth_token?:
1812
1978
  string;
1813
- /** Required. The parent resource of the AddressGroup. Must be in the format `projects/*‍/locations/{location}`. */
1814
- parent:
1815
- string;
1816
1979
  /** Returns response with indentations and line breaks. */
1817
1980
  prettyPrint?:
1818
1981
  boolean;
1819
1982
  /** 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. */
1820
1983
  quotaUser?:
1821
1984
  string;
1822
- /**
1823
- * 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
1824
- * 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
1825
- * 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
1826
- * 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
1827
- * supported (00000000-0000-0000-0000-000000000000).
1828
- */
1829
- requestId?:
1830
- string;
1831
1985
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1832
1986
  upload_protocol?:
1833
1987
  string;
1834
1988
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1835
1989
  uploadType?:
1836
1990
  string;
1837
- /** Request body */
1838
- resource:
1839
- AddressGroup;
1840
- }): Request<Operation>;
1841
- create(request: {
1991
+ }): Request<{}>;
1992
+ /** Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */
1993
+ get(request?: {
1842
1994
  /** V1 error format. */
1843
1995
  "$.xgafv"?:
1844
1996
  string;
1845
1997
  /** OAuth access token. */
1846
1998
  access_token?:
1847
1999
  string;
1848
- /**
1849
- * Required. Short name of the AddressGroup resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and
2000
+ /** Data format for response. */
2001
+ alt?:
2002
+ string;
2003
+ /** JSONP */
2004
+ callback?:
2005
+ string;
2006
+ /** Selector specifying which fields to include in a partial response. */
2007
+ fields?:
2008
+ string;
2009
+ /** 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. */
2010
+ key?:
2011
+ string;
2012
+ /** The name of the operation resource. */
2013
+ name:
2014
+ string;
2015
+ /** OAuth 2.0 token for the current user. */
2016
+ oauth_token?:
2017
+ string;
2018
+ /** Returns response with indentations and line breaks. */
2019
+ prettyPrint?:
2020
+ boolean;
2021
+ /** 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. */
2022
+ quotaUser?:
2023
+ string;
2024
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2025
+ upload_protocol?:
2026
+ string;
2027
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2028
+ uploadType?:
2029
+ string;
2030
+ }): Request<Operation>;
2031
+ /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
2032
+ list(request?: {
2033
+ /** V1 error format. */
2034
+ "$.xgafv"?:
2035
+ string;
2036
+ /** OAuth access token. */
2037
+ access_token?:
2038
+ string;
2039
+ /** Data format for response. */
2040
+ alt?:
2041
+ string;
2042
+ /** JSONP */
2043
+ callback?:
2044
+ string;
2045
+ /** Selector specifying which fields to include in a partial response. */
2046
+ fields?:
2047
+ string;
2048
+ /** The standard list filter. */
2049
+ filter?:
2050
+ string;
2051
+ /** 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. */
2052
+ key?:
2053
+ string;
2054
+ /** The name of the operation's parent resource. */
2055
+ name:
2056
+ string;
2057
+ /** OAuth 2.0 token for the current user. */
2058
+ oauth_token?:
2059
+ string;
2060
+ /** The standard list page size. */
2061
+ pageSize?:
2062
+ number;
2063
+ /** The standard list page token. */
2064
+ pageToken?:
2065
+ string;
2066
+ /** Returns response with indentations and line breaks. */
2067
+ prettyPrint?:
2068
+ boolean;
2069
+ /** 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. */
2070
+ quotaUser?:
2071
+ string;
2072
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2073
+ upload_protocol?:
2074
+ string;
2075
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2076
+ uploadType?:
2077
+ string;
2078
+ }): Request<ListOperationsResponse>;
2079
+ }
2080
+ interface LocationsResource {
2081
+ addressGroups:
2082
+ AddressGroupsResource;
2083
+ firewallEndpoints:
2084
+ FirewallEndpointsResource;
2085
+ operations:
2086
+ OperationsResource;
2087
+ }
2088
+ interface OrganizationsResource {
2089
+ locations:
2090
+ LocationsResource;
2091
+ }
2092
+ interface AddressGroupsResource {
2093
+ /** Adds items to an address group. */
2094
+ addItems(request: {
2095
+ /** V1 error format. */
2096
+ "$.xgafv"?:
2097
+ string;
2098
+ /** OAuth access token. */
2099
+ access_token?:
2100
+ string;
2101
+ /** Required. A name of the AddressGroup to add items to. Must be in the format `projects|organization/*‍/locations/{location}/addressGroups/*`. */
2102
+ addressGroup:
2103
+ string;
2104
+ /** Data format for response. */
2105
+ alt?:
2106
+ string;
2107
+ /** JSONP */
2108
+ callback?:
2109
+ string;
2110
+ /** Selector specifying which fields to include in a partial response. */
2111
+ fields?:
2112
+ string;
2113
+ /** 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. */
2114
+ key?:
2115
+ string;
2116
+ /** OAuth 2.0 token for the current user. */
2117
+ oauth_token?:
2118
+ string;
2119
+ /** Returns response with indentations and line breaks. */
2120
+ prettyPrint?:
2121
+ boolean;
2122
+ /** 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. */
2123
+ quotaUser?:
2124
+ string;
2125
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2126
+ upload_protocol?:
2127
+ string;
2128
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2129
+ uploadType?:
2130
+ string;
2131
+ /** Request body */
2132
+ resource:
2133
+ AddAddressGroupItemsRequest;
2134
+ }): Request<Operation>;
2135
+ addItems(request: {
2136
+ /** V1 error format. */
2137
+ "$.xgafv"?:
2138
+ string;
2139
+ /** OAuth access token. */
2140
+ access_token?:
2141
+ string;
2142
+ /** Required. A name of the AddressGroup to add items to. Must be in the format `projects|organization/*‍/locations/{location}/addressGroups/*`. */
2143
+ addressGroup:
2144
+ string;
2145
+ /** Data format for response. */
2146
+ alt?:
2147
+ string;
2148
+ /** JSONP */
2149
+ callback?:
2150
+ string;
2151
+ /** Selector specifying which fields to include in a partial response. */
2152
+ fields?:
2153
+ string;
2154
+ /** 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. */
2155
+ key?:
2156
+ string;
2157
+ /** OAuth 2.0 token for the current user. */
2158
+ oauth_token?:
2159
+ string;
2160
+ /** Returns response with indentations and line breaks. */
2161
+ prettyPrint?:
2162
+ boolean;
2163
+ /** 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. */
2164
+ quotaUser?:
2165
+ string;
2166
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2167
+ upload_protocol?:
2168
+ string;
2169
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2170
+ uploadType?:
2171
+ string;
2172
+ },
2173
+ body: AddAddressGroupItemsRequest): Request<Operation>;
2174
+ /** Clones items from one address group to another. */
2175
+ cloneItems(request: {
2176
+ /** V1 error format. */
2177
+ "$.xgafv"?:
2178
+ string;
2179
+ /** OAuth access token. */
2180
+ access_token?:
2181
+ string;
2182
+ /** Required. A name of the AddressGroup to clone items to. Must be in the format `projects|organization/*‍/locations/{location}/addressGroups/*`. */
2183
+ addressGroup:
2184
+ string;
2185
+ /** Data format for response. */
2186
+ alt?:
2187
+ string;
2188
+ /** JSONP */
2189
+ callback?:
2190
+ string;
2191
+ /** Selector specifying which fields to include in a partial response. */
2192
+ fields?:
2193
+ string;
2194
+ /** 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. */
2195
+ key?:
2196
+ string;
2197
+ /** OAuth 2.0 token for the current user. */
2198
+ oauth_token?:
2199
+ string;
2200
+ /** Returns response with indentations and line breaks. */
2201
+ prettyPrint?:
2202
+ boolean;
2203
+ /** 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. */
2204
+ quotaUser?:
2205
+ string;
2206
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2207
+ upload_protocol?:
2208
+ string;
2209
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2210
+ uploadType?:
2211
+ string;
2212
+ /** Request body */
2213
+ resource:
2214
+ CloneAddressGroupItemsRequest;
2215
+ }): Request<Operation>;
2216
+ cloneItems(request: {
2217
+ /** V1 error format. */
2218
+ "$.xgafv"?:
2219
+ string;
2220
+ /** OAuth access token. */
2221
+ access_token?:
2222
+ string;
2223
+ /** Required. A name of the AddressGroup to clone items to. Must be in the format `projects|organization/*‍/locations/{location}/addressGroups/*`. */
2224
+ addressGroup:
2225
+ string;
2226
+ /** Data format for response. */
2227
+ alt?:
2228
+ string;
2229
+ /** JSONP */
2230
+ callback?:
2231
+ string;
2232
+ /** Selector specifying which fields to include in a partial response. */
2233
+ fields?:
2234
+ string;
2235
+ /** 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. */
2236
+ key?:
2237
+ string;
2238
+ /** OAuth 2.0 token for the current user. */
2239
+ oauth_token?:
2240
+ string;
2241
+ /** Returns response with indentations and line breaks. */
2242
+ prettyPrint?:
2243
+ boolean;
2244
+ /** 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. */
2245
+ quotaUser?:
2246
+ string;
2247
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2248
+ upload_protocol?:
2249
+ string;
2250
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2251
+ uploadType?:
2252
+ string;
2253
+ },
2254
+ body: CloneAddressGroupItemsRequest): Request<Operation>;
2255
+ /** Creates a new address group in a given project and location. */
2256
+ create(request: {
2257
+ /** V1 error format. */
2258
+ "$.xgafv"?:
2259
+ string;
2260
+ /** OAuth access token. */
2261
+ access_token?:
2262
+ string;
2263
+ /**
2264
+ * Required. Short name of the AddressGroup resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and
2265
+ * should not start with a number. E.g. "authz_policy".
2266
+ */
2267
+ addressGroupId?:
2268
+ string;
2269
+ /** Data format for response. */
2270
+ alt?:
2271
+ string;
2272
+ /** JSONP */
2273
+ callback?:
2274
+ string;
2275
+ /** Selector specifying which fields to include in a partial response. */
2276
+ fields?:
2277
+ string;
2278
+ /** 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. */
2279
+ key?:
2280
+ string;
2281
+ /** OAuth 2.0 token for the current user. */
2282
+ oauth_token?:
2283
+ string;
2284
+ /** Required. The parent resource of the AddressGroup. Must be in the format `projects/*‍/locations/{location}`. */
2285
+ parent:
2286
+ string;
2287
+ /** Returns response with indentations and line breaks. */
2288
+ prettyPrint?:
2289
+ boolean;
2290
+ /** 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. */
2291
+ quotaUser?:
2292
+ string;
2293
+ /**
2294
+ * 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
2295
+ * 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
2296
+ * 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
2297
+ * 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
2298
+ * supported (00000000-0000-0000-0000-000000000000).
2299
+ */
2300
+ requestId?:
2301
+ string;
2302
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2303
+ upload_protocol?:
2304
+ string;
2305
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2306
+ uploadType?:
2307
+ string;
2308
+ /** Request body */
2309
+ resource:
2310
+ AddressGroup;
2311
+ }): Request<Operation>;
2312
+ create(request: {
2313
+ /** V1 error format. */
2314
+ "$.xgafv"?:
2315
+ string;
2316
+ /** OAuth access token. */
2317
+ access_token?:
2318
+ string;
2319
+ /**
2320
+ * Required. Short name of the AddressGroup resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and
1850
2321
  * should not start with a number. E.g. "authz_policy".
1851
2322
  */
1852
2323
  addressGroupId?:
@@ -1866,8 +2337,291 @@ declare namespace gapi.client {
1866
2337
  /** OAuth 2.0 token for the current user. */
1867
2338
  oauth_token?:
1868
2339
  string;
1869
- /** Required. The parent resource of the AddressGroup. Must be in the format `projects/*‍/locations/{location}`. */
1870
- parent:
2340
+ /** Required. The parent resource of the AddressGroup. Must be in the format `projects/*‍/locations/{location}`. */
2341
+ parent:
2342
+ string;
2343
+ /** Returns response with indentations and line breaks. */
2344
+ prettyPrint?:
2345
+ boolean;
2346
+ /** 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. */
2347
+ quotaUser?:
2348
+ string;
2349
+ /**
2350
+ * 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
2351
+ * 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
2352
+ * 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
2353
+ * 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
2354
+ * supported (00000000-0000-0000-0000-000000000000).
2355
+ */
2356
+ requestId?:
2357
+ string;
2358
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2359
+ upload_protocol?:
2360
+ string;
2361
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2362
+ uploadType?:
2363
+ string;
2364
+ },
2365
+ body: AddressGroup): Request<Operation>;
2366
+ /** Deletes a single address group. */
2367
+ delete(request?: {
2368
+ /** V1 error format. */
2369
+ "$.xgafv"?:
2370
+ string;
2371
+ /** OAuth access token. */
2372
+ access_token?:
2373
+ string;
2374
+ /** Data format for response. */
2375
+ alt?:
2376
+ string;
2377
+ /** JSONP */
2378
+ callback?:
2379
+ string;
2380
+ /** Selector specifying which fields to include in a partial response. */
2381
+ fields?:
2382
+ string;
2383
+ /** 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. */
2384
+ key?:
2385
+ string;
2386
+ /** Required. A name of the AddressGroup to delete. Must be in the format `projects/*‍/locations/{location}/addressGroups/*`. */
2387
+ name:
2388
+ string;
2389
+ /** OAuth 2.0 token for the current user. */
2390
+ oauth_token?:
2391
+ string;
2392
+ /** Returns response with indentations and line breaks. */
2393
+ prettyPrint?:
2394
+ boolean;
2395
+ /** 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. */
2396
+ quotaUser?:
2397
+ string;
2398
+ /**
2399
+ * 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
2400
+ * 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
2401
+ * 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
2402
+ * 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
2403
+ * supported (00000000-0000-0000-0000-000000000000).
2404
+ */
2405
+ requestId?:
2406
+ string;
2407
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2408
+ upload_protocol?:
2409
+ string;
2410
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2411
+ uploadType?:
2412
+ string;
2413
+ }): Request<Operation>;
2414
+ /** Gets details of a single address group. */
2415
+ get(request?: {
2416
+ /** V1 error format. */
2417
+ "$.xgafv"?:
2418
+ string;
2419
+ /** OAuth access token. */
2420
+ access_token?:
2421
+ string;
2422
+ /** Data format for response. */
2423
+ alt?:
2424
+ string;
2425
+ /** JSONP */
2426
+ callback?:
2427
+ string;
2428
+ /** Selector specifying which fields to include in a partial response. */
2429
+ fields?:
2430
+ string;
2431
+ /** 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. */
2432
+ key?:
2433
+ string;
2434
+ /** Required. A name of the AddressGroup to get. Must be in the format `projects/*‍/locations/{location}/addressGroups/*`. */
2435
+ name:
2436
+ string;
2437
+ /** OAuth 2.0 token for the current user. */
2438
+ oauth_token?:
2439
+ string;
2440
+ /** Returns response with indentations and line breaks. */
2441
+ prettyPrint?:
2442
+ boolean;
2443
+ /** 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. */
2444
+ quotaUser?:
2445
+ string;
2446
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2447
+ upload_protocol?:
2448
+ string;
2449
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2450
+ uploadType?:
2451
+ string;
2452
+ }): Request<AddressGroup>;
2453
+ /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
2454
+ getIamPolicy(request?: {
2455
+ /** V1 error format. */
2456
+ "$.xgafv"?:
2457
+ string;
2458
+ /** OAuth access token. */
2459
+ access_token?:
2460
+ string;
2461
+ /** Data format for response. */
2462
+ alt?:
2463
+ string;
2464
+ /** JSONP */
2465
+ callback?:
2466
+ string;
2467
+ /** Selector specifying which fields to include in a partial response. */
2468
+ fields?:
2469
+ string;
2470
+ /** 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. */
2471
+ key?:
2472
+ string;
2473
+ /** OAuth 2.0 token for the current user. */
2474
+ oauth_token?:
2475
+ string;
2476
+ /**
2477
+ * 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
2478
+ * 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
2479
+ * 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
2480
+ * role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM
2481
+ * documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
2482
+ */
2483
+ "options.requestedPolicyVersion"?:
2484
+ number;
2485
+ /** Returns response with indentations and line breaks. */
2486
+ prettyPrint?:
2487
+ boolean;
2488
+ /** 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. */
2489
+ quotaUser?:
2490
+ string;
2491
+ /**
2492
+ * 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
2493
+ * field.
2494
+ */
2495
+ resource:
2496
+ string;
2497
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2498
+ upload_protocol?:
2499
+ string;
2500
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2501
+ uploadType?:
2502
+ string;
2503
+ }): Request<GoogleIamV1Policy>;
2504
+ /** Lists address groups in a given project and location. */
2505
+ list(request?: {
2506
+ /** V1 error format. */
2507
+ "$.xgafv"?:
2508
+ string;
2509
+ /** OAuth access token. */
2510
+ access_token?:
2511
+ string;
2512
+ /** Data format for response. */
2513
+ alt?:
2514
+ string;
2515
+ /** JSONP */
2516
+ callback?:
2517
+ string;
2518
+ /** Selector specifying which fields to include in a partial response. */
2519
+ fields?:
2520
+ string;
2521
+ /** 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. */
2522
+ key?:
2523
+ string;
2524
+ /** OAuth 2.0 token for the current user. */
2525
+ oauth_token?:
2526
+ string;
2527
+ /** Maximum number of AddressGroups to return per call. */
2528
+ pageSize?:
2529
+ number;
2530
+ /**
2531
+ * The value returned by the last `ListAddressGroupsResponse` Indicates that this is a continuation of a prior `ListAddressGroups` call, and that the system should return the next
2532
+ * page of data.
2533
+ */
2534
+ pageToken?:
2535
+ string;
2536
+ /** Required. The project and location from which the AddressGroups should be listed, specified in the format `projects/*‍/locations/{location}`. */
2537
+ parent:
2538
+ string;
2539
+ /** Returns response with indentations and line breaks. */
2540
+ prettyPrint?:
2541
+ boolean;
2542
+ /** 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. */
2543
+ quotaUser?:
2544
+ string;
2545
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2546
+ upload_protocol?:
2547
+ string;
2548
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2549
+ uploadType?:
2550
+ string;
2551
+ }): Request<ListAddressGroupsResponse>;
2552
+ /** Lists references of an address group. */
2553
+ listReferences(request?: {
2554
+ /** V1 error format. */
2555
+ "$.xgafv"?:
2556
+ string;
2557
+ /** OAuth access token. */
2558
+ access_token?:
2559
+ string;
2560
+ /** Required. A name of the AddressGroup to clone items to. Must be in the format `projects|organization/*‍/locations/{location}/addressGroups/*`. */
2561
+ addressGroup:
2562
+ string;
2563
+ /** Data format for response. */
2564
+ alt?:
2565
+ string;
2566
+ /** JSONP */
2567
+ callback?:
2568
+ string;
2569
+ /** Selector specifying which fields to include in a partial response. */
2570
+ fields?:
2571
+ string;
2572
+ /** 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. */
2573
+ key?:
2574
+ string;
2575
+ /** OAuth 2.0 token for the current user. */
2576
+ oauth_token?:
2577
+ string;
2578
+ /**
2579
+ * The maximum number of references to return. If unspecified, server will pick an appropriate default. Server may return fewer items than requested. A caller should only rely on
2580
+ * response's next_page_token to determine if there are more AddressGroupUsers left to be queried.
2581
+ */
2582
+ pageSize?:
2583
+ number;
2584
+ /** The next_page_token value returned from a previous List request, if any. */
2585
+ pageToken?:
2586
+ string;
2587
+ /** Returns response with indentations and line breaks. */
2588
+ prettyPrint?:
2589
+ boolean;
2590
+ /** 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. */
2591
+ quotaUser?:
2592
+ string;
2593
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2594
+ upload_protocol?:
2595
+ string;
2596
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2597
+ uploadType?:
2598
+ string;
2599
+ }): Request<ListAddressGroupReferencesResponse>;
2600
+ /** Updates the parameters of a single address group. */
2601
+ patch(request: {
2602
+ /** V1 error format. */
2603
+ "$.xgafv"?:
2604
+ string;
2605
+ /** OAuth access token. */
2606
+ access_token?:
2607
+ string;
2608
+ /** Data format for response. */
2609
+ alt?:
2610
+ string;
2611
+ /** JSONP */
2612
+ callback?:
2613
+ string;
2614
+ /** Selector specifying which fields to include in a partial response. */
2615
+ fields?:
2616
+ string;
2617
+ /** 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. */
2618
+ key?:
2619
+ string;
2620
+ /** Required. Name of the AddressGroup resource. It matches pattern `projects/*‍/locations/{location}/addressGroups/`. */
2621
+ name:
2622
+ string;
2623
+ /** OAuth 2.0 token for the current user. */
2624
+ oauth_token?:
1871
2625
  string;
1872
2626
  /** Returns response with indentations and line breaks. */
1873
2627
  prettyPrint?:
@@ -1884,16 +2638,23 @@ declare namespace gapi.client {
1884
2638
  */
1885
2639
  requestId?:
1886
2640
  string;
2641
+ /**
2642
+ * Optional. Field mask is used to specify the fields to be overwritten in the AddressGroup resource by the update. The fields specified in the update_mask are relative to the
2643
+ * 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.
2644
+ */
2645
+ updateMask?:
2646
+ string;
1887
2647
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1888
2648
  upload_protocol?:
1889
2649
  string;
1890
2650
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1891
2651
  uploadType?:
1892
2652
  string;
1893
- },
1894
- body: AddressGroup): Request<Operation>;
1895
- /** Deletes a single address group. */
1896
- delete(request?: {
2653
+ /** Request body */
2654
+ resource:
2655
+ AddressGroup;
2656
+ }): Request<Operation>;
2657
+ patch(request: {
1897
2658
  /** V1 error format. */
1898
2659
  "$.xgafv"?:
1899
2660
  string;
@@ -1912,7 +2673,7 @@ declare namespace gapi.client {
1912
2673
  /** 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. */
1913
2674
  key?:
1914
2675
  string;
1915
- /** Required. A name of the AddressGroup to delete. Must be in the format `projects/*‍/locations/{location}/addressGroups/*`. */
2676
+ /** Required. Name of the AddressGroup resource. It matches pattern `projects/*‍/locations/{location}/addressGroups/`. */
1916
2677
  name:
1917
2678
  string;
1918
2679
  /** OAuth 2.0 token for the current user. */
@@ -1931,7 +2692,183 @@ declare namespace gapi.client {
1931
2692
  * 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
1932
2693
  * supported (00000000-0000-0000-0000-000000000000).
1933
2694
  */
1934
- requestId?:
2695
+ requestId?:
2696
+ string;
2697
+ /**
2698
+ * Optional. Field mask is used to specify the fields to be overwritten in the AddressGroup resource by the update. The fields specified in the update_mask are relative to the
2699
+ * 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.
2700
+ */
2701
+ updateMask?:
2702
+ string;
2703
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2704
+ upload_protocol?:
2705
+ string;
2706
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2707
+ uploadType?:
2708
+ string;
2709
+ },
2710
+ body: AddressGroup): Request<Operation>;
2711
+ /** Removes items from an address group. */
2712
+ removeItems(request: {
2713
+ /** V1 error format. */
2714
+ "$.xgafv"?:
2715
+ string;
2716
+ /** OAuth access token. */
2717
+ access_token?:
2718
+ string;
2719
+ /** Required. A name of the AddressGroup to remove items from. Must be in the format `projects|organization/*‍/locations/{location}/addressGroups/*`. */
2720
+ addressGroup:
2721
+ string;
2722
+ /** Data format for response. */
2723
+ alt?:
2724
+ string;
2725
+ /** JSONP */
2726
+ callback?:
2727
+ string;
2728
+ /** Selector specifying which fields to include in a partial response. */
2729
+ fields?:
2730
+ string;
2731
+ /** 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. */
2732
+ key?:
2733
+ string;
2734
+ /** OAuth 2.0 token for the current user. */
2735
+ oauth_token?:
2736
+ string;
2737
+ /** Returns response with indentations and line breaks. */
2738
+ prettyPrint?:
2739
+ boolean;
2740
+ /** 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. */
2741
+ quotaUser?:
2742
+ string;
2743
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2744
+ upload_protocol?:
2745
+ string;
2746
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2747
+ uploadType?:
2748
+ string;
2749
+ /** Request body */
2750
+ resource:
2751
+ RemoveAddressGroupItemsRequest;
2752
+ }): Request<Operation>;
2753
+ removeItems(request: {
2754
+ /** V1 error format. */
2755
+ "$.xgafv"?:
2756
+ string;
2757
+ /** OAuth access token. */
2758
+ access_token?:
2759
+ string;
2760
+ /** Required. A name of the AddressGroup to remove items from. Must be in the format `projects|organization/*‍/locations/{location}/addressGroups/*`. */
2761
+ addressGroup:
2762
+ string;
2763
+ /** Data format for response. */
2764
+ alt?:
2765
+ string;
2766
+ /** JSONP */
2767
+ callback?:
2768
+ string;
2769
+ /** Selector specifying which fields to include in a partial response. */
2770
+ fields?:
2771
+ string;
2772
+ /** 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. */
2773
+ key?:
2774
+ string;
2775
+ /** OAuth 2.0 token for the current user. */
2776
+ oauth_token?:
2777
+ string;
2778
+ /** Returns response with indentations and line breaks. */
2779
+ prettyPrint?:
2780
+ boolean;
2781
+ /** 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. */
2782
+ quotaUser?:
2783
+ string;
2784
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2785
+ upload_protocol?:
2786
+ string;
2787
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2788
+ uploadType?:
2789
+ string;
2790
+ },
2791
+ body: RemoveAddressGroupItemsRequest): Request<Operation>;
2792
+ /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
2793
+ setIamPolicy(request: {
2794
+ /** V1 error format. */
2795
+ "$.xgafv"?:
2796
+ string;
2797
+ /** OAuth access token. */
2798
+ access_token?:
2799
+ string;
2800
+ /** Data format for response. */
2801
+ alt?:
2802
+ string;
2803
+ /** JSONP */
2804
+ callback?:
2805
+ string;
2806
+ /** Selector specifying which fields to include in a partial response. */
2807
+ fields?:
2808
+ string;
2809
+ /** 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. */
2810
+ key?:
2811
+ string;
2812
+ /** OAuth 2.0 token for the current user. */
2813
+ oauth_token?:
2814
+ string;
2815
+ /** Returns response with indentations and line breaks. */
2816
+ prettyPrint?:
2817
+ boolean;
2818
+ /** 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. */
2819
+ quotaUser?:
2820
+ string;
2821
+ /**
2822
+ * REQUIRED: The resource for which the policy is being specified. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this
2823
+ * field.
2824
+ */
2825
+ resource:
2826
+ string;
2827
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2828
+ upload_protocol?:
2829
+ string;
2830
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2831
+ uploadType?:
2832
+ string;
2833
+ },
2834
+ body: GoogleIamV1SetIamPolicyRequest): Request<GoogleIamV1Policy>;
2835
+ /**
2836
+ * 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
2837
+ * 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.
2838
+ */
2839
+ testIamPermissions(request: {
2840
+ /** V1 error format. */
2841
+ "$.xgafv"?:
2842
+ string;
2843
+ /** OAuth access token. */
2844
+ access_token?:
2845
+ string;
2846
+ /** Data format for response. */
2847
+ alt?:
2848
+ string;
2849
+ /** JSONP */
2850
+ callback?:
2851
+ string;
2852
+ /** Selector specifying which fields to include in a partial response. */
2853
+ fields?:
2854
+ string;
2855
+ /** 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. */
2856
+ key?:
2857
+ string;
2858
+ /** OAuth 2.0 token for the current user. */
2859
+ oauth_token?:
2860
+ string;
2861
+ /** Returns response with indentations and line breaks. */
2862
+ prettyPrint?:
2863
+ boolean;
2864
+ /** 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. */
2865
+ quotaUser?:
2866
+ string;
2867
+ /**
2868
+ * 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
2869
+ * this field.
2870
+ */
2871
+ resource:
1935
2872
  string;
1936
2873
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1937
2874
  upload_protocol?:
@@ -1939,9 +2876,12 @@ declare namespace gapi.client {
1939
2876
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1940
2877
  uploadType?:
1941
2878
  string;
1942
- }): Request<Operation>;
1943
- /** Gets details of a single address group. */
1944
- get(request?: {
2879
+ },
2880
+ body: GoogleIamV1TestIamPermissionsRequest): Request<GoogleIamV1TestIamPermissionsResponse>;
2881
+ }
2882
+ interface AuthorizationPoliciesResource {
2883
+ /** Creates a new AuthorizationPolicy in a given project and location. */
2884
+ create(request: {
1945
2885
  /** V1 error format. */
1946
2886
  "$.xgafv"?:
1947
2887
  string;
@@ -1951,6 +2891,12 @@ declare namespace gapi.client {
1951
2891
  /** Data format for response. */
1952
2892
  alt?:
1953
2893
  string;
2894
+ /**
2895
+ * Required. Short name of the AuthorizationPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores,
2896
+ * and should not start with a number. E.g. "authz_policy".
2897
+ */
2898
+ authorizationPolicyId?:
2899
+ string;
1954
2900
  /** JSONP */
1955
2901
  callback?:
1956
2902
  string;
@@ -1960,12 +2906,12 @@ declare namespace gapi.client {
1960
2906
  /** 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. */
1961
2907
  key?:
1962
2908
  string;
1963
- /** Required. A name of the AddressGroup to get. Must be in the format `projects/*‍/locations/{location}/addressGroups/*`. */
1964
- name:
1965
- string;
1966
2909
  /** OAuth 2.0 token for the current user. */
1967
2910
  oauth_token?:
1968
2911
  string;
2912
+ /** Required. The parent resource of the AuthorizationPolicy. Must be in the format `projects/{project}/locations/{location}`. */
2913
+ parent:
2914
+ string;
1969
2915
  /** Returns response with indentations and line breaks. */
1970
2916
  prettyPrint?:
1971
2917
  boolean;
@@ -1978,9 +2924,11 @@ declare namespace gapi.client {
1978
2924
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1979
2925
  uploadType?:
1980
2926
  string;
1981
- }): Request<AddressGroup>;
1982
- /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
1983
- getIamPolicy(request?: {
2927
+ /** Request body */
2928
+ resource:
2929
+ AuthorizationPolicy;
2930
+ }): Request<Operation>;
2931
+ create(request: {
1984
2932
  /** V1 error format. */
1985
2933
  "$.xgafv"?:
1986
2934
  string;
@@ -1990,6 +2938,12 @@ declare namespace gapi.client {
1990
2938
  /** Data format for response. */
1991
2939
  alt?:
1992
2940
  string;
2941
+ /**
2942
+ * Required. Short name of the AuthorizationPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores,
2943
+ * and should not start with a number. E.g. "authz_policy".
2944
+ */
2945
+ authorizationPolicyId?:
2946
+ string;
1993
2947
  /** JSONP */
1994
2948
  callback?:
1995
2949
  string;
@@ -2002,36 +2956,25 @@ declare namespace gapi.client {
2002
2956
  /** OAuth 2.0 token for the current user. */
2003
2957
  oauth_token?:
2004
2958
  string;
2005
- /**
2006
- * 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
2007
- * 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
2008
- * 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
2009
- * role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM
2010
- * documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
2011
- */
2012
- "options.requestedPolicyVersion"?:
2013
- number;
2959
+ /** Required. The parent resource of the AuthorizationPolicy. Must be in the format `projects/{project}/locations/{location}`. */
2960
+ parent:
2961
+ string;
2014
2962
  /** Returns response with indentations and line breaks. */
2015
2963
  prettyPrint?:
2016
2964
  boolean;
2017
2965
  /** 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. */
2018
2966
  quotaUser?:
2019
2967
  string;
2020
- /**
2021
- * 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
2022
- * field.
2023
- */
2024
- resource:
2025
- string;
2026
2968
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2027
2969
  upload_protocol?:
2028
2970
  string;
2029
2971
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2030
2972
  uploadType?:
2031
2973
  string;
2032
- }): Request<GoogleIamV1Policy>;
2033
- /** Lists address groups in a given project and location. */
2034
- list(request?: {
2974
+ },
2975
+ body: AuthorizationPolicy): Request<Operation>;
2976
+ /** Deletes a single AuthorizationPolicy. */
2977
+ delete(request?: {
2035
2978
  /** V1 error format. */
2036
2979
  "$.xgafv"?:
2037
2980
  string;
@@ -2050,21 +2993,12 @@ declare namespace gapi.client {
2050
2993
  /** 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. */
2051
2994
  key?:
2052
2995
  string;
2996
+ /** Required. A name of the AuthorizationPolicy to delete. Must be in the format `projects/{project}/locations/{location}/authorizationPolicies/*`. */
2997
+ name:
2998
+ string;
2053
2999
  /** OAuth 2.0 token for the current user. */
2054
3000
  oauth_token?:
2055
3001
  string;
2056
- /** Maximum number of AddressGroups to return per call. */
2057
- pageSize?:
2058
- number;
2059
- /**
2060
- * The value returned by the last `ListAddressGroupsResponse` Indicates that this is a continuation of a prior `ListAddressGroups` call, and that the system should return the next
2061
- * page of data.
2062
- */
2063
- pageToken?:
2064
- string;
2065
- /** Required. The project and location from which the AddressGroups should be listed, specified in the format `projects/*‍/locations/{location}`. */
2066
- parent:
2067
- string;
2068
3002
  /** Returns response with indentations and line breaks. */
2069
3003
  prettyPrint?:
2070
3004
  boolean;
@@ -2077,18 +3011,15 @@ declare namespace gapi.client {
2077
3011
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2078
3012
  uploadType?:
2079
3013
  string;
2080
- }): Request<ListAddressGroupsResponse>;
2081
- /** Lists references of an address group. */
2082
- listReferences(request?: {
3014
+ }): Request<Operation>;
3015
+ /** Gets details of a single AuthorizationPolicy. */
3016
+ get(request?: {
2083
3017
  /** V1 error format. */
2084
3018
  "$.xgafv"?:
2085
3019
  string;
2086
3020
  /** OAuth access token. */
2087
3021
  access_token?:
2088
3022
  string;
2089
- /** Required. A name of the AddressGroup to clone items to. Must be in the format `projects|organization/*‍/locations/{location}/addressGroups/*`. */
2090
- addressGroup:
2091
- string;
2092
3023
  /** Data format for response. */
2093
3024
  alt?:
2094
3025
  string;
@@ -2101,18 +3032,12 @@ declare namespace gapi.client {
2101
3032
  /** 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. */
2102
3033
  key?:
2103
3034
  string;
3035
+ /** Required. A name of the AuthorizationPolicy to get. Must be in the format `projects/{project}/locations/{location}/authorizationPolicies/*`. */
3036
+ name:
3037
+ string;
2104
3038
  /** OAuth 2.0 token for the current user. */
2105
3039
  oauth_token?:
2106
3040
  string;
2107
- /**
2108
- * The maximum number of references to return. If unspecified, server will pick an appropriate default. Server may return fewer items than requested. A caller should only rely on
2109
- * response's next_page_token to determine if there are more AddressGroupUsers left to be queried.
2110
- */
2111
- pageSize?:
2112
- number;
2113
- /** The next_page_token value returned from a previous List request, if any. */
2114
- pageToken?:
2115
- string;
2116
3041
  /** Returns response with indentations and line breaks. */
2117
3042
  prettyPrint?:
2118
3043
  boolean;
@@ -2125,9 +3050,9 @@ declare namespace gapi.client {
2125
3050
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2126
3051
  uploadType?:
2127
3052
  string;
2128
- }): Request<ListAddressGroupReferencesResponse>;
2129
- /** Updates the parameters of a single address group. */
2130
- patch(request: {
3053
+ }): Request<AuthorizationPolicy>;
3054
+ /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
3055
+ getIamPolicy(request?: {
2131
3056
  /** V1 error format. */
2132
3057
  "$.xgafv"?:
2133
3058
  string;
@@ -2146,12 +3071,18 @@ declare namespace gapi.client {
2146
3071
  /** 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. */
2147
3072
  key?:
2148
3073
  string;
2149
- /** Required. Name of the AddressGroup resource. It matches pattern `projects/*‍/locations/{location}/addressGroups/`. */
2150
- name:
2151
- string;
2152
3074
  /** OAuth 2.0 token for the current user. */
2153
3075
  oauth_token?:
2154
3076
  string;
3077
+ /**
3078
+ * 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
3079
+ * 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
3080
+ * 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
3081
+ * role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM
3082
+ * documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
3083
+ */
3084
+ "options.requestedPolicyVersion"?:
3085
+ number;
2155
3086
  /** Returns response with indentations and line breaks. */
2156
3087
  prettyPrint?:
2157
3088
  boolean;
@@ -2159,19 +3090,10 @@ declare namespace gapi.client {
2159
3090
  quotaUser?:
2160
3091
  string;
2161
3092
  /**
2162
- * 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
2163
- * 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
2164
- * 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
2165
- * 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
2166
- * supported (00000000-0000-0000-0000-000000000000).
2167
- */
2168
- requestId?:
2169
- string;
2170
- /**
2171
- * Optional. Field mask is used to specify the fields to be overwritten in the AddressGroup resource by the update. The fields specified in the update_mask are relative to the
2172
- * 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.
3093
+ * 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
3094
+ * field.
2173
3095
  */
2174
- updateMask?:
3096
+ resource:
2175
3097
  string;
2176
3098
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2177
3099
  upload_protocol?:
@@ -2179,11 +3101,9 @@ declare namespace gapi.client {
2179
3101
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2180
3102
  uploadType?:
2181
3103
  string;
2182
- /** Request body */
2183
- resource:
2184
- AddressGroup;
2185
- }): Request<Operation>;
2186
- patch(request: {
3104
+ }): Request<GoogleIamV1Policy>;
3105
+ /** Lists AuthorizationPolicies in a given project and location. */
3106
+ list(request?: {
2187
3107
  /** V1 error format. */
2188
3108
  "$.xgafv"?:
2189
3109
  string;
@@ -2202,52 +3122,42 @@ declare namespace gapi.client {
2202
3122
  /** 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. */
2203
3123
  key?:
2204
3124
  string;
2205
- /** Required. Name of the AddressGroup resource. It matches pattern `projects/*‍/locations/{location}/addressGroups/`. */
2206
- name:
2207
- string;
2208
3125
  /** OAuth 2.0 token for the current user. */
2209
3126
  oauth_token?:
2210
3127
  string;
3128
+ /** Maximum number of AuthorizationPolicies to return per call. */
3129
+ pageSize?:
3130
+ number;
3131
+ /**
3132
+ * The value returned by the last `ListAuthorizationPoliciesResponse` Indicates that this is a continuation of a prior `ListAuthorizationPolicies` call, and that the system should
3133
+ * return the next page of data.
3134
+ */
3135
+ pageToken?:
3136
+ string;
3137
+ /** Required. The project and location from which the AuthorizationPolicies should be listed, specified in the format `projects/{project}/locations/{location}`. */
3138
+ parent:
3139
+ string;
2211
3140
  /** Returns response with indentations and line breaks. */
2212
3141
  prettyPrint?:
2213
3142
  boolean;
2214
3143
  /** 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. */
2215
3144
  quotaUser?:
2216
3145
  string;
2217
- /**
2218
- * 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
2219
- * 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
2220
- * 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
2221
- * 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
2222
- * supported (00000000-0000-0000-0000-000000000000).
2223
- */
2224
- requestId?:
2225
- string;
2226
- /**
2227
- * Optional. Field mask is used to specify the fields to be overwritten in the AddressGroup resource by the update. The fields specified in the update_mask are relative to the
2228
- * 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.
2229
- */
2230
- updateMask?:
2231
- string;
2232
3146
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2233
3147
  upload_protocol?:
2234
3148
  string;
2235
3149
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2236
3150
  uploadType?:
2237
3151
  string;
2238
- },
2239
- body: AddressGroup): Request<Operation>;
2240
- /** Removes items from an address group. */
2241
- removeItems(request: {
3152
+ }): Request<ListAuthorizationPoliciesResponse>;
3153
+ /** Updates the parameters of a single AuthorizationPolicy. */
3154
+ patch(request: {
2242
3155
  /** V1 error format. */
2243
3156
  "$.xgafv"?:
2244
3157
  string;
2245
3158
  /** OAuth access token. */
2246
3159
  access_token?:
2247
3160
  string;
2248
- /** Required. A name of the AddressGroup to remove items from. Must be in the format `projects|organization/*‍/locations/{location}/addressGroups/*`. */
2249
- addressGroup:
2250
- string;
2251
3161
  /** Data format for response. */
2252
3162
  alt?:
2253
3163
  string;
@@ -2260,6 +3170,9 @@ declare namespace gapi.client {
2260
3170
  /** 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. */
2261
3171
  key?:
2262
3172
  string;
3173
+ /** Required. Name of the AuthorizationPolicy resource. It matches pattern `projects/{project}/locations/{location}/authorizationPolicies/`. */
3174
+ name:
3175
+ string;
2263
3176
  /** OAuth 2.0 token for the current user. */
2264
3177
  oauth_token?:
2265
3178
  string;
@@ -2269,6 +3182,12 @@ declare namespace gapi.client {
2269
3182
  /** 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. */
2270
3183
  quotaUser?:
2271
3184
  string;
3185
+ /**
3186
+ * Optional. Field mask is used to specify the fields to be overwritten in the AuthorizationPolicy resource by the update. The fields specified in the update_mask are relative to
3187
+ * 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.
3188
+ */
3189
+ updateMask?:
3190
+ string;
2272
3191
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2273
3192
  upload_protocol?:
2274
3193
  string;
@@ -2277,18 +3196,15 @@ declare namespace gapi.client {
2277
3196
  string;
2278
3197
  /** Request body */
2279
3198
  resource:
2280
- RemoveAddressGroupItemsRequest;
3199
+ AuthorizationPolicy;
2281
3200
  }): Request<Operation>;
2282
- removeItems(request: {
3201
+ patch(request: {
2283
3202
  /** V1 error format. */
2284
3203
  "$.xgafv"?:
2285
3204
  string;
2286
3205
  /** OAuth access token. */
2287
3206
  access_token?:
2288
3207
  string;
2289
- /** Required. A name of the AddressGroup to remove items from. Must be in the format `projects|organization/*‍/locations/{location}/addressGroups/*`. */
2290
- addressGroup:
2291
- string;
2292
3208
  /** Data format for response. */
2293
3209
  alt?:
2294
3210
  string;
@@ -2301,6 +3217,9 @@ declare namespace gapi.client {
2301
3217
  /** 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. */
2302
3218
  key?:
2303
3219
  string;
3220
+ /** Required. Name of the AuthorizationPolicy resource. It matches pattern `projects/{project}/locations/{location}/authorizationPolicies/`. */
3221
+ name:
3222
+ string;
2304
3223
  /** OAuth 2.0 token for the current user. */
2305
3224
  oauth_token?:
2306
3225
  string;
@@ -2310,6 +3229,12 @@ declare namespace gapi.client {
2310
3229
  /** 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. */
2311
3230
  quotaUser?:
2312
3231
  string;
3232
+ /**
3233
+ * Optional. Field mask is used to specify the fields to be overwritten in the AuthorizationPolicy resource by the update. The fields specified in the update_mask are relative to
3234
+ * 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.
3235
+ */
3236
+ updateMask?:
3237
+ string;
2313
3238
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2314
3239
  upload_protocol?:
2315
3240
  string;
@@ -2317,7 +3242,7 @@ declare namespace gapi.client {
2317
3242
  uploadType?:
2318
3243
  string;
2319
3244
  },
2320
- body: RemoveAddressGroupItemsRequest): Request<Operation>;
3245
+ body: AuthorizationPolicy): Request<Operation>;
2321
3246
  /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
2322
3247
  setIamPolicy(request: {
2323
3248
  /** V1 error format. */
@@ -2408,8 +3333,8 @@ declare namespace gapi.client {
2408
3333
  },
2409
3334
  body: GoogleIamV1TestIamPermissionsRequest): Request<GoogleIamV1TestIamPermissionsResponse>;
2410
3335
  }
2411
- interface AuthorizationPoliciesResource {
2412
- /** Creates a new AuthorizationPolicy in a given project and location. */
3336
+ interface ClientTlsPoliciesResource {
3337
+ /** Creates a new ClientTlsPolicy in a given project and location. */
2413
3338
  create(request: {
2414
3339
  /** V1 error format. */
2415
3340
  "$.xgafv"?:
@@ -2420,15 +3345,15 @@ declare namespace gapi.client {
2420
3345
  /** Data format for response. */
2421
3346
  alt?:
2422
3347
  string;
2423
- /**
2424
- * Required. Short name of the AuthorizationPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores,
2425
- * and should not start with a number. E.g. "authz_policy".
2426
- */
2427
- authorizationPolicyId?:
2428
- string;
2429
3348
  /** JSONP */
2430
3349
  callback?:
2431
3350
  string;
3351
+ /**
3352
+ * Required. Short name of the ClientTlsPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and
3353
+ * should not start with a number. E.g. "client_mtls_policy".
3354
+ */
3355
+ clientTlsPolicyId?:
3356
+ string;
2432
3357
  /** Selector specifying which fields to include in a partial response. */
2433
3358
  fields?:
2434
3359
  string;
@@ -2438,7 +3363,7 @@ declare namespace gapi.client {
2438
3363
  /** OAuth 2.0 token for the current user. */
2439
3364
  oauth_token?:
2440
3365
  string;
2441
- /** Required. The parent resource of the AuthorizationPolicy. Must be in the format `projects/{project}/locations/{location}`. */
3366
+ /** Required. The parent resource of the ClientTlsPolicy. Must be in the format `projects/*‍/locations/{location}`. */
2442
3367
  parent:
2443
3368
  string;
2444
3369
  /** Returns response with indentations and line breaks. */
@@ -2455,7 +3380,7 @@ declare namespace gapi.client {
2455
3380
  string;
2456
3381
  /** Request body */
2457
3382
  resource:
2458
- AuthorizationPolicy;
3383
+ ClientTlsPolicy;
2459
3384
  }): Request<Operation>;
2460
3385
  create(request: {
2461
3386
  /** V1 error format. */
@@ -2467,15 +3392,15 @@ declare namespace gapi.client {
2467
3392
  /** Data format for response. */
2468
3393
  alt?:
2469
3394
  string;
2470
- /**
2471
- * Required. Short name of the AuthorizationPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores,
2472
- * and should not start with a number. E.g. "authz_policy".
2473
- */
2474
- authorizationPolicyId?:
2475
- string;
2476
3395
  /** JSONP */
2477
3396
  callback?:
2478
3397
  string;
3398
+ /**
3399
+ * Required. Short name of the ClientTlsPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and
3400
+ * should not start with a number. E.g. "client_mtls_policy".
3401
+ */
3402
+ clientTlsPolicyId?:
3403
+ string;
2479
3404
  /** Selector specifying which fields to include in a partial response. */
2480
3405
  fields?:
2481
3406
  string;
@@ -2485,7 +3410,7 @@ declare namespace gapi.client {
2485
3410
  /** OAuth 2.0 token for the current user. */
2486
3411
  oauth_token?:
2487
3412
  string;
2488
- /** Required. The parent resource of the AuthorizationPolicy. Must be in the format `projects/{project}/locations/{location}`. */
3413
+ /** Required. The parent resource of the ClientTlsPolicy. Must be in the format `projects/*‍/locations/{location}`. */
2489
3414
  parent:
2490
3415
  string;
2491
3416
  /** Returns response with indentations and line breaks. */
@@ -2501,8 +3426,8 @@ declare namespace gapi.client {
2501
3426
  uploadType?:
2502
3427
  string;
2503
3428
  },
2504
- body: AuthorizationPolicy): Request<Operation>;
2505
- /** Deletes a single AuthorizationPolicy. */
3429
+ body: ClientTlsPolicy): Request<Operation>;
3430
+ /** Deletes a single ClientTlsPolicy. */
2506
3431
  delete(request?: {
2507
3432
  /** V1 error format. */
2508
3433
  "$.xgafv"?:
@@ -2522,7 +3447,7 @@ declare namespace gapi.client {
2522
3447
  /** 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. */
2523
3448
  key?:
2524
3449
  string;
2525
- /** Required. A name of the AuthorizationPolicy to delete. Must be in the format `projects/{project}/locations/{location}/authorizationPolicies/*`. */
3450
+ /** Required. A name of the ClientTlsPolicy to delete. Must be in the format `projects/*‍/locations/{location}/clientTlsPolicies/*`. */
2526
3451
  name:
2527
3452
  string;
2528
3453
  /** OAuth 2.0 token for the current user. */
@@ -2541,7 +3466,7 @@ declare namespace gapi.client {
2541
3466
  uploadType?:
2542
3467
  string;
2543
3468
  }): Request<Operation>;
2544
- /** Gets details of a single AuthorizationPolicy. */
3469
+ /** Gets details of a single ClientTlsPolicy. */
2545
3470
  get(request?: {
2546
3471
  /** V1 error format. */
2547
3472
  "$.xgafv"?:
@@ -2561,7 +3486,7 @@ declare namespace gapi.client {
2561
3486
  /** 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. */
2562
3487
  key?:
2563
3488
  string;
2564
- /** Required. A name of the AuthorizationPolicy to get. Must be in the format `projects/{project}/locations/{location}/authorizationPolicies/*`. */
3489
+ /** Required. A name of the ClientTlsPolicy to get. Must be in the format `projects/*‍/locations/{location}/clientTlsPolicies/*`. */
2565
3490
  name:
2566
3491
  string;
2567
3492
  /** OAuth 2.0 token for the current user. */
@@ -2579,7 +3504,7 @@ declare namespace gapi.client {
2579
3504
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2580
3505
  uploadType?:
2581
3506
  string;
2582
- }): Request<AuthorizationPolicy>;
3507
+ }): Request<ClientTlsPolicy>;
2583
3508
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
2584
3509
  getIamPolicy(request?: {
2585
3510
  /** V1 error format. */
@@ -2631,7 +3556,7 @@ declare namespace gapi.client {
2631
3556
  uploadType?:
2632
3557
  string;
2633
3558
  }): Request<GoogleIamV1Policy>;
2634
- /** Lists AuthorizationPolicies in a given project and location. */
3559
+ /** Lists ClientTlsPolicies in a given project and location. */
2635
3560
  list(request?: {
2636
3561
  /** V1 error format. */
2637
3562
  "$.xgafv"?:
@@ -2654,16 +3579,16 @@ declare namespace gapi.client {
2654
3579
  /** OAuth 2.0 token for the current user. */
2655
3580
  oauth_token?:
2656
3581
  string;
2657
- /** Maximum number of AuthorizationPolicies to return per call. */
3582
+ /** Maximum number of ClientTlsPolicies to return per call. */
2658
3583
  pageSize?:
2659
3584
  number;
2660
3585
  /**
2661
- * The value returned by the last `ListAuthorizationPoliciesResponse` Indicates that this is a continuation of a prior `ListAuthorizationPolicies` call, and that the system should
2662
- * return the next page of data.
3586
+ * The value returned by the last `ListClientTlsPoliciesResponse` Indicates that this is a continuation of a prior `ListClientTlsPolicies` call, and that the system should return
3587
+ * the next page of data.
2663
3588
  */
2664
3589
  pageToken?:
2665
3590
  string;
2666
- /** Required. The project and location from which the AuthorizationPolicies should be listed, specified in the format `projects/{project}/locations/{location}`. */
3591
+ /** Required. The project and location from which the ClientTlsPolicies should be listed, specified in the format `projects/*‍/locations/{location}`. */
2667
3592
  parent:
2668
3593
  string;
2669
3594
  /** Returns response with indentations and line breaks. */
@@ -2678,8 +3603,8 @@ declare namespace gapi.client {
2678
3603
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2679
3604
  uploadType?:
2680
3605
  string;
2681
- }): Request<ListAuthorizationPoliciesResponse>;
2682
- /** Updates the parameters of a single AuthorizationPolicy. */
3606
+ }): Request<ListClientTlsPoliciesResponse>;
3607
+ /** Updates the parameters of a single ClientTlsPolicy. */
2683
3608
  patch(request: {
2684
3609
  /** V1 error format. */
2685
3610
  "$.xgafv"?:
@@ -2699,7 +3624,7 @@ declare namespace gapi.client {
2699
3624
  /** 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. */
2700
3625
  key?:
2701
3626
  string;
2702
- /** Required. Name of the AuthorizationPolicy resource. It matches pattern `projects/{project}/locations/{location}/authorizationPolicies/`. */
3627
+ /** Required. Name of the ClientTlsPolicy resource. It matches the pattern `projects/*‍/locations/{location}/clientTlsPolicies/{client_tls_policy}` */
2703
3628
  name:
2704
3629
  string;
2705
3630
  /** OAuth 2.0 token for the current user. */
@@ -2712,8 +3637,8 @@ declare namespace gapi.client {
2712
3637
  quotaUser?:
2713
3638
  string;
2714
3639
  /**
2715
- * Optional. Field mask is used to specify the fields to be overwritten in the AuthorizationPolicy resource by the update. The fields specified in the update_mask are relative to
2716
- * 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.
3640
+ * Optional. Field mask is used to specify the fields to be overwritten in the ClientTlsPolicy resource by the update. The fields specified in the update_mask are relative to the
3641
+ * 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.
2717
3642
  */
2718
3643
  updateMask?:
2719
3644
  string;
@@ -2725,7 +3650,7 @@ declare namespace gapi.client {
2725
3650
  string;
2726
3651
  /** Request body */
2727
3652
  resource:
2728
- AuthorizationPolicy;
3653
+ ClientTlsPolicy;
2729
3654
  }): Request<Operation>;
2730
3655
  patch(request: {
2731
3656
  /** V1 error format. */
@@ -2746,7 +3671,7 @@ declare namespace gapi.client {
2746
3671
  /** 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. */
2747
3672
  key?:
2748
3673
  string;
2749
- /** Required. Name of the AuthorizationPolicy resource. It matches pattern `projects/{project}/locations/{location}/authorizationPolicies/`. */
3674
+ /** Required. Name of the ClientTlsPolicy resource. It matches the pattern `projects/*‍/locations/{location}/clientTlsPolicies/{client_tls_policy}` */
2750
3675
  name:
2751
3676
  string;
2752
3677
  /** OAuth 2.0 token for the current user. */
@@ -2759,8 +3684,8 @@ declare namespace gapi.client {
2759
3684
  quotaUser?:
2760
3685
  string;
2761
3686
  /**
2762
- * Optional. Field mask is used to specify the fields to be overwritten in the AuthorizationPolicy resource by the update. The fields specified in the update_mask are relative to
2763
- * 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.
3687
+ * Optional. Field mask is used to specify the fields to be overwritten in the ClientTlsPolicy resource by the update. The fields specified in the update_mask are relative to the
3688
+ * 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.
2764
3689
  */
2765
3690
  updateMask?:
2766
3691
  string;
@@ -2771,7 +3696,7 @@ declare namespace gapi.client {
2771
3696
  uploadType?:
2772
3697
  string;
2773
3698
  },
2774
- body: AuthorizationPolicy): Request<Operation>;
3699
+ body: ClientTlsPolicy): Request<Operation>;
2775
3700
  /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
2776
3701
  setIamPolicy(request: {
2777
3702
  /** V1 error format. */
@@ -2862,8 +3787,8 @@ declare namespace gapi.client {
2862
3787
  },
2863
3788
  body: GoogleIamV1TestIamPermissionsRequest): Request<GoogleIamV1TestIamPermissionsResponse>;
2864
3789
  }
2865
- interface ClientTlsPoliciesResource {
2866
- /** Creates a new ClientTlsPolicy in a given project and location. */
3790
+ interface FirewallEndpointAssociationsResource {
3791
+ /** Creates a new FirewallEndpointAssociation in a given project and location. */
2867
3792
  create(request: {
2868
3793
  /** V1 error format. */
2869
3794
  "$.xgafv"?:
@@ -2877,22 +3802,19 @@ declare namespace gapi.client {
2877
3802
  /** JSONP */
2878
3803
  callback?:
2879
3804
  string;
2880
- /**
2881
- * Required. Short name of the ClientTlsPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and
2882
- * should not start with a number. E.g. "client_mtls_policy".
2883
- */
2884
- clientTlsPolicyId?:
2885
- string;
2886
3805
  /** Selector specifying which fields to include in a partial response. */
2887
3806
  fields?:
2888
3807
  string;
3808
+ /** Required. Id of the requesting object. If auto-generating Id server-side, remove this field and firewall_endpoint_association_id from the method_signature of Create RPC. */
3809
+ firewallEndpointAssociationId?:
3810
+ string;
2889
3811
  /** 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. */
2890
3812
  key?:
2891
3813
  string;
2892
3814
  /** OAuth 2.0 token for the current user. */
2893
3815
  oauth_token?:
2894
3816
  string;
2895
- /** Required. The parent resource of the ClientTlsPolicy. Must be in the format `projects/*‍/locations/{location}`. */
3817
+ /** Required. Value for parent. */
2896
3818
  parent:
2897
3819
  string;
2898
3820
  /** Returns response with indentations and line breaks. */
@@ -2901,6 +3823,15 @@ declare namespace gapi.client {
2901
3823
  /** 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. */
2902
3824
  quotaUser?:
2903
3825
  string;
3826
+ /**
3827
+ * 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
3828
+ * 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
3829
+ * 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
3830
+ * 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
3831
+ * supported (00000000-0000-0000-0000-000000000000).
3832
+ */
3833
+ requestId?:
3834
+ string;
2904
3835
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2905
3836
  upload_protocol?:
2906
3837
  string;
@@ -2909,7 +3840,7 @@ declare namespace gapi.client {
2909
3840
  string;
2910
3841
  /** Request body */
2911
3842
  resource:
2912
- ClientTlsPolicy;
3843
+ FirewallEndpointAssociation;
2913
3844
  }): Request<Operation>;
2914
3845
  create(request: {
2915
3846
  /** V1 error format. */
@@ -2924,22 +3855,19 @@ declare namespace gapi.client {
2924
3855
  /** JSONP */
2925
3856
  callback?:
2926
3857
  string;
2927
- /**
2928
- * Required. Short name of the ClientTlsPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and
2929
- * should not start with a number. E.g. "client_mtls_policy".
2930
- */
2931
- clientTlsPolicyId?:
2932
- string;
2933
3858
  /** Selector specifying which fields to include in a partial response. */
2934
3859
  fields?:
2935
3860
  string;
3861
+ /** Required. Id of the requesting object. If auto-generating Id server-side, remove this field and firewall_endpoint_association_id from the method_signature of Create RPC. */
3862
+ firewallEndpointAssociationId?:
3863
+ string;
2936
3864
  /** 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. */
2937
3865
  key?:
2938
3866
  string;
2939
3867
  /** OAuth 2.0 token for the current user. */
2940
3868
  oauth_token?:
2941
3869
  string;
2942
- /** Required. The parent resource of the ClientTlsPolicy. Must be in the format `projects/*‍/locations/{location}`. */
3870
+ /** Required. Value for parent. */
2943
3871
  parent:
2944
3872
  string;
2945
3873
  /** Returns response with indentations and line breaks. */
@@ -2948,6 +3876,15 @@ declare namespace gapi.client {
2948
3876
  /** 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. */
2949
3877
  quotaUser?:
2950
3878
  string;
3879
+ /**
3880
+ * 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
3881
+ * 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
3882
+ * 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
3883
+ * 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
3884
+ * supported (00000000-0000-0000-0000-000000000000).
3885
+ */
3886
+ requestId?:
3887
+ string;
2951
3888
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2952
3889
  upload_protocol?:
2953
3890
  string;
@@ -2955,8 +3892,8 @@ declare namespace gapi.client {
2955
3892
  uploadType?:
2956
3893
  string;
2957
3894
  },
2958
- body: ClientTlsPolicy): Request<Operation>;
2959
- /** Deletes a single ClientTlsPolicy. */
3895
+ body: FirewallEndpointAssociation): Request<Operation>;
3896
+ /** Deletes a single FirewallEndpointAssociation. */
2960
3897
  delete(request?: {
2961
3898
  /** V1 error format. */
2962
3899
  "$.xgafv"?:
@@ -2976,7 +3913,7 @@ declare namespace gapi.client {
2976
3913
  /** 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. */
2977
3914
  key?:
2978
3915
  string;
2979
- /** Required. A name of the ClientTlsPolicy to delete. Must be in the format `projects/*‍/locations/{location}/clientTlsPolicies/*`. */
3916
+ /** Required. Name of the resource */
2980
3917
  name:
2981
3918
  string;
2982
3919
  /** OAuth 2.0 token for the current user. */
@@ -2988,6 +3925,15 @@ declare namespace gapi.client {
2988
3925
  /** 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. */
2989
3926
  quotaUser?:
2990
3927
  string;
3928
+ /**
3929
+ * 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
3930
+ * 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
3931
+ * 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
3932
+ * 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
3933
+ * supported (00000000-0000-0000-0000-000000000000).
3934
+ */
3935
+ requestId?:
3936
+ string;
2991
3937
  /** Upload protocol for media (e.g. "raw", "multipart"). */
2992
3938
  upload_protocol?:
2993
3939
  string;
@@ -2995,7 +3941,7 @@ declare namespace gapi.client {
2995
3941
  uploadType?:
2996
3942
  string;
2997
3943
  }): Request<Operation>;
2998
- /** Gets details of a single ClientTlsPolicy. */
3944
+ /** Gets details of a single FirewallEndpointAssociation. */
2999
3945
  get(request?: {
3000
3946
  /** V1 error format. */
3001
3947
  "$.xgafv"?:
@@ -3015,7 +3961,7 @@ declare namespace gapi.client {
3015
3961
  /** 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. */
3016
3962
  key?:
3017
3963
  string;
3018
- /** Required. A name of the ClientTlsPolicy to get. Must be in the format `projects/*‍/locations/{location}/clientTlsPolicies/*`. */
3964
+ /** Required. Name of the resource */
3019
3965
  name:
3020
3966
  string;
3021
3967
  /** OAuth 2.0 token for the current user. */
@@ -3033,59 +3979,8 @@ declare namespace gapi.client {
3033
3979
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3034
3980
  uploadType?:
3035
3981
  string;
3036
- }): Request<ClientTlsPolicy>;
3037
- /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
3038
- getIamPolicy(request?: {
3039
- /** V1 error format. */
3040
- "$.xgafv"?:
3041
- string;
3042
- /** OAuth access token. */
3043
- access_token?:
3044
- string;
3045
- /** Data format for response. */
3046
- alt?:
3047
- string;
3048
- /** JSONP */
3049
- callback?:
3050
- string;
3051
- /** Selector specifying which fields to include in a partial response. */
3052
- fields?:
3053
- string;
3054
- /** 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. */
3055
- key?:
3056
- string;
3057
- /** OAuth 2.0 token for the current user. */
3058
- oauth_token?:
3059
- string;
3060
- /**
3061
- * 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
3062
- * 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
3063
- * 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
3064
- * role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM
3065
- * documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
3066
- */
3067
- "options.requestedPolicyVersion"?:
3068
- number;
3069
- /** Returns response with indentations and line breaks. */
3070
- prettyPrint?:
3071
- boolean;
3072
- /** 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. */
3073
- quotaUser?:
3074
- string;
3075
- /**
3076
- * 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
3077
- * field.
3078
- */
3079
- resource:
3080
- string;
3081
- /** Upload protocol for media (e.g. "raw", "multipart"). */
3082
- upload_protocol?:
3083
- string;
3084
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3085
- uploadType?:
3086
- string;
3087
- }): Request<GoogleIamV1Policy>;
3088
- /** Lists ClientTlsPolicies in a given project and location. */
3982
+ }): Request<FirewallEndpointAssociation>;
3983
+ /** Lists Associations in a given project and location. */
3089
3984
  list(request?: {
3090
3985
  /** V1 error format. */
3091
3986
  "$.xgafv"?:
@@ -3102,22 +3997,25 @@ declare namespace gapi.client {
3102
3997
  /** Selector specifying which fields to include in a partial response. */
3103
3998
  fields?:
3104
3999
  string;
4000
+ /** Filtering results */
4001
+ filter?:
4002
+ string;
3105
4003
  /** 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. */
3106
4004
  key?:
3107
4005
  string;
3108
4006
  /** OAuth 2.0 token for the current user. */
3109
4007
  oauth_token?:
3110
4008
  string;
3111
- /** Maximum number of ClientTlsPolicies to return per call. */
4009
+ /** Hint for how to order the results */
4010
+ orderBy?:
4011
+ string;
4012
+ /** Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. */
3112
4013
  pageSize?:
3113
4014
  number;
3114
- /**
3115
- * The value returned by the last `ListClientTlsPoliciesResponse` Indicates that this is a continuation of a prior `ListClientTlsPolicies` call, and that the system should return
3116
- * the next page of data.
3117
- */
4015
+ /** A token identifying a page of results the server should return. */
3118
4016
  pageToken?:
3119
4017
  string;
3120
- /** Required. The project and location from which the ClientTlsPolicies should be listed, specified in the format `projects/*‍/locations/{location}`. */
4018
+ /** Required. Parent value for ListAssociationsRequest */
3121
4019
  parent:
3122
4020
  string;
3123
4021
  /** Returns response with indentations and line breaks. */
@@ -3132,8 +4030,8 @@ declare namespace gapi.client {
3132
4030
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3133
4031
  uploadType?:
3134
4032
  string;
3135
- }): Request<ListClientTlsPoliciesResponse>;
3136
- /** Updates the parameters of a single ClientTlsPolicy. */
4033
+ }): Request<ListFirewallEndpointAssociationsResponse>;
4034
+ /** Update a single FirewallEndpointAssociation. */
3137
4035
  patch(request: {
3138
4036
  /** V1 error format. */
3139
4037
  "$.xgafv"?:
@@ -3153,7 +4051,7 @@ declare namespace gapi.client {
3153
4051
  /** 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. */
3154
4052
  key?:
3155
4053
  string;
3156
- /** Required. Name of the ClientTlsPolicy resource. It matches the pattern `projects/*‍/locations/{location}/clientTlsPolicies/{client_tls_policy}` */
4054
+ /** Output only. name of resource */
3157
4055
  name:
3158
4056
  string;
3159
4057
  /** OAuth 2.0 token for the current user. */
@@ -3166,7 +4064,16 @@ declare namespace gapi.client {
3166
4064
  quotaUser?:
3167
4065
  string;
3168
4066
  /**
3169
- * Optional. Field mask is used to specify the fields to be overwritten in the ClientTlsPolicy resource by the update. The fields specified in the update_mask are relative to the
4067
+ * 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
4068
+ * 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
4069
+ * 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
4070
+ * 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
4071
+ * supported (00000000-0000-0000-0000-000000000000).
4072
+ */
4073
+ requestId?:
4074
+ string;
4075
+ /**
4076
+ * Required. Field mask is used to specify the fields to be overwritten in the Association resource by the update. The fields specified in the update_mask are relative to the
3170
4077
  * 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.
3171
4078
  */
3172
4079
  updateMask?:
@@ -3179,7 +4086,7 @@ declare namespace gapi.client {
3179
4086
  string;
3180
4087
  /** Request body */
3181
4088
  resource:
3182
- ClientTlsPolicy;
4089
+ FirewallEndpointAssociation;
3183
4090
  }): Request<Operation>;
3184
4091
  patch(request: {
3185
4092
  /** V1 error format. */
@@ -3200,7 +4107,7 @@ declare namespace gapi.client {
3200
4107
  /** 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. */
3201
4108
  key?:
3202
4109
  string;
3203
- /** Required. Name of the ClientTlsPolicy resource. It matches the pattern `projects/*‍/locations/{location}/clientTlsPolicies/{client_tls_policy}` */
4110
+ /** Output only. name of resource */
3204
4111
  name:
3205
4112
  string;
3206
4113
  /** OAuth 2.0 token for the current user. */
@@ -3213,99 +4120,19 @@ declare namespace gapi.client {
3213
4120
  quotaUser?:
3214
4121
  string;
3215
4122
  /**
3216
- * Optional. Field mask is used to specify the fields to be overwritten in the ClientTlsPolicy resource by the update. The fields specified in the update_mask are relative to the
3217
- * 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.
3218
- */
3219
- updateMask?:
3220
- string;
3221
- /** Upload protocol for media (e.g. "raw", "multipart"). */
3222
- upload_protocol?:
3223
- string;
3224
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3225
- uploadType?:
3226
- string;
3227
- },
3228
- body: ClientTlsPolicy): Request<Operation>;
3229
- /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
3230
- setIamPolicy(request: {
3231
- /** V1 error format. */
3232
- "$.xgafv"?:
3233
- string;
3234
- /** OAuth access token. */
3235
- access_token?:
3236
- string;
3237
- /** Data format for response. */
3238
- alt?:
3239
- string;
3240
- /** JSONP */
3241
- callback?:
3242
- string;
3243
- /** Selector specifying which fields to include in a partial response. */
3244
- fields?:
3245
- string;
3246
- /** 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. */
3247
- key?:
3248
- string;
3249
- /** OAuth 2.0 token for the current user. */
3250
- oauth_token?:
3251
- string;
3252
- /** Returns response with indentations and line breaks. */
3253
- prettyPrint?:
3254
- boolean;
3255
- /** 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. */
3256
- quotaUser?:
3257
- string;
3258
- /**
3259
- * REQUIRED: The resource for which the policy is being specified. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this
3260
- * field.
4123
+ * 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
4124
+ * 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
4125
+ * 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
4126
+ * 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
4127
+ * supported (00000000-0000-0000-0000-000000000000).
3261
4128
  */
3262
- resource:
3263
- string;
3264
- /** Upload protocol for media (e.g. "raw", "multipart"). */
3265
- upload_protocol?:
3266
- string;
3267
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3268
- uploadType?:
3269
- string;
3270
- },
3271
- body: GoogleIamV1SetIamPolicyRequest): Request<GoogleIamV1Policy>;
3272
- /**
3273
- * 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
3274
- * 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.
3275
- */
3276
- testIamPermissions(request: {
3277
- /** V1 error format. */
3278
- "$.xgafv"?:
3279
- string;
3280
- /** OAuth access token. */
3281
- access_token?:
3282
- string;
3283
- /** Data format for response. */
3284
- alt?:
3285
- string;
3286
- /** JSONP */
3287
- callback?:
3288
- string;
3289
- /** Selector specifying which fields to include in a partial response. */
3290
- fields?:
3291
- string;
3292
- /** 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. */
3293
- key?:
3294
- string;
3295
- /** OAuth 2.0 token for the current user. */
3296
- oauth_token?:
3297
- string;
3298
- /** Returns response with indentations and line breaks. */
3299
- prettyPrint?:
3300
- boolean;
3301
- /** 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. */
3302
- quotaUser?:
4129
+ requestId?:
3303
4130
  string;
3304
4131
  /**
3305
- * 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
3306
- * this field.
4132
+ * Required. Field mask is used to specify the fields to be overwritten in the Association resource by the update. The fields specified in the update_mask are relative to the
4133
+ * 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.
3307
4134
  */
3308
- resource:
4135
+ updateMask?:
3309
4136
  string;
3310
4137
  /** Upload protocol for media (e.g. "raw", "multipart"). */
3311
4138
  upload_protocol?:
@@ -3314,7 +4141,7 @@ declare namespace gapi.client {
3314
4141
  uploadType?:
3315
4142
  string;
3316
4143
  },
3317
- body: GoogleIamV1TestIamPermissionsRequest): Request<GoogleIamV1TestIamPermissionsResponse>;
4144
+ body: FirewallEndpointAssociation): Request<Operation>;
3318
4145
  }
3319
4146
  interface RulesResource {
3320
4147
  /** Creates a new GatewaySecurityPolicy in a given project and location. */
@@ -5369,6 +6196,8 @@ declare namespace gapi.client {
5369
6196
  AuthorizationPoliciesResource;
5370
6197
  clientTlsPolicies:
5371
6198
  ClientTlsPoliciesResource;
6199
+ firewallEndpointAssociations:
6200
+ FirewallEndpointAssociationsResource;
5372
6201
  gatewaySecurityPolicies:
5373
6202
  GatewaySecurityPoliciesResource;
5374
6203
  operations: